Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Horizontal line in indicator panel form strategy

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

    Horizontal line in indicator panel form strategy

    Good day,

    I tried to write a strategy based on one of indicators. From ninjascript i add this indicator to the chart in different panel from price data. Now i need to draw a horizontal line in indicator panel. How can i do this directly from script of the strategy?

    i tried to use drawhorizontalline() but it works only in price panel, but i need to draw in indicator panel.

    Thank you for any help.

    #2
    Welcome to our forums - you can set DrawOnPricePanel to false in the Initialize() to draw in the indicator panel - http://www.ninjatrader.com/support/h...pricepanel.htm

    You would need to do this though directly in the indicator.

    Comment


      #3
      So there is no way to do it from the strategy?

      Comment


        #4
        That's unfortunately correct, no with the default Draw methods. You could draw within the indicator itself and then expose any signal info to be used in the strategy for example for triggering trades.

        Comment


          #5
          A little trick

          It's possible to create for instance an empty (i.e. zero based) series in the indicator and then set the actual value in the strategy like this:

          myindicator.Plot2.Set(strategySeries[0]);

          All you have to do is to create additional placeholder plots in your indicator. Then from your strategy you can set those plots to values calculated/taken from your strategy.

          Last edited by molecool; 01-04-2013, 04:22 AM. Reason: Update

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          647 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          369 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          108 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          572 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          573 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X