I have made and indicator that simply either returns True or False.
Now i am making another indicator that will call the original indicators output for 5 different Timeframes.
I have read all the help forums but simply cant work out how to do it.
I have added 5 timeframes in the original indicaor..... How do I call/assign them in the second indicator?
I thought i may just be able to assign it like this
double indicator = Indicator(parameters go here)[data series number goes here?];
But no luck

Thanks.
This is the initialise function for the indicator that returns the bool value.
protected override void Initialize()
{
//Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Plot0"));
Overlay = true;
CalculateOnBarClose = false;
Add(PeriodType.Minute, 5);
Add(PeriodType.Minute, 15);
Add(PeriodType.Minute, 30);
Add(PeriodType.Minute, 60);
Add(PeriodType.Minute, 180);
Add(PeriodType.Day, 1);
}

Comment