when creating candle crosses above candle high, the body is used as high not the wick? is this to fix somehow?
-
I have a pretty interesting setup but the condition written in the title needs to work but its not doing what I want.
The body of the candle is being used as high and low not the top or the bottom of the wick
How is this to correct? -
By default, high and low are the upper/lower wicks of the candle.
If you need the body values, use candle open and close. -
unfortunatly thats not the case it doesnt work like that instead the body is the trigger see attached setup0_1574271025179_candle condition.mq4
use on any timeframe -
@serioza But your project draws arrows on candle close, not high/low ?

-
@serioza Ah, I think I got it now. The crossing condition doesn't work tick-by-tick, but only bar-by-bar.
So you can't use that condition to track intra-bar changes.
To track intra-bar changes, you could use a variable to store the last tick values.. This setup finds the crosses you need:
https://fxdreema.com/shared/ILF2RuVjd

-
wow thanx alot man this is exactly what I need!