I am trying to print the previous bar of high and low using with this snippet
```
BarPeriod = 1;

TimeFrame = frameSync(M1);
vars highSmall = series(priceHigh());
vars lowSmall = series(priceLow());

printf("\nhighSmall[1] %.8f", highSmall[1]);
printf("\nhighSmall[0] %.8f", highSmall[0]);
```

but whenever a minute passed the value of highSmall[1] and lowSmall[1] is always 0 while the highSmall[0] and lowSmall[0] updates as expected.

How do I solve this prob? does live price feed doesn't store on series?