enable and disable a filter in the EA.
-
Ex: I have an rsi and a stochastic, but how do I activate the robot only with the stochastic and disable the rsi from EA?
-
hi.
you can use "Block OFF" for off any condition block and other condition working for trade.
i don't know if you don't need Rsi why you use it in the EA?if you want can control any condition block after compile, you can use the input variable and use boolean for On or OFF block from input
-
xfire, what I need and the following ... let's imagine that I have 01 media, 01 rsi, 01 macd, however at that moment I want Rsi, to be disabled from my strategy, and the robot will only work with the media and macd or vice versa, so i wanted to know how to do this leaving in the robot the option to activate or not the rsi block ...
-
@mateus_f The best way to do it is by creating buttons. You can click on a button to switch on/off one of those indicators. However that will add much complexity to your EA because removing indicators 'unexpectedly' leads to increasing the number of blocks involved.