HOLD INDICATOR CONDITION FOR PERIOD OF TIME BEFORE MAKING TRADE
-
So a problem I run into while using CCI in my particular EA is that the CCI may spike into my condition to activate the EA and then out.
Is there any block I can use that would basically say: CCI >100 for 5 minutes (or whatever time) before passing to the next block? And if it doesn't hold for that period of time, don't pass?
-
If you want to pause the EA for a while when CCI becomes > than 100, there is this "Delay" block, but note that it stops the whole EA for a while. But this will not work as expected in a backtest.
Otherwise maybe something with some of the "Once per..." blocks, or using a Variable, or Flag... it depends.