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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    54 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    131 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    44 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X