I use both minute and daily bar data in my strategies/indicators. Due to the fact that minute bars are not split adjusted and daily is, I need to create a synthetic day close from the minute data (long story... this recommendation comes from NY support staff). So....
It would be very beneficial if I could store the synthetic close data as a DataSeries (e.g. one synthetic daily data point per bar in the DataSeries). Since then I could pass the data series into existing/custom NT indicators. The problem (I hope I am wrong) is that when I define a new DataSeries that it contains the same number of data points / bars as the chart. So if I am using a 30 minute bar chart then it stores the same daily value 20 - 30 times each day, representing each 30 minute bar. In which case the data series is useless for any indicator since it doesn't represent the time series of synthetic daily closes, rather it represents a stair step.
Is there any way to create a DataSeries that is consumable by existing NT indicators and that does not have the same number of bars as the chart? I believe that it must be possible since, for instance, Closes[1] would have a different number of bars than Closes[0] in a mult-time frame strategy.
Best...

Comment