|
Los Angeles, CA
Posts: 92 since Mar 2015
Thanks Given: 13
Thanks Received: 3
|
I have an indicator that uses a for loop to set Values.
this is the code for NT7.
double PriceVal = 0;
for (int i = (ATbar - ITbar) - 1; i >= 0; i--)
{
PriceVal += Storage[i];
Values[0].Set(i, PriceVal);
}
I have tried
Values[0][0] = (i, PriceVal);
but all I get is a syntax error.
Again, thanks in advance!
|