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 kinfxhk, 07-14-2026, 09:39 AM
      0 responses
      87 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 10:18 AM
      0 responses
      92 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 09:50 AM
      0 responses
      70 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 07:21 AM
      0 responses
      87 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-11-2026, 02:11 AM
      0 responses
      64 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X