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

Compare open on multi time frame

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

    Compare open on multi time frame

    Hello, I am newbie in developing strategy in ninjatrader. I was looking for solution, but i can not find it. I just want to enter long position if the price is greater then open of curent bar about 2 ticks. I found out that I have to use multi time frame. Compare 1 second bars and 1 minute bars. I want to trade on 1 minute chart. I need to compare each minute if the open of 1 second bar is greater then open on 1 minute bar. How can I do it? And how can I use it every minute? Thank you

    #2
    Hello,

    Thank yo for the question.

    If you want to compare the Open of a primary series against a secondary series, you could use Opens http://ninjatrader.com/support/helpG...lightsub=opens

    Code:
    if(BarsInProgress == 0) // if the primary is 1 minute, this is executed ever 1 minute or with COBC
    {
        if(CurrentBars[0] < 1 || CurrentBars[1] < 1) return;
        if(Opens[0][0] > Opens[1][0]) 
        {
            EnterLong();
        }
    }
    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by ETFVoyageur, 04-30-2024, 02:04 PM
    12 responses
    108 views
    0 likes
    Last Post eDanny
    by eDanny
     
    Started by Skifree, Today, 11:21 AM
    1 response
    2 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by Vulgoth_t_Destroyer, 05-09-2022, 04:45 PM
    52 responses
    5,265 views
    0 likes
    Last Post olivierh  
    Started by ssijbabu, 10-07-2012, 07:10 AM
    6 responses
    4,430 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by iceman2018, Today, 10:39 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_Erick  
    Working...
    X