INVISIBLE INDICATORS?
-
I have a bollinger and a CCI being used in this EA. They were recently added. I even renamed the ea and saved it thinking cache was creating the problem but the problem persists.
The bollinger and CCI are not present when running and stopping the EA. No trades are triggering either I'm pretty sure there should be.
Any reason why these are showing up?
-
Indicators will show if the EA uses them. If the block where certain indicator exists is never reached, then this indicator does not appear. This is how MetaTrader works. Try this with disabled or enabled Pass - https://fxdreema.com/shared/hNRDI8uW
-
It happens when I import to capture the Constant Inputs from an EA and then copy and paste the conditions from another ea to use those inputs.
If I start over and just re-enter the Constant Inputs it works.
-
At this point the code that fxDreema produces is specific to the EA. I can't say what will happen if you start to modify it, I just don't recommend that

-
__Indicators will show if the EA uses them. If the block where certain indicator exists is never reached, then this indicator does not appear. This is how MetaTrader works. Try this with disabled or enabled Pass - https://fxdreema.com/shared/hNRDI8uW[/quote:1s7mp1nf]
Okay. But if you disable Pass, the block below will work anyway?
Interesting ... for me it worked, but partially. SL based on ATR did not work.
https://fxdreema.com/shared/mDp70G7le -
If a block is disabled, it's code does not run => the next blocks connected to it also does not run. The code for all blocks exists in the output EA, but it never works, as it's not there. Unless you use "Turn ON block" of course, but try not to use this block
-
Yes ... so I ask because I knew that the blocks below the block off will not work.
I just followed what you said and copied to test in my EA tests.