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 AaronKoRn, Today, 09:49 PM
      0 responses
      6 views
      0 likes
      Last Post AaronKoRn  
      Started by carnitron, Today, 08:42 PM
      0 responses
      8 views
      0 likes
      Last Post carnitron  
      Started by strategist007, Today, 07:51 PM
      0 responses
      9 views
      0 likes
      Last Post strategist007  
      Started by StockTrader88, 03-06-2021, 08:58 AM
      44 responses
      3,975 views
      3 likes
      Last Post jhudas88  
      Started by rbeckmann05, Today, 06:48 PM
      0 responses
      9 views
      0 likes
      Last Post rbeckmann05  
      Working...
      X