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 Mindset, 04-21-2026, 06:46 AM
      0 responses
      93 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      138 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
      123 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      73 views
      0 likes
      Last Post PaulMohn  
      Working...
      X