Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

MAX problem

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    MAX problem

    Hello i'm check my indicator on HISTORY and i got the problem with MAX().

    Code:
    int daysBackStart = 7;
    int daysBackFinish = 3;
    
    DateTime today = DateTime.Now;
    DateTime beginDay = today.AddDays(-1*daysBackStart);
    DateTime endDay = today.AddDays(-1*daysBackFinish);
    
    
    // OnBarUpdate
    
    int startBar = CurrentBar - Bars.GetBar(beginDay);
    int endBar = CurrentBar - Bars.GetBar(endDay);
    
    int fromBar = startBar+10;
    double myMax = MAX(High,10)[fromBar]; // if fromBar < 0 i have exception "needed to be between 0 and 34100 but was -47 error."
    In NT7 all works fine. Why in NT8 i can't count MAX with "fromBar < 0"?
    Last edited by nordseven; 01-31-2017, 07:28 AM.

    #2
    Hello Nordseven,

    Thank you for your note.

    Passing a negative index in NT7 worked but was not supported. In NT8 it neither works nor is supported. A negative index value only works historically and never in live data.

    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Of course i need assistance.
      How i can count MAX on history bars?
      And where is the line between history bars and real time?

      Comment


        #4
        Hello Nordseven,

        Passing a negative value as a bar index in NT8 is not supported.

        I would suggest checking to make sure the bar index value is not negative.

        So prior to,

        double myMax = MAX(High,10)[fromBar];

        You could add,

        if(fromBar<0) return;

        Please let us know if you need further assistance.
        Alan P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Kensonprib, 04-28-2021, 10:11 AM
        5 responses
        191 views
        0 likes
        Last Post Hasadafa  
        Started by GussJ, 03-04-2020, 03:11 PM
        11 responses
        3,230 views
        0 likes
        Last Post xiinteractive  
        Started by andrewtrades, Today, 04:57 PM
        1 response
        14 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by chbruno, Today, 04:10 PM
        0 responses
        7 views
        0 likes
        Last Post chbruno
        by chbruno
         
        Started by josh18955, 03-25-2023, 11:16 AM
        6 responses
        441 views
        0 likes
        Last Post Delerium  
        Working...
        X