Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
NT8 chart scaling [F] mode
Collapse
X
-
I am trying to set autoscale to automatic using this property:
But I get an error (Object reference not set to an instance of an object.).Code:ChartControl.ChartPanels[0].Scales[0].Properties.YAxisRangeType = YAxisRangeType.Automatic;
I also cannot "read" the value of YAxisRangeType (Same error). I am doing this inside the OnBarUpdate of an Indicator. I simply want to set the scale to automatic at the end of the day, at 031500 time. Is there a better way? Thanks.Last edited by RogBear; 08-13-2018, 10:59 PM.
Comment
-
Hello
Thank you for the post.
It looks like something has changed since this post was created, I tested this syntax and also get an error. I was able to use the following successfully to gather the scale and set its properties:
Ensure you have the following using statements at the top of the file:
Code:using System.Linq; using NinjaTrader.Gui.Chart;
This includes error checking for null objects. You can control the panel using ChartPanels[0] and then pick the scale needed by its ScaleJustification. ScaleJustification == ScaleJustification.RightCode:if (ChartControl != null) { ChartPanel cp = ChartControl.ChartPanels[0]; if (cp != null) { ChartScale scale = cp.Scales.First(s => s.ScaleJustification == ScaleJustification.Right); if (scale != null) scale.Properties.YAxisRangeType = YAxisRangeType.Fixed; } }
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
245 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
157 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
165 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
250 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
201 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment