Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Several indicators in 1 panel

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

    Several indicators in 1 panel

    Hello. In script I add some indicators like this
    Code:
    protected override void Initialize()
    		{
    			SMA(Fast).Plots[0].Pen.Color = Color.Orange;
    			SMA(Slow).Plots[0].Pen.Color = Color.Green;
    
                Add(SMA(Fast));
                Add(SMA(Slow));
    
    			CalculateOnBarClose	= true;
    		}
    1. How to add indicator only to script calculation, not to chart panel?
    2. How to place all added indicators to 1 panel on the chart?

    #2
    1. You can just call this indicator directly in OnBarUpdate for example:

    Code:
    double mySMA = SMA(20)[0];
    2. You can select which panel these indicators will display in using the following:

    Code:
    			SMA(Fast).Panel = 1;
    			SMA(Slow).Panel = 1;
    			
    			Add(SMA(Fast));
    			Add(SMA(Slow));
    The above example would display both the SMA Fast and Slow in the Panel 1.

    More examples of this can be found below:

    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    152 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    87 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    127 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    106 views
    0 likes
    Last Post CarlTrading  
    Working...
    X