Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Chart Properties Colors - NT7

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

    Chart Properties Colors - NT7

    Dear Support,

    Is it possible to call chart properties colors for an indicator?

    For example: In my current chart properties the "Color for background" is set to black. I am writing an indicator that when plotted I want to have the same color as the chart properties background. For this I can use:

    Color = Color.Black;

    However, is there a way to code something equivalent to

    Color = Chart Properties Background Color ?

    Many thanks.

    #2
    Originally posted by aligator View Post
    Dear Support,

    Is it possible to call chart properties colors for an indicator?

    For example: In my current chart properties the "Color for background" is set to black. I am writing an indicator that when plotted I want to have the same color as the chart properties background. For this I can use:

    Color = Color.Black;

    However, is there a way to code something equivalent to

    Color = Chart Properties Background Color ?

    Many thanks.
    ChartControl.BackColor is the background color of the chart.

    e.g., http://ninjatrader.com/support/forum...65&postcount=6


    There is also BackColorAll, albeit that is per bar.

    ref: http://ninjatrader.com/support/helpG...ckcolorall.htm

    Comment


      #3
      Originally posted by koganam View Post
      ChartControl.BackColor is the background color of the chart.

      e.g., http://ninjatrader.com/support/forum...65&postcount=6


      There is also BackColorAll, albeit that is per bar.

      ref: http://ninjatrader.com/support/helpG...ckcolorall.htm
      Thanks koganam,

      So, the following code should work to draw an indicator with the same color as the chart properties background color, correct?

      Add(new Plot(ChartControl.BackColor, "Plot 0")

      Comment


        #4
        Originally posted by aligator View Post
        Thanks koganam,

        So, the following code should work to draw an indicator with the same color as the chart properties background color, correct?

        Add(new Plot(ChartControl.BackColor, "Plot 0")
        That is the easiest way to create an invisible Plot that will still appear in the DataBox.

        Comment


          #5
          Originally posted by koganam View Post
          That is the easiest way to create an invisible Plot that will still appear in the DataBox.
          Thanks, that is exactly the purpose, to have access to values while plot is transparent. Something that is not easily possible by selecting transparent for the color.

          Cheers!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          559 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          324 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
          546 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          547 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X