Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Drawing Tools -> get information about the bars from the anchors

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

    Drawing Tools -> get information about the bars from the anchors

    Hi,

    I'm developing a drawing tool.
    I'm able to get the information and relate the anchors I pick with the Time and Price where the anchor is located in the chart (via GetBarIdxByX and similars).

    To be able to establish this "relation" (between Price & Time information and position at the chart with an anchor point) I have to write this sentence:
    ChartBars chartBars = GetAttachedToChartBars();

    Then I get working the GetBarIdxByX.....

    Now that I know which is the Bar Index from the bar where my Anchor is, I would like to get the Open, High, Low and Close value from ist bar.

    I've tried with:

    double openvalue= Bars.GetOpen(index); -> error: Reference required.....
    and with
    double openvalue= High.GetValueAt(index); -> error: High name doesn't exist.....

    but both give me an error

    What is missing me in order to connect Anchors to Price series?

    Thanks!!

    #2
    Hello artson,

    In that context if your chartBars object is not null you could use:

    Code:
    chartBars.Bars.GetOpen(index)
    I look forward to being of further assistance.

    Comment


      #3
      Thanks It works!!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      640 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      366 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      107 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      569 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      572 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X