Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Hiding Plots

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

    Hiding Plots

    Hello Everyone.

    I an new to indicator development for NinjaTrader. I am presently using version 7

    I am creating what I can only describe as a compound indicator. What I am attempting to do is use code to experiment with a trading concept that I have come up with. This concept includes the use of several different indicators, some of which will have slight alterations.

    I will later use the calculations from all this indicators to plot entry and exit triggers on the chart and to highlight moments of consolidation.

    I am using BolingerBand, Keltner Channels, and the Aroon Indicators to evaluate moments of consolidation. While I technically do not need the values of these indicators to plot, to testing purposes, and future reference, I would like to see these values with respect to price action to evaluation my algorithm's determination of consolidation and the consolidation plot.

    To achieve this I created the following parameters...

    #region OnOffPlots

    [GridCategory("Plots"), Description("Turns on/off Aroon Osculator")]
    public bool onoff_Aroon_Osc
    {
    get {return onoff_aroonosc; }
    set {onoff_aroonosc = value;}
    }

    [GridCategory("Plots"), Description("Turns on/off Aroon Up/Down")]
    public bool onoff_Aroon
    {
    get {return onoff_aroon; }
    set {onoff_aroon = value;}
    }

    #endregion


    In the initialize function I have the following ....

    Add(new Plot(Color.Orchid, PlotStyle.Line, "Aroon_Osc"));
    Plots[0].Pen.Width = 2;
    if (onoff_aroonosc == false) {Plots[0].Pen.Color = Color.Transparent;};

    Add(new Plot(Color.SpringGreen, PlotStyle.Line, "Aroon_Up"));
    Plots[1].Pen.Width = 2;
    if (onoff_aroon == false) {Plots[1].Pen.Color = Color.Transparent;};

    Add(new Plot(Color.Crimson, PlotStyle.Line, "Aroon_Down"));
    Plots[2].Pen.Width = 2;
    if (onoff_aroon == false) {Plots[2].Pen.Color = Color.Transparent;};



    I can see the drop downs for each of my bool parameters. However, when I set them to false, the indicator is still visible.

    Would anyone have any other suggestions on how I could make a plot visible or invisible with a true/false parameter as a user input?

    #2
    Hello jeliner,

    Thank you for writing in.

    You'll want to place the logic of changing your plot colors to transparent in OnBarUpdate() rather than Initialize(). Additionally, ensure to have your plots revert back to their original color if your bool is set to true or it will maintain the transparent color otherwise.

    Please, let us know if we may be of further assistance.
    Zachary G.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

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