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

Bollinger and CalculateOnBarClose = false

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

    Bollinger and CalculateOnBarClose = false

    Hello everyone, I 'm trying to do a simple indicator Bollinger Bands and the option of CalculateOnBarClose = false. I want to detect when the price touches the upper band and also detect when the price touches the lower band.

    When the price first touches the upper Bollinger band I want to mark it with an arrow:


    This part I do so:

    if ((CrossAbove(Close, Bollinger(stddev,period).Upper, 1)))
    {

    DrawArrowUp(CurrentBar.ToString(), true, 0, GetCurrentAsk();, Color.DodgerBlue);
    }

    When the price first touches the lower Bollinger band I want to mark it with an arrow:


    This part I do so:

    if (CrossBelow(Close, Bollinger(stddev,period).Lower, 1))
    {
    DrawArrowDown(CurrentBar.ToString(), true, 0, GetCurrentBid(), Color.Fuchsia) ;
    }
    But doing so what I get is that whenever the price hits the upper or lower Bollinger band draws an arrow, and this is not exactly what I want.


    I want exactly, when the price first touches the upper Bollinger band draw an arrow . And not redraw an upward arrow until it has not produced before a downward arrow.

    For example , it is well to understand what I want, An upward arrow and the next arrow is to be drawn can not be bullish must be a downward arrow is drawn.

    ThankYou very much!

    #2
    Hello fisagol,

    Thanks for your post.

    This can be handled by using bool logic in each of the conditions. We can use 2 bool variable to control this. Lets call them upArrowDrawn and downArrowDrawn, they would need to be initialized to true in the variable declarations area.

    Code:
    if ((CrossAbove(Close, Bollinger(stddev,period).Upper, 1)) && downArrowDrawn) 
    {
    
    DrawArrowUp(CurrentBar.ToString(), true, 0, GetCurrentAsk();, Color.DodgerBlue);
    downArrowDrawn = false;  // set to false to prevent any further up arrows
    upArrowDrawn = true;       // set to true so next arrow drawn would be down arrow
    }
    
    if (CrossBelow(Close, Bollinger(stddev,period).Lower, 1) && upArrowDrawn) 
    {
    DrawArrowDown(CurrentBar.ToString(), true, 0, GetCurrentBid(), Color.Fuchsia) ;
    upArrowDrawn = false;     // set to false to prevent further down arrows
    downArrowDrawn = true;  // set to true so next arrow drawn will be up arrow.
    }
    Paul H.NinjaTrader Customer Service

    Comment


      #3
      Thank you very much for the reply, I had not occurred!.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Segwin, 05-07-2018, 02:15 PM
      14 responses
      1,788 views
      0 likes
      Last Post aligator  
      Started by Jimmyk, 01-26-2018, 05:19 AM
      6 responses
      837 views
      0 likes
      Last Post emuns
      by emuns
       
      Started by jxs_xrj, 01-12-2020, 09:49 AM
      6 responses
      3,293 views
      1 like
      Last Post jgualdronc  
      Started by Touch-Ups, Today, 10:36 AM
      0 responses
      12 views
      0 likes
      Last Post Touch-Ups  
      Started by geddyisodin, 04-25-2024, 05:20 AM
      11 responses
      62 views
      0 likes
      Last Post halgo_boulder  
      Working...
      X