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

Crosing line

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

    Crosing line

    Hello.

    How to track crossing price and manually drawn line (Ray or ExtendedLine)?

    #2
    Hello Vladko,

    Thank you for your note.

    You would need to take a look at the DrawObjects collection. This will show you how to loop through the list of DrawObjects in the chart and get the relevant information for that object.
    http://www.ninjatrader.com/support/h...rawobjects.htm

    Let me know if I can be of further assistance.
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Ok, I found my line
      Code:
      foreach (IDrawObject draw in DrawObjects)
      {	
        if (draw is IRay)
        {
           IRay ray=(IRay)draw;
        ....
        }
      }
      How to check crossing Close[0] and ray?

      Comment


        #4
        Vladko,

        These are all the available properties of the ray you can get -
        http://www.ninjatrader.com/support/h....html?iray.htm

        However, the issue here is that you won't get the continuing Ray line directly, meaning the part of the line after the second anchor.

        You would need to calculate out the slope of the line and what the Y value would be in relation to the bar that it would be processed on, such as Rise over Run.
        Cal H.NinjaTrader Customer Service

        Comment


          #5
          Ok, I found my line
          Code:
          foreach (IDrawObject draw in DrawObjects) { if (draw is IRay) { IRay ray=(IRay)draw; .... } }
          How to check crossing Close[0] and ray?
          HI Vladko

          Cal, giving great advice as NT staff always give in the Forum, is saying you would need to work out the equation of the ray. This comes down to Cartesian coordinates and line equations. I have done exactly this myself recently with one of my Ninja methods and it works a treat.

          If you need any help with the math, just put a request in this thread and I'll post the necessary equations.

          Cheers.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Christopher_R, Today, 12:29 AM
          0 responses
          8 views
          0 likes
          Last Post Christopher_R  
          Started by sidlercom80, 10-28-2023, 08:49 AM
          166 responses
          2,235 views
          0 likes
          Last Post sidlercom80  
          Started by thread, Yesterday, 11:58 PM
          0 responses
          3 views
          0 likes
          Last Post thread
          by thread
           
          Started by jclose, Yesterday, 09:37 PM
          0 responses
          7 views
          0 likes
          Last Post jclose
          by jclose
           
          Started by WeyldFalcon, 08-07-2020, 06:13 AM
          10 responses
          1,415 views
          0 likes
          Last Post Traderontheroad  
          Working...
          X