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

  • NinjaTrader_JessicaP
    replied
    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]

    Leave a comment:


  • ct
    replied
    JessicaP

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

    Cheers

    Leave a comment:


  • ct
    replied
    Jessica

    Another home run hit for you Superstar. Thanks.

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

    Leave a comment:


  • NinjaTrader_JessicaP
    replied
    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.

    Leave a comment:


  • ct
    started a topic Drawing Object Panel?

    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

Latest Posts

Collapse

Topics Statistics Last Post
Started by Barry Milan, Yesterday, 10:35 PM
5 responses
16 views
0 likes
Last Post NinjaTrader_Manfred  
Started by DanielSanMartin, Yesterday, 02:37 PM
2 responses
13 views
0 likes
Last Post DanielSanMartin  
Started by DJ888, 04-16-2024, 06:09 PM
4 responses
12 views
0 likes
Last Post DJ888
by DJ888
 
Started by terofs, Today, 04:18 PM
0 responses
11 views
0 likes
Last Post terofs
by terofs
 
Started by nandhumca, Today, 03:41 PM
0 responses
8 views
0 likes
Last Post nandhumca  
Working...
X