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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      153 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      89 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      133 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      128 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      107 views
      0 likes
      Last Post CarlTrading  
      Working...
      X