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 Tim-c, Today, 03:54 AM
      0 responses
      3 views
      0 likes
      Last Post Tim-c
      by Tim-c
       
      Started by FrancisMorro, Today, 03:24 AM
      0 responses
      2 views
      0 likes
      Last Post FrancisMorro  
      Started by Segwin, 05-07-2018, 02:15 PM
      10 responses
      1,771 views
      0 likes
      Last Post Leafcutter  
      Started by Rapine Heihei, 04-23-2024, 07:51 PM
      2 responses
      31 views
      0 likes
      Last Post Max238
      by Max238
       
      Started by Shansen, 08-30-2019, 10:18 PM
      24 responses
      945 views
      0 likes
      Last Post spwizard  
      Working...
      X