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
      Paul H.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Salahinho99, Today, 04:13 AM
      0 responses
      9 views
      0 likes
      Last Post Salahinho99  
      Started by junkone, 04-28-2024, 02:19 PM
      8 responses
      92 views
      1 like
      Last Post brucerobinson  
      Started by mkouitra, 10-23-2021, 04:40 PM
      17 responses
      1,965 views
      0 likes
      Last Post NinjaTrader_Jason  
      Started by Vietanhnguyen2hotmailcom, 05-03-2024, 10:29 AM
      4 responses
      30 views
      0 likes
      Last Post Vietanhnguyen2hotmailcom  
      Started by PhillT, 04-19-2024, 02:16 PM
      4 responses
      39 views
      0 likes
      Last Post PhillT
      by PhillT
       
      Working...
      X