I have a NT7 indicator which plot value for a secondary symbol (to be used for spread),
I can't plot the same in NT8.
Thats my code:
#region Variables
private string symbol2 = @"^SP500"; // Default setting for Symbol2
#endregion
protected override void OnBarUpdate()
{
if (BarsInProgress != 0)
return;
if (CurrentBars[0] < BarsRequired || CurrentBars[1] < BarsRequired)
return;
Value[0] = Closes[1][0];
}
Am I missing something in NT8?
Thanks.

Comment