Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to change color of bars?

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

    How to change color of bars?

    Hi:

    I'm trying to change the default green and red color of candlesticks inside my strategy. Is there a way of change the definition of "Up Bar Color" or "Down Bar Color" just once (in initialize or similar)?

    There's an ovbious way in "OnBarUpdate" but seems logical to have a way to declare "I want to use color A and Color B in this strategy", but could not find it.

    Any ideas?

    Thanks,
    pak

    #2
    Hi Pak,

    These properties are not supported but you should should be able to see them through Intellisense. As a hint, type this.ChartControl.D

    The supported technique is assigning BarColor conditionally in OnBarUpdate()
    if(Close[0] > Open[0])
    BarColor = Color.Purple;

    else
    BarColor = Color.Orange;
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by pakricard View Post
      Hi:

      I'm trying to change the default green and red color of candlesticks inside my strategy. Is there a way of change the definition of "Up Bar Color" or "Down Bar Color" just once (in initialize or similar)?

      There's an ovbious way in "OnBarUpdate" but seems logical to have a way to declare "I want to use color A and Color B in this strategy", but could not find it.

      Any ideas?

      Thanks,
      pak
      You may want to look at this: http://www.ninjatrader.com/support/f...28225#poststop

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      256 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      165 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      169 views
      1 like
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      252 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      203 views
      0 likes
      Last Post CarlTrading  
      Working...
      X