Have a successfully created a customer indicator.
i wish a criteria with the customer strategy to be met on a variety of tick charts.
say 144, 233 and 377.
Do I
Add(PeriodType.Tick, 144)
Add(PeriodType.Tick, 233)
Add(PeriodType.Tick, 377)
...corresponding to
Add(StrategyPlot(0));
Add(StrategyPlot(1));
Add(StrategyPlot(2));
If { StrategyPlot(2) < Epsilon && StrategyPlot(1) < Epsilon && StrategyPlot(0) < Epsilon}
then { }
How do I do this and is it possible to back test it?

Comment