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

NT7 to NT8

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

    NT7 to NT8

    Hello,

    I am trying to convert a NT7 indicator that overrides PLOTS. I am attempting to override OnRender to accomplish this. The Plots override is written like this:


    public override void Plot(Graphics graphics, Rectangle bounds, double min, double max)



    Where do I get the values for bounds, min, and max in the OnRender Event in NT8? Do I obtain the charting space (panel 1) x and y (max width and height) from bounds or min and max? I cant find documentation on this. There isn't an NT8 version of these elements in the ninjatrader code breaking documentation, at least none that I could find.

    I am trying to use the internal PIVOTS indicator as a model to convert this, but I cant seem to find a direct conversion for bounds, min, and max

    Thanks,

    #2
    Helllo MarthaClines,

    As a heads up, overriding the Plot method was never documented for NinjaTrader 7.

    For NinjaTrader 8, the chartPanel has the Y, Height, X, and Width of the panel


    What method in SharpDX is asking for the bounds?
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_ChelseaB View Post
      Helllo MarthaClines,

      As a heads up, overriding the Plot method was never documented for NinjaTrader 7.

      For NinjaTrader 8, the chartPanel has the Y, Height, X, and Width of the panel


      What method in SharpDX is asking for the bounds?
      So, is it mapped as follows:

      FROM: Plot(Graphics
      graphics
      , Rectangle
      bounds
      , double
      min
      , double
      max
      )

      TO:
      protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
      NT7 Plots min = NT8 ChartPanel.MinValue
      NT7 Plots max = NT8 ChartPanel.MaxValue
      NT7 Plots bounds.Height = NT8 ChartPanel.H
      or
      NT7 Plots bounds.Height
      = NT8 ChartPanel.Height
      or
      NT7 Plots
      bounds.Height
      = NT8 ChartPanel.ActualHeight

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NRITV, Today, 01:15 PM
      2 responses
      6 views
      0 likes
      Last Post NRITV
      by NRITV
       
      Started by frankthearm, Today, 09:08 AM
      7 responses
      30 views
      0 likes
      Last Post NinjaTrader_Clayton  
      Started by maybeimnotrader, Yesterday, 05:46 PM
      5 responses
      25 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by quantismo, Yesterday, 05:13 PM
      2 responses
      18 views
      0 likes
      Last Post quantismo  
      Started by adeelshahzad, Today, 03:54 AM
      5 responses
      33 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X