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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      58 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      39 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      19 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      21 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      51 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X