@jordanmarvelley Go into top right, get shared link, open in web page, copy and paste here.
Posts made by jstap
-
RE: ADDING TO TRADESposted in Questions & Answers
-
RE: Help me pleaseposted in Questions & Answers
I would right click the result box, a list of the variables will come up, insert the variable, this should then give the result as a price fraction, if you want it in pips change in a modify variables block.
-
RE: ADDING TO TRADESposted in Questions & Answers
@jordanmarvelley If you place a shared link people can see where your at and help a bit easier, you have pink bocks that can place a trade at certain pips, ones that will move stops, blue blocks that break even, on the on trade tab you have purple blocks that do something at a set condition like, sl moved so place order.
-
RE: Please help me with my expert advisor.posted in General Discussions
@maop1994 Drawing a line at a specific price is easy, pass at top, orange draw line block with number inside, orange delete line block if your condition is met, condition buy/sell to place order, formula to add a point to price for condition to be met. Is your fraction always the same number or do you need a condition to choose? I will also say though on many markets 1 point (1/10th of a pip) isn't much room to work with, if you make a start then people will gladly help with any problems you have getting it working.
-
RE: Need Help with Indicator Cross Over Signalposted in Questions & Answers
@shutchin you need 2 conditions 1 above set to for example candle 1/2/3 ( whatever number you think) below -150, 2 below candle 0 above -100, you can have x, or <>, depends on what fits your position best.
-
RE: Buy a EUR pair when Conditions are met from three Pairsposted in General Discussions
@mohamed80 When I get a minute I will go over your questions, for now though (Symbol()==SYMBOL);
(OrderSymbol()==SYMBOL);
both go into custom code, although I haven't tried I think the string in SYMBOL variable is what is used and probably OrderSymbol is what to use for placing an order. -
RE: Please replyposted in Questions & Answers
@arivazhagan-p As I replied to your other post, I do not know, if it is done from your FX will probably go to your account, if done via the link and you got it from your terminal it will probably go onto yours, as is you have a few options, you try it, you wait for someone who kn0ws the answer to comment, you ask admin and wait for a response, my understanding on this is that it may take some time.
-
RE: What am I missing with ENUM variables for MT5?posted in Questions & Answers
@l-andorrà Have tested the code idea again, unfortunately this seems to have the same MA regardless of number put on input, looks like the only option you have is enum going through all. I do find sometimes code that worked on MT4 doesn't do the same on MT5.
-
RE: Regarding Paymentposted in General Discussions
@arivazhagan-p To be honest I am not sure but, I suspect if the payment is made into your dreema account from your account then paypal account wont matter.
-
RE: Please replyposted in Questions & Answers
@arivazhagan-p I think you need to ask paypall for an answer to this, I use the same paypall account I have used for years, I add no other different information.
-
RE: PARTIAL CLOSEposted in Questions & Answers
@kestra You would need to unless the names are different, then you could put it all in the same EA.
-
RE: Help with MQL block and variables pleaseposted in Questions & Answers
@alphaomega Ill reply for tipsy, although the names used shouldn't make a difference, they quite often will and you will get undesirable results, this can also happen if you name a comment the same as a variable/constant, normally takes quite a few before this happens, so getting an unexpected result is not what you would expect.
-
RE: What am I missing with ENUM variables for MT5?posted in Questions & Answers
@l-andorrà Just change ENUM_MA_METHOD variable to a string variable have tested and works: link
-
RE: expert ADXposted in Questions & Answers
@flockogola In this link you will see how I create a loop to count how many candles have passed from the cross, this way I add another condition to entre a trade. Hope this helps.
-
RE: how to move the ordersposted in Questions & Answers
@siyanda If you make a start, put it in a shared link then giving advice is a lot easier, I will say though, off the top of my head, you could slide the order and place a new on top, you could delete the pending place a new in double the size, quite possibly slide then add to size. What suites your particular plan is what will decide this, if at the same time as replacing a condition is true to delete then you probably want to delete>condition>replace/or not.
-
RE: What am I missing with ENUM variables for MT5?posted in Questions & Answers
@l-andorrà I am not a coder, all self tort but I see where I went wrong though:
if((Ma_Method = 1) {Value = "MODE_SMA"};
if((Ma_Method = 2) {Value = "MODE_SMMA"};
if((Ma_Method = 3) {Value = "MODE_EMA"};
if((Ma_Method = 4) {Value = "MODE_LWMA"};
I put the semi colon the wrong side : )You can also make the = == some code needs this, not sure what the deference is and don't think you will need.
Add the code like this:

Step by 1, start at 1 end at 2, if they are the MA's you want to test.
-
RE: how to move the ordersposted in Questions & Answers
@siyanda Not sure what exactly your asking but, the pink for each order block with a pink slide order block underneath, will move your order to wherever you like.
-
RE: Counting of winning and losing positions.posted in Questions & Answers
@ontradingx This will only tell you what has happened while EA is on chart, I am not very practiced with bucket of trades so I can't help about this.