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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    581 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    338 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    554 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    552 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X