Trivial change to move comment

This commit is contained in:
moshferatu 2024-04-08 07:47:16 -07:00
parent dcc7dc456f
commit 93b8f4e557

View File

@ -98,10 +98,10 @@ namespace NinjaTrader.NinjaScript.Indicators
static string GetIQFeedSymbol(Instrument instrument)
{
// Example: ES 06-24
string masterInstrument = instrument.MasterInstrument.Name;
string monthYear = instrument.FullName.Split(' ')[1];
// Example: ES 06-24
string month = monthYear.Substring(0, 2);
string year = monthYear.Substring(3, 2);