Condition: Candle total size (pips) <= 10 pips.
-
I can't get this to work:
Candle total size (pips) <= 10 pips
candle total size problemAfter running this EA on a pair there is just no arrow
What is wrong here? -

-
Thank you!
I thought by using the -5 value that I could place the arrow a bit lower/further from the candle it is under.
Is there a way to place the arrow further away from the candle? -
the way you used is right, arrow placed lower with -5pips from Low, or higher +5pips from High ... acutally you need give this "pips" to value - with this word you tell fxdreema that you will place it with x pips lower/higher ... look here:
price Low is 1.1260
you need place it 5 pips lower, at price 1.1255 ... when you give into Adjust only -5 (without pips) arrow is placed at price: 1.1260-5=-3.874 ... and this is not price which you will ... but when you give -5pips, fxdreema automatically converts pips to price fraction which for EURUSD is 5pips==0.0005 ... and result is: 1.1260-5pips=1.1260-0.0005=1.1255 .... hope you understand it with this messy explanation
-
@miro1360
Thank you.
I got it now! Your explanation was very helpful