i 've this code in nt7 :
(in chart i load 100 bar)
protected override void OnBarUpdate()
{
if (CurrentBar==90)
Print(MIN(Low,1)[-1]);
}
(there isn't error....if i'm in real time..i get 0)
if i run this...i don't get error because in historic i can analyse series [-1]...
if i'm in real time....i get MIN(Low,1)[-1] =0 ..
if i've the same code in nt8
protected override void OnBarUpdate()
{
if (CurrentBar==90)
Print(Min(Low,1)[-1]);
}
i hope do you have understand what i mean with this post..
i want to use dataseries in nt8 as in nt7
i want use [-1] in nt8
how can i change dataseries in nt8 to do it? ..(override? ..or other)

Comment