PureBytes Links
Trading Reference Links
|
At 04:33 PM 2/21/2006, you wrote:
>why not use
>barnumber = 1
>what is the difference?
Either would work in that case.
BarNumber is a function that has history whereas CurrentBar is a reserved word that has no history.
So BarNumber[5] would work whereas CurrentBar[5] would not.
CurrentBar would be a bit faster to execute in this case since it avoids a function call.
Bob Fulks
|