@lekan4forex Add -2o pips to the adjust box.
Posts made by jstap
-
RE: EA not Drawing and send notificationposted in Questions & Answers
-
RE: How can I make one stop loss closs all trades?posted in Questions & Answers
@elton076 Like picture, combine buys and sells if you want both closed.

-
RE: How can I make one stop loss closs all trades?posted in Questions & Answers
@elton076 On trade tab, purple trade closed block, close trades block.
-
RE: Creat same stoploss level on 1st tradeposted in Questions & Answers
@mcvinbabas Above the pending block put a pink for each trade block in the stop loss section put custom price level and put in loop slop loss value.
-
RE: How to stop trades once reached take profitposted in Questions & Answers
@lucky930 Use a condition block with profit in left operand=>value in the right, close block beneath.
-
RE: EA not Drawing and send notificationposted in Questions & Answers
@lekan4forex On tester you probably won't get a notification but you should get an arrow, I do it regularly,
-
RE: How to stop trades once reached take profitposted in Questions & Answers
@lucky930
sods law says if I close a tab, Ill need it again so I leave it for a while. -
RE: EA not Drawing and send notificationposted in Questions & Answers
@lekan4forex You don't have any notification in the block (label needs to contain a value), candle close for the current candle (0) should be the current price, you could try high or low.

-
RE: Custom indicator does not load valuesposted in Questions & Answers
@kamux Create 3 double variables named as you want and add these lines to custom code block, put each variable in a comment so you can visually check all lines match variable digits.
VARIABLE1 = iCustom(NULL,0,"INDICATOR NAME"0,0);
VARIABLE2 = iCustom(NULL,0,"INDICATOR NAME"1,0);
VARIABLE3 = iCustom(NULL,0,"INDICATOR NAME"2,0);
See if this works but it looks as though this is different on MT5 vs MT4, on mt4 this would return the data needed.
-
RE: Custom indicator does not load valuesposted in Questions & Answers
@kamux Triple colour indicators are notoriously hard to read, I am not talking about the indicator inputs, I am talking about the data window. View tab->data window.
-
RE: William %R cross EMA 13posted in Questions & Answers
@lhnphuon The only way I know is to get a custom indicator created.
-
RE: Custom indicator does not load valuesposted in Questions & Answers
@kamux My knowledge on coding is limited, what I do know is though is the buffers FX uses are lines of code so if none show when added to FX it likely doesn't have them, you could try adding as it may work. If when you get this loaded in MT5 it is showing the relevent data in the data window I can show you how to get from iCustom code.
-
RE: Custom indicator does not load valuesposted in Questions & Answers
@kamux This indicator doesn't seem to have any buffers
-
RE: Check Market Closeposted in Questions & Answers
@duepips You add it like this https://fxdreema.com/shared/1bYhCfYfe only works on MT4, MT5 is more complicated.
-
RE: how to make condition that indicate when candles touch the moving average the first touchposted in Questions & Answers
@mateen Then you will have to use flags and the pass once blocks, flag to record when the cross has happened, X> or X< and candle closing on the right side will mimic the touch.
-
RE: How to make my Ea's name appear on my mobile meta trader platform.posted in Questions & Answers
@elton076 I think this is just created from the comment in buy/sell block, if not something changes it, not done it in a while but previously something changed it.
-
RE: How to stop trades once reached take profitposted in Questions & Answers
@olamayour143 I have never got unrealised to work, your 1st picture is what I meant but if you want to work with a loss you have to use a minus (-10)
-
RE: ATR pipsposted in Tutorials by Users
@seb-0 Glad this works, I tried many ways but found it failed in certain situations, I will put your version to test and see how it works. Thanks