NexusFi: Find Your Edge


Home Menu

 





Compiling errors when changing code from NT7 to NT8


Discussion in NinjaTrader

Updated
    1. trending_up 721 views
    2. thumb_up 0 thanks given
    3. group 1 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread

Compiling errors when changing code from NT7 to NT8

  #1 (permalink)
gecko78
SINGAPORE
 
Posts: 1 since Aug 2018
Thanks Given: 0
Thanks Received: 0

Hi All,

Kindly pardon my noob question as while i try to convert some NT7 to NT8 codes with my very limited knowledge.

I've the following code from NT7 which i try to convert to NT8 code but i get the following error "Cannot apply indexing with [] to an expression of type double". any kind soul can advise how i should really approach the problem? Thanks in advance.

NT7
if (base.Instrument.MasterInstrument.Compare(base.High[5], base.High[4]) == -1 && base.Instrument.MasterInstrument.Compare(base.High[4], base.High[3]) != -1)
{
LH = High[4];
LHCntr = 4;
if (!LDirToggle)
{
LH_Point.Set(4, LH);
for (int i = 0; i <= 4; i++)
{
LH_Line.Set(i, LH);
}
}
}

NT8
if (base.Instrument.MasterInstrument.Compare(base.High[5], base.High[4]) == -1 && base.Instrument.MasterInstrument.Compare(base.High[4], base.High[3]) != -1)
{
LH = base.High[4];
LHCntr = 4;
if (!LDirToggle)
{
LH_Point[0][4] = LH;
for (int i = 0; i <= 4; i++)
{
LH_Line[0][i] = LH;
}
}
}

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
New Micros: Ultra 10-Year & Ultra T-Bond -- Live Now
Treasury Notes and Bonds
ZombieSqueeze
Platforms and Indicators
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
Futures True Range Report
The Elite Circle
Deepmoney LLM
Elite Quantitative GenAI/LLM
 
  #3 (permalink)
 
xplorer's Avatar
 xplorer 
London UK
Site Moderator
 
Experience: Beginner
Platform: CQG
Broker: S5
Trading: Futures
Posts: 5,945 since Sep 2015
Thanks Given: 15,447
Thanks Received: 15,294



gecko78 View Post
Hi All,

Kindly pardon my noob question as while i try to convert some NT7 to NT8 codes with my very limited knowledge.

I've the following code from NT7 which i try to convert to NT8 code but i get the following error "Cannot apply indexing with [] to an expression of type double". any kind soul can advise how i should really approach the problem? Thanks in advance.

NT7
if (base.Instrument.MasterInstrument.Compare(base.High[5], base.High[4]) == -1 && base.Instrument.MasterInstrument.Compare(base.High[4], base.High[3]) != -1)
{
LH = High[4];
LHCntr = 4;
if (!LDirToggle)
{
LH_Point.Set(4, LH);
for (int i = 0; i <= 4; i++)
{
LH_Line.Set(i, LH);
}
}
}

NT8
if (base.Instrument.MasterInstrument.Compare(base.High[5], base.High[4]) == -1 && base.Instrument.MasterInstrument.Compare(base.High[4], base.High[3]) != -1)
{
LH = base.High[4];
LHCntr = 4;
if (!LDirToggle)
{
LH_Point[0][4] = LH;
for (int i = 0; i <= 4; i++)
{
LH_Line[0][i] = LH;
}
}
}

At first glance (i.e. without reading the whole code and what it is trying to do), the error message seems to say that you somewhere have declared a variable of type double, i.e. a variable that can store non-integer values.

Then the code is seeing that you are trying to index that variable, i.e assign it a value that cannot be non-integer.


Does it make sense?

Reply With Quote




Last Updated on February 25, 2019


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts