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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    44 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    56 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    35 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    95 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    57 views
    0 likes
    Last Post PaulMohn  
    Working...
    X