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 geotrades1, Today, 10:02 AM
    1 response
    5 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by ender_wiggum, Today, 09:50 AM
    1 response
    5 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by rajendrasubedi2023, Today, 09:50 AM
    1 response
    12 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by bmartz, Today, 09:30 AM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by geddyisodin, Today, 05:20 AM
    3 responses
    26 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X