Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Dynamic setting "horizontal grid lines interval "
Collapse
X
-
Hi joysync, thanks for your question.
This will need to be tested, but we have properties for the chart scale here where you can access the interval of the HorizontalGridlinesInterval
https://ninjatrader.com/support/help...properties.htm
I was able to change the interval type in OnRender like this:
Please let me know if I can assist any further.Code:public class TestIndicator : Indicator { protected override void OnStateChange() { if (State == State.SetDefaults) { //... } else if (State == State.Configure) { AddPlot(Brushes.Yellow, "MyPlot"); } } double myvalue = 0; protected override void OnBarUpdate() { Value[0] = ATR(20)[0]; myvalue = Value[0]; } protected override void OnRender(ChartControl chartControl, ChartScale chartScale) { chartScale.Properties.HorizontalGridlinesInterval = myvalue; } }
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
52 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
71 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
38 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
99 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
60 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment