Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Heiken Ashi

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

    Heiken Ashi

    Hey guys

    I'm currently using a Heiken Ashi lower indicator but it's missing the ability to add a zero line as a value plot. Any ideas on adding the zero line as a value plot in the indicator? Thanks!

    #2
    Hello trader14,

    Line plots can be added with AddLine().

    Below is a link to the help guide.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_ChelseaB View Post
      Hello trader14,

      Line plots can be added with AddLine().

      Below is a link to the help guide.
      https://ninjatrader.com/support/help...us/addline.htm
      This will enable me to use the zeroline as a value plot when building a strategy?

      Comment


        #4
        Hello trader14,

        If the value is always 0, you can compare with 0 in the strategy conditions.

        If you want the value (in case the user changes the value of the line) and the strategy is an unlocked strategy, the indicator.Lines[0].Value will be the value of that line.


        If the strategy is in the strategy builder, only Plots are available in the strategy builder. So the line would need to be added with AddPlot(new Stroke(Brushes.Blue), PlotStyle.HLine, 1) and on each bar you would need to set the Value of the plot. (You could set this to a user input value)
        Chelsea B.NinjaTrader Customer Service

        Comment


          #5
          Originally posted by NinjaTrader_ChelseaB View Post
          Hello trader14,

          If the value is always 0, you can compare with 0 in the strategy conditions.

          If you want the value (in case the user changes the value of the line) and the strategy is an unlocked strategy, the indicator.Lines[0].Value will be the value of that line.


          If the strategy is in the strategy builder, only Plots are available in the strategy builder. So the line would need to be added with AddPlot(new Stroke(Brushes.Blue), PlotStyle.HLine, 1) and on each bar you would need to set the Value of the plot. (You could set this to a user input value)
          https://ninjatrader.com/support/help...us/addplot.htm
          I'm trying to use this as a cross over in my strategy, when xyz crosses above or below the zeroline... etc.

          Comment


            #6
            Hello trader14,

            if (CrossAbove(Close, 0, 1))
            {
            // execute code
            }

            No zero plot is needed for a series crossing 0.
            Chelsea B.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            594 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            343 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            103 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            556 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            554 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X