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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      135 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      290 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      238 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      331 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      171 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X