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 bill2023, Yesterday, 08:51 AM
      8 responses
      43 views
      0 likes
      Last Post bill2023  
      Started by yertle, Today, 08:38 AM
      6 responses
      25 views
      0 likes
      Last Post ryjoga
      by ryjoga
       
      Started by algospoke, Yesterday, 06:40 PM
      2 responses
      24 views
      0 likes
      Last Post algospoke  
      Started by ghoul, Today, 06:02 PM
      3 responses
      16 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by jeronymite, 04-12-2024, 04:26 PM
      3 responses
      46 views
      0 likes
      Last Post jeronymite  
      Working...
      X