Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Back Color current bar only

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

    Back Color current bar only

    I am looking for a way to back color just the current bar and have the rest of the back coloring on the chart to be cleared.

    #2
    Hello,

    Thank you for the question.

    This could be done using a simple check and the following commands.

    if(!Historical)
    {
    for(int i = 0; i < Count -1; i++)
    BackColorSeries[i] = Color.Empty;
    BackColor = Color.Red;
    }

    This would simply wait for live data, clear the existing back color of any prior bars, then color the current bars background.

    BackColorSeries

    Please let me know if I may be of additional assistance.
    Last edited by NinjaTrader_Jesse; 02-06-2015, 09:45 AM.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Works perfectly! Thanks

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by ninza33, Today, 12:31 PM
      2 responses
      9 views
      0 likes
      Last Post ninza33
      by ninza33
       
      Started by Bobin, 03-12-2024, 08:51 AM
      15 responses
      480 views
      0 likes
      Last Post fiddich
      by fiddich
       
      Started by Skifree, Today, 11:21 AM
      4 responses
      13 views
      0 likes
      Last Post Skifree
      by Skifree
       
      Started by Bogdan097, Today, 03:25 PM
      0 responses
      4 views
      0 likes
      Last Post Bogdan097  
      Started by cmtjoancolmenero, 04-25-2024, 03:58 PM
      25 responses
      127 views
      0 likes
      Last Post cmtjoancolmenero  
      Working...
      X