I have created an indicator that implements multi-instrument approach. I have NQ 1 minute primary chart. The code below adds the secondary chart.
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
// some initialization
}
else if (State == State.Configure)
{
AddDataSeries("ES 06-24");
}
}
protected override void OnBarUpdate()
{
// Some logic
}
"Some logic" makes some actions with both bar series. The important thing that the primary chart has Tick Replay option enabled so that the logic has access to tick by tick data in historical mode. And I have a feeling that Tick Replay option is not enabled by default for the secondary chart and nothing is said about it in the documentation... Can you confirm my guess and if it is confirmed here is a question. Is there a way to enable Tick Replay option for the secondary chart?
Thank you.

Comment