Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plotting 3 plots in separate SUB-PANELS below the Price

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

    Plotting 3 plots in separate SUB-PANELS below the Price

    Hello,
    Hoping some one can guide me and provide a sample code to achieve the following

    1. I have 3 values that I need to plot in 3 SEPARATE sub panels below the Price panel.

    The NT8 code is as follows


    ....

    protected override void OnStateChange()
    {

    if (State == State.SetDefaults)
    {
    var colorAvg = Brushes.Blue;
    AddPlot(colorAvg, "PLOT1");
    Plots[0].Width = 3;
    Plots[0].PlotStyle = PlotStyle.Bar;
    Plots[0].Brush = Brushes.CornflowerBlue;

    AddPlot(colorAvg, "PLOT2");
    Plots[1].Width = 3;
    Plots[1].PlotStyle = PlotStyle.Bar;
    Plots[1].Brush = Brushes.Gold;

    AddPlot(colorAvg, "PLOT3");
    Plots[2].Width = 3;
    Plots[2].PlotStyle = PlotStyle.Bar;
    Plots[2].Brush = Brushes.Orange;
    }
    }

    .....

    protected override void OnBarUpdate()
    {
    ....
    Value[0][0] = someVar1;
    Value[1][0] = someVar2;
    Value[2][0] = someVar3;


    Really would appreciate someone to guide how to put these on a separate individual sub-panels below the price panel... right now they all plot on the same sub-panel below the price


    Thanx

    #2
    Hello sardana,

    Thanks for your post.

    You can only access one indicator panel from your script and all of the plots of that script would be within that single panel.

    To accomplish your goal of 3 plots in 3 separate indicator panels would require three separate indicators.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    70 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    152 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    162 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    100 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    288 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X