in initialize these are the additional timeframes added
Add(PeriodType.Tick, 1);
Add(PeriodType.Day, 1);
Add(PeriodType.Week, 1);
i.e. this is the data ES 06-13
Print("Yesterday High " + Highs[2][1]);
Print("Yesterday Low " + Lows[2][1])
Print("Yesterday Close " + Closes[2][1]);
with Calculate on bar close = true....get these values
Yesterday High 1551
Yesterday Low 1541.75
Yesterday Close 1547
With Calculate on bar close = false
Yesterday High 1551
Yesterday Low 1542.25
Yesterday Close 1550.25

Comment