Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

data of an indicator

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

    data of an indicator

    How to access the data of an indicator.
    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​

    #2
    Hello, thanks for writing in. The Keltner Channel Has two SMA indicators. To access these you would need to create a copy of the Keltner Channel and create public Series for these two SMAs. We have an example of how to do this here:

    Comment


      #3
      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


        #4
        Hi, the upper and lower values can be accessed through .Upper[] and .Lower[] series arrays.

        Comment


          #5
          muchas
          gracias

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Mindset, 04-21-2026, 06:46 AM
          0 responses
          94 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by M4ndoo, 04-20-2026, 05:21 PM
          0 responses
          140 views
          0 likes
          Last Post M4ndoo
          by M4ndoo
           
          Started by M4ndoo, 04-19-2026, 05:54 PM
          0 responses
          68 views
          0 likes
          Last Post M4ndoo
          by M4ndoo
           
          Started by cmoran13, 04-16-2026, 01:02 PM
          0 responses
          125 views
          0 likes
          Last Post cmoran13  
          Started by PaulMohn, 04-10-2026, 11:11 AM
          0 responses
          74 views
          0 likes
          Last Post PaulMohn  
          Working...
          X