Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Changing Bar Color in Ninja Script

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

    Changing Bar Color in Ninja Script

    Hi,

    Can anyone tell me how to change the color of the current bar and leave the historicals as is. I'm trying to create a ninja script that changes the first and subsequent bars to a different color once they pass regular market hours. Then in the morning to change the bars back to the original color so I can easily distinquish between the start and end times of the regular market hours as opposed to nonregular hours.

    Thanks to anyone who can help.
    Johnny.

    #2
    resubmitted under proper forum

    Sorry.

    I resubmitted this question under the correct forum.

    regards
    Johnny

    Comment


      #3
      Hi Spartacus,

      You can add something like this to the end of OnBarUpdate()

      if (Historical)
      return;

      if (ToTime(Time[0]) >= ToTime(7, 30, 00) && ToTime(Time[0]) <= ToTime(2, 15, 00))
      {
      BarColor = Color.Magenta;
      }
      TimNinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      26 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      26 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-25-2026, 09:53 PM
      0 responses
      30 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 03-25-2026, 09:51 PM
      0 responses
      18 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 03-23-2026, 11:13 AM
      0 responses
      29 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X