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 Gerik, Today, 09:40 AM
      2 responses
      6 views
      0 likes
      Last Post Gerik
      by Gerik
       
      Started by RookieTrader, Today, 09:37 AM
      2 responses
      10 views
      0 likes
      Last Post RookieTrader  
      Started by alifarahani, Today, 09:40 AM
      1 response
      7 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by KennyK, 05-29-2017, 02:02 AM
      3 responses
      1,285 views
      0 likes
      Last Post NinjaTrader_Clayton  
      Started by AttiM, 02-14-2024, 05:20 PM
      11 responses
      186 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Working...
      X