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 Object Panel?

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

    Drawing Object Panel?

    Can I retrieve which panel a user drawn object is in?

    Scenario:
    I have a chart with 2 markets so I get 2 price panels. A user puts a user drawn object in one of the panels.
    I use a "foreach (IDrawObject draw in DrawObjects)" to retrieve the draw objects. I want
    to know which panel a draw object is in so I know what market to apply the user drawn object to.

    Can I do this?

    Cheers

    #2
    Hello ct, and thank you for your question. You can use the PanelIndex property of an IDrawingObject to determine this. For example,

    Code:
    [FONT=Courier New]foreach(IDrawingTool dt in DrawObjects)
    {
        Print("Drawing tool " + dt.ToString() + " is on panel " + dt.PanelIndex);
    }[/FONT]
    Please let us know if there are any other ways we can help.
    Jessica P.NinjaTrader Customer Service

    Comment


      #3
      Jessica

      Another home run hit for you Superstar. Thanks.

      Cheers
      From New Zealand and the far side of the planet.

      Comment


        #4
        JessicaP

        That's great for Ninja 8. Any equivalent on Ninja 7?

        Cheers

        Comment


          #5
          Thank you for catching this. The NT7 equivalent of IDrawingTool is IDrawObject. The code sample becomes

          Code:
          [FONT=Courier New]foreach(IDrawObject dt in DrawObjects)
          {
              Print("Drawing tool " + dt.ToString() + " is on panel " + dt.PanelIndex);
          }[/FONT]
          Jessica P.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by swestendorf, Today, 11:14 AM
          2 responses
          5 views
          0 likes
          Last Post NinjaTrader_Kimberly  
          Started by xiinteractive, 04-09-2024, 08:08 AM
          4 responses
          12 views
          0 likes
          Last Post xiinteractive  
          Started by Mupulen, Today, 11:26 AM
          0 responses
          1 view
          0 likes
          Last Post Mupulen
          by Mupulen
           
          Started by Sparkyboy, Today, 10:57 AM
          1 response
          5 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Started by TheMarlin801, 10-13-2020, 01:40 AM
          21 responses
          3,917 views
          0 likes
          Last Post Bidder
          by Bidder
           
          Working...
          X