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.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Mixing Plot and override Plot
Collapse
X
-
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
-
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.Originally posted by Zeos6 View PostHi _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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
580 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
336 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
102 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment