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 charlesugo_1, 05-26-2026, 05:03 PM
          0 responses
          61 views
          0 likes
          Last Post charlesugo_1  
          Started by DannyP96, 05-18-2026, 02:38 PM
          1 response
          149 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 05-11-2026, 05:56 AM
          0 responses
          162 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 05-10-2026, 08:12 PM
          0 responses
          99 views
          0 likes
          Last Post CarlTrading  
          Started by Hwop38, 05-04-2026, 07:02 PM
          0 responses
          286 views
          0 likes
          Last Post Hwop38
          by Hwop38
           
          Working...
          X