I have a question concerning reference to an indicator from a strategy.
My strategy needs to refer an indicator that implement another indicator.
Ex : Strat == strategy
Ind1 == first indicator
Ind2 == second indicator
Ind1 : Ind2
In my strategy I add the indicator I want to refer to :
Add(Ind1(...));
The problem is that Ind2 which is the base indicator has properties that I need to set.
How could I solve the problem ?
Thanks

Comment