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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    32 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    12 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    18 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    20 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X