people with nt,
i am having some trouble with additional data series.
i want to add a 1 minute bar series for an equity and evaluate all short and long positions in that series.
the biggest issue is that i want to use all data from 04:00 to 20:00 eastern yankee time (i would not have a preference between us equities eth or default 24x5) and the function asks for many parameters i'm not sure about. i use minute data from 2018 to date on my strategies so i have no idea what value to use when the function asks for how many bars to load.
the platform will not accept either of these two fragments below:
AddDataSeries("GE", Data.BarsPeriodType.Minute, 1, Data.MarketDataType.Last, "Default 24 x 5");
AddDataSeries("GE", new BarsPeriod() { BarsPeriodType = (BarsPeriodType)4, Value = 1 }, 60,"US Equities ETH" , null);
i have gone over all the sections of the nt documentation and relevant fora posts i could find but i don't think this has been solved. ¿can nt advise how to add a simple 1 minute bars series as i have described?
very well, regards.

Comment