Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Dynamic setting "horizontal grid lines interval "

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

    Dynamic setting "horizontal grid lines interval "

    Is there anyway to dynamic setting horizontal interval according to current average true range (ATR(14) round up to closed integer) in indicator?

    #2
    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:

    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;
    
            }
        }
    Please let me know if I can assist any further.

    Comment


      #3
      thanks Chris. I will let your know result.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      52 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      71 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      38 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      99 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      60 views
      0 likes
      Last Post PaulMohn  
      Working...
      X