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

price touches bollinger. but would like 5 ticks before

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

    price touches bollinger. but would like 5 ticks before

    i'm attempting to code a strategy that has a candle come close to a bollinger line that calls for an entry. the thing is i don't want to enter on price touching the line. i want to enter on price within 5 ticks of the line. is there logic for this?

    #2
    Hello SteveReiza,

    Thanks for your post.

    You could consider offsetting the Bollinger indicator by 5 ticks to see if the current market price (Close) is say equal to that value.

    TickSize would be used to offset a value by a set number of ticks.

    For example, Bollinger(2, 20).Lower[0] - 5 * TickSize would be 5 ticks below the lower Bollinger band.

    if (Close[0] == Bollinger(2, 20).Lower[0] - 5 * TickSize)

    {
    //do something
    }


    See the help guide documentation below for more information.

    Bollinger Bands: https://ninjatrader.com/support/help...nger_bands.htm
    TickSize: https://ninjatrader.com/support/help...8/ticksize.htm
    Brandon H.NinjaTrader Customer Service

    Comment


      #3
      awesome, that's what i was looking for. thank you so much!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Segwin, 05-07-2018, 02:15 PM
      12 responses
      1,785 views
      0 likes
      Last Post Leafcutter  
      Started by poplagelu, Today, 05:00 AM
      0 responses
      3 views
      0 likes
      Last Post poplagelu  
      Started by fx.practic, 10-15-2013, 12:53 AM
      5 responses
      5,407 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by Shai Samuel, 07-02-2022, 02:46 PM
      4 responses
      98 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by DJ888, Yesterday, 10:57 PM
      0 responses
      8 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Working...
      X