PureBytes Links
Trading Reference Links
|
Bob, I tried your suggestion for the below code...
And it works! Thanks!
I don't know why it works but it does.
Currentbar returns a numerical value - why should it
have to be assigned to another variable?
Confusing.
-----------------------------
If I put this statement in alone, it produces a MBB
error:
Value31 = Currentbar - Value30;
Try this:
CB = CurrentBar;
Value31 = CB - Value30
|