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 Schools, Yesterday, 03:32 PM
|
1 response
14 views
0 likes
|
Last Post
![]()
by Schools
Today, 10:06 AM
|
||
Started by Mindset, Today, 09:58 AM
|
0 responses
2 views
0 likes
|
Last Post
![]()
by Mindset
Today, 09:58 AM
|
||
Started by michelz, 02-18-2025, 08:30 AM
|
17 responses
326 views
0 likes
|
Last Post
![]()
by Noongun
Today, 09:54 AM
|
||
Started by llanqui, 03-05-2025, 06:03 AM
|
21 responses
120 views
0 likes
|
Last Post
![]()
by bltdavid
Today, 09:42 AM
|
||
Started by kujista, 03-13-2025, 12:41 AM
|
8 responses
45 views
0 likes
|
Last Post
![]()
by kujista
Today, 09:12 AM
|
Comment