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

BOP multi-timeframe

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

    BOP multi-timeframe

    I have figured out how to configure multiple indicators to work on each timeframe in a multi-timeframe strategy. I cannot figure out how to get BOP to work off different timeframes in the same strategy. I would appreciate any advice. Thanks.

    Rob

    #2
    Hello zrobfrank,

    The BOP indicator uses specific price series in its logic so it cannot take a multi timeframe input like some other indicators can. To use that in a multi series strategy you would need to surround that indicator with a BarsInProgress condition:

    Code:
    if(BarsInProgress == 0)
    {
        double primaryBop = BOP(3)[0];
    }
    if(BarsInProgress == 1)
    {
        double secondaryBop = BOP(3)[0];
    }
    The BarsInProgress lets you know which series called OnBarUpdate. During BarsInProgress 1 that is when the secondary series called OnBarUpdate so series like Open High Low Close represent the secondary series data. The indicator will observe that and produce the value for those secondary series calculations when used inside a condition that executes only on the secondary series. ​
    JesseNinjaTrader Customer Service

    Comment


      #3
      Jesse,

      Thank you so much for the help.

      Rob

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by geddyisodin, 04-25-2024, 05:20 AM
      8 responses
      58 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by halgo_boulder, 04-20-2024, 08:44 AM
      2 responses
      21 views
      0 likes
      Last Post halgo_boulder  
      Started by mishhh, 05-25-2010, 08:54 AM
      19 responses
      6,189 views
      0 likes
      Last Post rene69851  
      Started by gwenael, Today, 09:29 AM
      0 responses
      5 views
      0 likes
      Last Post gwenael
      by gwenael
       
      Started by Karado58, 11-26-2012, 02:57 PM
      8 responses
      14,830 views
      0 likes
      Last Post Option Whisperer  
      Working...
      X