Now I would like to figure out how to add a Line Break timeframe to a strategy. Is there a similar unique syntax?
This compiles:
Add(PeriodType.LineBreak, 2);
if (DoubleStochastics(BarsArray[1], 5).K[0] > 90)[INDENT] {DrawDiamond("Diamond" + CurrentBar.ToString(), true, 0,
High[0] + (TickSize * 4), Color.Blue);
}[/INDENT]

Comment