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 akuntysh, 05-18-2018, 03:39 AM
10 responses
807 views
0 likes
Last Post cedavra
by cedavra
 
Started by Belfortbucks, 04-29-2024, 05:32 PM
1 response
14 views
0 likes
Last Post NinjaTrader_Clayton  
Started by Creamers, 04-27-2024, 05:32 AM
4 responses
35 views
0 likes
Last Post NinjaTrader_ChelseaB  
Started by cmtjoancolmenero, 04-29-2024, 03:40 PM
5 responses
24 views
0 likes
Last Post NinjaTrader_Jesse  
Started by Philippe56140, 04-27-2024, 02:35 PM
5 responses
45 views
0 likes
Last Post NinjaTrader_LuisH  
Working...
X