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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    21 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    30 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Working...
    X