I'm just getting used to NT8 and I'm working to port an NT7 strategy over.
I've created a list that houses a bunch of instances of MyIndicator:
private List<MyIndicator>MyIndicators = new List<MyIndicator>();
if (State == State.DataLoaded)
{
for (int i = 0; i < BarsArray.Count(); i++)
{
MyIndicators.Add(MyIndicator(BarsArray[i], foo1, foo2, foo3, foo4, foo5));
}
}
"No overload for method "MyIndicator" takes 6 arguments."
MyIndicators[BarsInProgress] = MyIndicator(BarsArray[BarsInProgress], foo1, foo2, foo3,foo4, foo5);
Thanks!

Comment