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

Is there a way to make a plot value invisible?

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

    Is there a way to make a plot value invisible?

    I have a plot that depending on what's going on with another indicator I want to make invisible in some situations.

    Something along the lines of:

    if(something) {
    MyPlot[0].visible=false;
    }
    else MyPlot[0].visible=true;

    Any way to do this?

    #2
    Hello ErikY,

    Thank you for your post.

    You could make a Plot invisible by creating a method that loops through all bars on the chart that assigns Brushes.Transparent to PlotBrushes. The method would look something like this.

    private void MyMethod()
    {
    for (int i = 0; i < CurrentBar; i++)
    {
    PlotBrushes[0][i] = Brushes.Transparent;

    }
    Plots[0].Brush = Brushes.Transparent;
    }

    Please see the following help guide link below for more information.

    PlotBrushes - https://ninjatrader.com/support/help...lotbrushes.htm

    Plots - https://ninjatrader.com/support/help...nt8/?plots.htm

    Let us know if we may further assist
    Brandon H.NinjaTrader Customer Service

    Comment


      #3
      Thanks, Ill give this a shot

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by RookieTrader, Today, 07:41 AM
      1 response
      4 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by kujista, Today, 05:44 AM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by elderan, Yesterday, 08:03 PM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by samish18, Yesterday, 08:57 AM
      8 responses
      25 views
      0 likes
      Last Post samish18  
      Started by DJ888, 04-16-2024, 06:09 PM
      3 responses
      10 views
      0 likes
      Last Post NinjaTrader_Erick  
      Working...
      X