NexusFi: Find Your Edge


Home Menu

 





Compiling errors when changing code from NT7 to NT8


Discussion in NinjaTrader

Updated
    1. trending_up 729 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?
How to apply profiles
Traders Hideout
ZombieSqueeze
Platforms and Indicators
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Exit Strategy
NinjaTrader
Better Renko Gaps
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
18 thanks
  #3 (permalink)
 
xplorer's Avatar
 xplorer 
London UK
Site Moderator
 
Experience: Beginner
Platform: CQG
Broker: S5
Trading: Futures
Posts: 5,973 since Sep 2015
Thanks Given: 15,492
Thanks Received: 15,386



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