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

Mixing Plot and override Plot

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

    Mixing Plot and override Plot

    Hi,

    I am sure that it is possible to mix Plot and plot override in the same indicator. Is there a reference to doing this? Any suggestion would be greatly appreciated. Thanks.

    #2
    Zeos,

    Are you looking to have an overridden plot method AND also have access to the original plot method?

    I am not aware of a supported way to do this currently, and likely wouldn't be possible due to OOP rules and the way NinjaTrader is designed.

    You could try using a partial method : http://msdn.microsoft.com/en-us/library/6b0scde8.aspx

    Or you could simply override the Plot method and include in it any functionality you want, duplicating the standard plot method to the best of your ability.
    Adam P.NinjaTrader Customer Service

    Comment


      #3
      Yes. I am looking to have both at the same time.

      Comment


        #4
        Hi _AdamP. Thanks for your email. I actually figured it out.

        For those interested, add the following line at the end of your plot override code:
        // Call the base Plot() method to paint defined Plots
        base.Plot(graphics, bounds, min, max);

        Comment


          #5
          Originally posted by Zeos6 View Post
          Hi _AdamP. Thanks for your email. I actually figured it out.

          For those interested, add the following line at the end of your plot override code:
          // Call the base Plot() method to paint defined Plots
          base.Plot(graphics, bounds, min, max);
          Actually, I usually put that line at the beginning of the custom Plot, so that I call the base.Plot, and can then really override its functions later.

          Comment


            #6
            Good point koganam. Makes a lot of sense. Thanks for pointing it out.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by mjairg, 07-20-2023, 11:57 PM
            3 responses
            213 views
            1 like
            Last Post PaulMohn  
            Started by TheWhiteDragon, 01-21-2019, 12:44 PM
            4 responses
            544 views
            0 likes
            Last Post PaulMohn  
            Started by GLFX005, Today, 03:23 AM
            0 responses
            3 views
            0 likes
            Last Post GLFX005
            by GLFX005
             
            Started by XXtrader, Yesterday, 11:30 PM
            2 responses
            12 views
            0 likes
            Last Post XXtrader  
            Started by Waxavi, Today, 02:10 AM
            0 responses
            7 views
            0 likes
            Last Post Waxavi
            by Waxavi
             
            Working...
            X