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

Multi time frame strategy code probelm

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

    Multi time frame strategy code probelm

    Dear NT system admin,

    I meet a problem in NT8 strategy coding. I want to use 60M, and 1D two time frame. 60M's indicator signal is an order entry signal. It will be calculate by Bar Close. However I want to use 1D indicator to filter the entry. In the 1D indicator calculate, I want to use by price change to calculate. In strategy coding, In very beginning: during if (State== State.SetDefaults) part, it has "calculate = Calculate.onBarClose . How to code it. Thanks a lot.

    #2
    Hello wadson,

    Thanks for your post and welcome to the NinjaTrader forums!

    You would need to set your strategy to Calculate.OnPriceChange and then seperate your code that runs on price change and on bar update. This can be done by using the bool IsFirstTickOfBar.
    For example

    if (IsFirstTickOfBar)
    {
    // all code here is executed once per bar
    }
    // all code out here is executed on each price change.


    For further clarity, we have an example here: https://ninjatrader.com/support/help...us/?charts.htm


    Please note however that as you are using a multi-timeframe, you will need to consider which data series is calling OnBarClose() and you can use BarsInProgress value to determine this. You can then combine BarsInProgress and IsFirstTickOfBar, for example:

    if (BarsInProgress == 0 && IsFirstTickOfBar)
    {
    // execute code here based on the first tick of the chart bar
    }


    A good reference for multi-timeframe or multi series coding is in the help guide section here: https://ninjatrader.com/support/help...nstruments.htm
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, Yesterday, 10:57 PM
    0 responses
    6 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by MacDad, 02-25-2024, 11:48 PM
    7 responses
    158 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Yesterday, 09:29 PM
    0 responses
    7 views
    0 likes
    Last Post Belfortbucks  
    Started by zstheorist, Yesterday, 07:52 PM
    0 responses
    7 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    151 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Working...
    X