Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Thanks It works!!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Max Baxter, 03-07-2019, 09:20 PM
      8 responses
      263 views
      0 likes
      Last Post Ymcapital  
      Started by Felix Reichert, 04-26-2024, 02:12 PM
      9 responses
      51 views
      0 likes
      Last Post Felix Reichert  
      Started by AaronKoRn, 04-27-2024, 09:49 PM
      3 responses
      31 views
      0 likes
      Last Post AaronKoRn  
      Started by f.saeidi, Today, 07:07 AM
      6 responses
      19 views
      0 likes
      Last Post f.saeidi  
      Started by cmtjoancolmenero, Today, 02:31 PM
      6 responses
      16 views
      0 likes
      Last Post cmtjoancolmenero  
      Working...
      X