Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Get color from Text drawn by indicator

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

    Get color from Text drawn by indicator

    Hello guys,

    I would like to know how I can extract the text color by a Text object drawn from an external indicator loaded on chart.
    I understand I can loop all drawn objects with this code:

    foreach (DrawingTool draw in DrawObjects.ToList())
    {
    if(draw.Name == "Text") Print(draw.Tag)
    }

    But I would like to also restrict that the text object was drawn by a specific color. For example: White text color.

    Thank you.

    #2
    Hello facuevasm,

    Thanks for your post.

    If you need a specific property from a specific type of object you would need to cast to that object in your script and then you could access the specific property, such as the TextBrush property of that drawing object by using something like myDrawText.TextBrush.

    For example, see below.

    Code:
    foreach (DrawingTool draw in DrawObjects.ToList())
    {
        if (draw is DrawingTools.Text)
        { 
            DrawingTools.Text myDrawText = draw as DrawingTools.Text;
    
            Print("Text object: " + myDrawText.Tag + " TextBrush: " + myDrawText.TextBrush);
        }
    }
    See the 'Looping through the collection to find specific draw objects' section of this help guide page for more sample code: https://ninjatrader.com/support/help...rawobjects.htm

    Let us know if we may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    135 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    119 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X