neet help- want to open trade directly after arrow shows
-
i want to test my stratigy for binary option and i my indicator shows blue arrow for buy trade and red arrow for sell trad, i try to build my ea but i couldn't , can any one help me to do that ,
-
First of all, make sure that the EA gets the values that it wants from the indicator. For this, use "Indicator tester" block like this: https://fxdreema.com/demo/mt4-indicator-tester
If you don't see normal price values like 1.2345, then try with Candle ID = 1. Arrow-based indicators normally work on the previous candle.
Then you can use "Condition" blocks. Compare the indicator with the value of 0 like this: Indicator > 0. Why this works... because I have set the Condition block to not pass if the indicator value is EMPTY_VALUE.
Alternative is the block called "indicator is visible".
If needed, use "Once per bar" block - before or after this condition, it depends.
More info here:
https://fxdreema.com/documentation/you% ... indicators
https://fxdreema.com/documentation/work ... indicators -
THANK YOU VERY MUCH THAT SOLVED MY BROBLEM