I have couple of questions regarding multiple time-frames when using a strategy.
Assume I have the following code:
protected override void Initialize()
{
CalculateOnBarClose = true;
Add(PeriodType.Minute, 60); //adding 60 minutes poriod
Add(SMA(50)); //adding SMA to the chart
Add(ADX(5)); //adding ADX to the chart
}
2. When I add the ADX, I see 2 horizontal lines add automatically to it on levels 25 & 75. Can I change those levels? Can I add more than 2 lines? [let's say 10,20,80,90]
Thanks.

Comment