accessing an indicator like SMA I can access the value ofd the currentbar as
double d= INDICATOR(parameter).Value[currentbar]
using the Value property
how is the array [] operator handled in NT?
is the above always the same as:
double d=INDICATOR(parameter)[currentbar]
Best regards
Andreas

Comment