Hi, I am designing a strategy that uses a custom indicator. when I activate it, that indicator incorporates it in the same panel as the price, and I have to drag it each time to a new panel, which is quite uncomfortable. I have activated the if (State == State.SetDefaults) ........ IsOverlay = true; But it's not working. What would be the correct code to send it to a new panel? I have not found anything in the help of ninja. Thank you
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
send indicator to a new panel in my strategy
Collapse
X
-
send indicator to a new panel in my strategy
Hi, I am designing a strategy that uses a custom indicator. when I activate it, that indicator incorporates it in the same panel as the price, and I have to drag it each time to a new panel, which is quite uncomfortable. I have activated the if (State == State.SetDefaults) ........ IsOverlay = true; But it's not working. What would be the correct code to send it to a new panel? I have not found anything in the help of ninja. Thank youTags: None
-
else if (State == State.DataLoaded)
{
OrderFlowCumulativeDelta1 = OrderFlowCumulativeDelta(Close, NinjaTrader.NinjaScript.Indicators.CumulativeDelta Type.BidAsk, NinjaTrader.NinjaScript.Indicators.CumulativeDelta Period.Bar, 0); // DELTA ACUMULADO EN BAR
AddChartIndicator(OrderFlowCumulativeDelta1);
ATRticks1 = ATRticks(Close, 1);
mediaatr = SMA(ATRticks1, Periodoatr);
mediaatr.Plots[0].Brush=Brushes.Blue;
mediaatr.Plots[0].PlotStyle=PlotStyle.Bar;
mediaatr.Plots[0].AutoWidth=true;
AddChartIndicator(mediaatr);
}
mediaatr is the indicator i need in a new panel
Comment
-
-
I´m still working on my strategy. I want to separate plots indicators on different panels.
I have set every indicator to xxx.panel=1, 2 but it doesnt work.
Can anybody help me?
I need momentum with max/min momentum on panel 2 and rsi with max/min rsi on panel 3.
HTML Code:else if (State == State.DataLoaded) { MAX1 = MAX(High, 22); MAX2 = MAX(High, 8); distanciaentremaximos= MAX(High,Velamax-velazonashort+50); MIN1 = MIN(Low, 22); MIN2 = MIN(Low, 8); EMA1 = EMA(Close, 3); RSI1 = RSI(Close, 14, 3); Momentum1 = Momentum(Close, 14); MaxMomentum = MAX(Momentum1, Convert.ToInt32(VelasDivergencia)); MinMomentum = MIN(Momentum1, Convert.ToInt32(VelasDivergencia)); MaxRSI = MAX(RSI1.Default, Convert.ToInt32(VelasDivergencia)); MinRSI = MIN(RSI1.Default, Convert.ToInt32(VelasDivergencia)); MaxMomentum.Plots[0].Brush = Brushes.MediumPurple; MinMomentum.Plots[0].Brush = Brushes.MediumPurple; MaxRSI.Plots[0].Brush = Brushes.Orchid; MinRSI.Plots[0].Brush = Brushes.Orchid; AddChartIndicator(MaxMomentum); AddChartIndicator(MinMomentum); AddChartIndicator(MaxRSI); AddChartIndicator(MinRSI); MaxMomentum.DrawOnPricePanel=false; MinMomentum.DrawOnPricePanel=false; MaxRSI.DrawOnPricePanel=true; MinRSI.DrawOnPricePanel=false; Momentum1.Panel =2; // Dont work MaxMomentum.Panel =2; // Dont Work MinMomentum.Panel =2; // Dont Work RSI1.Panel =3; // Dont work MaxRSI.Panel =3; // Dont Work MinRSI.Panel =3; // Dont Work MaxMomentum.IsOverlay=false; MinMomentum.IsOverlay=false; MaxRSI.IsOverlay=false; MinRSI.IsOverlay=false; SetProfitTarget("", CalculationMode.Ticks, Target); SetStopLoss("", CalculationMode.Ticks, Stop, false); }
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
50 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
69 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment