NT7 has multi timeframe support, so what im doing is:
Initialize()
{
Add(PeriodType.Day, 1);
}
The problem is that I want to calculate 100 days or 200 days SMA but only loading 5 days of intraday chart, apparently NT7 only provides data for 5 days (the time frame of the intraday setting) and is not very usefull...
Is there any official way to do this on NT7 ? because i dont want to use the hack of "Data.Bars.GetBars"
Thanks

Comment