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

IDrawingTool

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

    IDrawingTool

    Hi, I' have an indicator that will scan my chart looking for user drawn rectangles. I'm using IDrawingTool for "Rectangle" and have identified my anchors (Anchors.First() && Anchors.Last()). I just need to identify the rectangle's interior color and border color attributes. Is there documentation for this? Thanks

    #2
    Hello pman777,

    Thanks for the post.

    This is not really documented but can be accomplished fairly easily. This is dependent on the tool, there is not a general property for these colors. The Rectangle has specific properties that are only for Rectangle so you will need a cast.


    Code:
    DrawingTool r = Draw.Rectangle(this, "test", true, 0, Close[0], 0, Close[1], Brushes.Red, Brushes.Black, 100);
    
    if (r is Rectangle)
    {
          Rectangle rect = (Rectangle)r;
          Brush area = rect.AreaBrush;
          Brush outline = rect.OutlineStroke.Pen.Brush;
    }

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kevinenergy, 02-17-2023, 12:42 PM
    115 responses
    2,699 views
    1 like
    Last Post kevinenergy  
    Started by prdecast, Today, 06:07 AM
    1 response
    4 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by Christopher_R, Today, 12:29 AM
    1 response
    14 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by chartchart, 05-19-2021, 04:14 PM
    3 responses
    577 views
    1 like
    Last Post NinjaTrader_Gaby  
    Started by bsbisme, Yesterday, 02:08 PM
    1 response
    15 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X