public class Strengthindi : Indicator
{
private Series<double> [ ]StrengthArray; // declare an array to hold series double values
}
else if (State == State.Configure)
{
StrengthArray = new Series<double>[8]; // set array size at 8 elements
}
protected override void OnBarUpdate()
{
calc1[0] = bla1; calc2[0] = bla2 //and so forth for 8 Series<double> variables
how to get these values as elements into [ ]StrengthArray ?
}

Comment