I'd like to write something like:
DateTime myDtVar = Time[0]
or better I really want to write the following:
DateTime[] myDtVar = New DateTime[1000]
and later
myDtVar[n] = Time[0]
Because I want to store some Time[0] values into an array to be able to use it later to plot some trendlines.
Why do I get the following error?
"The best overloaded method match for 'NinjaTrader.Data.ITimeSeries.this[int]' has some invalid arguments"
Thank you for your support.
G

Comment