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

Plotting asia session hi and low

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

    Plotting asia session hi and low

    Does anyone have a indicator that will draw a line at the asia hi and low for a break out strategy? Thanks for your help.

    #2
    Hi dynamic, thank you for your inquiry. Can you please elaborate on what you mean?

    My take on your question is that you'd like to plot the high/low of some Asian instrument on another instrument's chart. Is that correct?
    AustinNinjaTrader Customer Service

    Comment


      #3
      No, I would like for an indicator to read from 7pm est to 3am est and automatically draw a line at the hi and low price in that timeframe. Thanks for your help.

      Comment


        #4
        That can be programmed using either the Strategy Wizard or in NinjaScript. I'll outline the pseudo-code that would do what you want:
        Code:
        if new day (reset highestHigh and lowestLow)
        if (time is between 7p and 3a)
        {
            if currentHigh > highestHigh (highestHigh = currentHigh)
            else if currentLow < lowestLow (lowestLow = currentLow)
        }
        plot highestHigh and lowestLow
        AustinNinjaTrader Customer Service

        Comment


          #5
          I am not fluent in ninja script. Is there someone I can pay to make this indicator?

          Comment


            #6
            You certainly can pay someone to make this indicator. Here is a link to our NinjaScript consultants.
            AustinNinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by DJ888, 04-16-2024, 06:09 PM
            6 responses
            18 views
            0 likes
            Last Post DJ888
            by DJ888
             
            Started by Jon17, Today, 04:33 PM
            0 responses
            1 view
            0 likes
            Last Post Jon17
            by Jon17
             
            Started by Javierw.ok, Today, 04:12 PM
            0 responses
            6 views
            0 likes
            Last Post Javierw.ok  
            Started by timmbbo, Today, 08:59 AM
            2 responses
            10 views
            0 likes
            Last Post bltdavid  
            Started by alifarahani, Today, 09:40 AM
            6 responses
            41 views
            0 likes
            Last Post alifarahani  
            Working...
            X