Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

muli color text

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

    muli color text

    Is there any way to have multiple colors in one drawtext or do I need to use multiple drawtext statements?

    I have multiple plots in an indicator and wanted to draw a legend that shows what color goes with each plot showing the description in the plot color.
    Last edited by ct; 12-18-2014, 08:41 AM.

    #2
    Hello CT,

    Thank you for your note.

    You would need to have multiple DrawText() to have unique colors for each one. You would not be able to have the DrawText() have multiple colors for one call.

    Let me know if I can be of further assistance.
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by ct View Post
      Is there any way to have multiple colors in one drawtext or do I need to use multiple drawtext statements?

      I have multiple plots in an indicator and wanted to draw a legend that shows what color goes with each plot showing the description in the plot color.
      What you describe sounds more like you want to be able to change the color of the entire text, based on specified conditions. If so, yes, there is an override for DrawText() that allows you to specify the colors.

      Consult the NT Help for the correct syntax.

      Comment


        #4
        Originally posted by ct View Post
        Is there any way to have multiple colors in one drawtext or do I need to use multiple drawtext statements?

        I have multiple plots in an indicator and wanted to draw a legend that shows what color goes with each plot showing the description in the plot color.
        I assume you want to make a text colorized the same as its corresponding plot.

        Please take the color of the plot first:

        Code:
        Color plotColor = Plots[index].Pen.Color;
        index = 0 if you want to specify the first-added plot (in the Initialize section)
        index = 1 if you want to specify the second-added plot (in the Initialize section)
        index = 2 if you want to specify the third-added plot (in the Initialize section)
        ....

        Then input it to the DrawText() function, using the long signature:
        Code:
        DrawText(string tag, bool autoScale, string text, int barsAgo, double y, int yPixelOffset, [B]Color plotColor[/B], Font font, StringAlignment alignment, Color outlineColor, Color areaColor, int areaOpacity)
        A sample call is:

        Code:
        DrawText("my tag" + CurrentBar, AutoScale, "text to display", 0, High[0], 0, [B]plotColor[/B], ChartControl.Font, StringAlignment.Near, Color.Transparent, Color.Transparent, 0);
        Thanks.
        Pi
        Last edited by ninZa; 12-18-2014, 08:46 PM.
        ninZa
        NinjaTrader Ecosystem Vendor - ninZa.co

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        558 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        324 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        546 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        547 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X