whiletrue wrote:
What is the best approach performance wise to implement an indicator based on ticks?
Do you mean using indicator from strategy or implementing your own custom indicator?
whiletrue wrote:
Will the IHistory implementation fetch the last 1000 ticks from your server for every new tick or will it cache the ticks that was provided to the onTick method?
Ticks get cached locally, only new ticks get taken from the server.
whiletrue wrote:
Also, is it possible to create an indicator sub chart from a strategy without implementing the IIndicator interface (i.e., to create the indicator view without using the IIndicator interface)?
Do you mean using indicator from strategy or implementing your own custom indicator?