in my indicator if (State == State.Configure) I do AddDataSeries(Instrument.FullName, new BarsPeriod { BarsPeriodType = BarsPeriodType.Tick, Value = 1 }); beacuse I need Tick Data.
That data loading part takes really really a lot of time. So my questions are:
1) Is there anything I can do to reduce this time?
2) I load my indicator on the chart. It takes say 2 minutes. Then, without changing anything, I do reload Ninjascript. At this stage the chart data (associated with the AddDataSeries method) even though is the same as before it is reloaded from scratch every time. As far as I know asthere should be a db where this data is stored how come every time the data loading is taking so long?
Thank you

Comment