Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Day of the Week highlight bars

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

    Day of the Week highlight bars

    Good Afternoon,
    How does one create different colored highlight bars signifying what day it is?
    For example, if I have an NT chart up with one weeks worth of 30 minute bars of SPY, how can someone make all the 30 minute bars on Monday green, all the
    30 minute bars from Tuesday white, all the 30 minute bars for Wednesdays red. etc. etc.I would appreciate anyones help, who understands and knows how to use 'script language'.

    Joshua

    #2
    Hi joshuas7,

    You could certainly do something with BarColor and Time[0]...

    Code:
    if (Time[0].DayOfWeek==DayOfWeek.Monday)
    			BarColor = Color.Blue;
    TimNinjaTrader Customer Service

    Comment


      #3
      if (Time[0].DayOfWeek==DayOfWeek.Monday)
      BarColor = Color.Blue;

      if (Time[0].DayOfWeek==DayOfWeek.Tuesday)
      BarColor = Color.White;

      if (Time[0].DayOfWeek==DayOfWeek.Wednesday)
      BarColor = Color.Red;

      if (Time[0].DayOfWeek==DayOfWeek.Thursday)
      BarColor = Color.Green;

      if (Time[0].DayOfWeek==DayOfWeek.Friday)
      BarColor = Color.Orange;

      Hi Tim,
      I really appreciate the help. Based on the 'code' you sent me, would the next four I typed out be correct? I'm sure there are online instructions somewhere on NT regarding the how to's for plugging them in. Could you or someone else reading this, direct me towards the NT address where I can get started now that I have the right info to plugin?

      Thanks again

      Comment


        #4
        Hi joshuas7,


        My advice to get started is to use the Wizard at: "Tools>New NS>Indicator" give it a name then select "Generate", put your code under "OnBarUpdate".

        These steps are similar to those found in our tutorials: http://www.ninjatrader-support.com/H...tml?Overview23
        TimNinjaTrader Customer Service

        Comment


          #5
          Looking for the same

          Hi, joshuas7, i am loking for the same indicator.... that colors bars depending on days of the week. Did you find one? can you share? i am total noob in pogramming.

          thx in advance.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          571 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          330 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          548 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          549 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X