First of all: My compliments on your product. I've been using it for only a few days now and am already impressed with what is possible.
Now to my problem at hand

I've added a 2nd timeserie to my strategy like so:
protected override void Initialize()
{
Add(PeriodType.Minute, 15);
}
MyCustomIndicator(BarsArray[1],123);
As far as I now I cannot add it in Initialize(), because BarsArray is not available there.
I also cannot use the Add() method in OnBarUpdate() to add the indicator.
What would be the correct way to display a custom indicator from another timeserie in the backtesting chart?
Thanks in advance!

Comment