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

Variable for bars lookback

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

    Variable for bars lookback

    I am looking for a way to use a variable (or something similar) to vary the number of bars to look back. I've been using something like the code below but it very limited and uses excessive code.

    && TMT_MPL_MACDBB(20, 12, 1, 45, 5).MACDPlot[0] > 1
    && TMT_MPL_MACDBB(20, 12, 1, 45, 5).MACDPlot[1] > 1
    && TMT_MPL_MACDBB(20, 12, 1, 45, 5).MACDPlot[2] > 1
    && TMT_MPL_MACDBB(20, 12, 1, 45, 5).MACDPlot[3] > 1

    Any help would be appreciated....

    Thanks

    #2
    Hello mlarocco,

    Thank you for the post.

    One way to be less verbose is to use a FOR loop in some way to check the condition. Keep in mind, the following example is not the same as applying the AND operator to all four conditions. ANDing all of the statements ensures that every condition evaluates to true, then the IF block executes. You could do something like the following:

    Code:
    bool myflag = false;
    
    for(int i = 0; i < 4; ++i){
    
            if(myflag == false){
            
                if(TMT_MPL_MACDBB(20, 12, 1, 45, 5).MACDPlot[i] > 1)
                   myflag = true;
    
             }
    
             if(myflag == true){
                //do something
                break;
              }
    
    }
    This would be the only way to write fewer indicator constructors.

    Please let me know if I may be of any further assistance.
    Last edited by NinjaTrader_ChrisL; 09-13-2017, 05:02 PM.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Thanks, I will try that

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by bmartz, 03-12-2024, 06:12 AM
      5 responses
      32 views
      0 likes
      Last Post NinjaTrader_Zachary  
      Started by Aviram Y, Today, 05:29 AM
      4 responses
      13 views
      0 likes
      Last Post Aviram Y  
      Started by algospoke, 04-17-2024, 06:40 PM
      3 responses
      28 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by gentlebenthebear, Today, 01:30 AM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by cls71, Today, 04:45 AM
      1 response
      7 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Working...
      X