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 cre8able, Yesterday, 07:24 PM
      1 response
      13 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by cocoescala, 10-12-2018, 11:02 PM
      6 responses
      939 views
      0 likes
      Last Post Jquiroz1975  
      Started by gbourque, Today, 06:39 AM
      1 response
      4 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by cmtjoancolmenero, Yesterday, 03:58 PM
      1 response
      17 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by benmarkal, Yesterday, 12:52 PM
      3 responses
      23 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Working...
      X