Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ChartControl ChartStyleType

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

    ChartControl ChartStyleType

    Hello,

    I have not been able to figure out the NT8 method for determining the chart type.

    For example, in NT7 I would do the following via ChartControl to determine if the chart type was Candlestick:


    if (ChartControl.ChartStyleType == ChartStyleType.CandleStick)
    {
    // do something
    }

    How can I do the equivalent in NT8?

    Thanks for your help!

    #2
    I have not tested this myself, so I'm not sure if its 100% correct, but I believe what you're looking for goes something like this ...

    if (ChartBars.Properties.ChartStyleType() == ChartStyleType.Box)
    ChartStyleType.CandleStick
    ChartStyleType.LineOnClose
    ChartStyleType.OHLC
    ChartStyleType.PointAndFigure
    ChartStyleType.KagiLine
    ChartStyleType.OpenClose
    ChartStyleType.Mountain
    {
    // pick one and do something with it here
    }

    Comment


      #3
      Hello jbenton,

      Thanks for your post and welcome to the forums!

      Member gubbar924 was close (thank-you), you would want to test using:

      if (ChartBars.Properties.ChartStyleType == ChartStyleType.Box)
      {
      // do something
      }

      Reference: http://ninjatrader.com/support/helpG...us/?charts.htm

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      673 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      379 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      111 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      577 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      582 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X