I try to access the price of the emas of the Kelner channel indicator, it is already added but no matter how much I look I don't know how to call the values
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
data of an indicator
Collapse
X
-
else if (State == State.DataLoaded)
{
EMALarga = EMA(Close, Convert.ToInt32(MediaLarga));
EMALarga.Plots[0].Brush = Brushes.YellowGreen;
AddChartIndicator(EMALarga);
EMAMedia = EMA(Close, Convert.ToInt32(MediaMedia));
EMAMedia.Plots[0].Brush = Brushes.DeepSkyBlue;
AddChartIndicator(EMAMedia);
EMACorta = EMA(Close, Convert.ToInt32(MediaCorta));
EMACorta.Plots[0].Brush = Brushes.Azure;
AddChartIndicator(EMACorta);
CanalK = KeltnerChannel(1.5, 10);
CanalK.Plots[0].Brush = Brushes.DarkOrange;
CanalK.Plots[1].Brush = Brushes.Crimson;
CanalK.Plots[2].Brush = Brushes.Crimson;
AddChartIndicator(CanalK);
}
Here I have it replicated
Print(CanalK[0]);
and here I ask and it gives me the price of the central ema of the channel, but I don't know how to ask for the other two
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
41 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
28 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
45 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
37 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment