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

muli color text

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

  • ninZa
    replied
    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.

    Leave a comment:


  • koganam
    replied
    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.

    Leave a comment:


  • NinjaTrader_CalH
    replied
    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.

    Leave a comment:


  • ct
    started a topic muli color text

    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.

Latest Posts

Collapse

Topics Statistics Last Post
Started by cmtjoancolmenero, Yesterday, 03:58 PM
4 responses
23 views
0 likes
Last Post NinjaTrader_ChelseaB  
Started by Brevo, Today, 01:45 AM
1 response
14 views
0 likes
Last Post NinjaTrader_ChelseaB  
Started by rjbtrade1, 11-30-2023, 04:38 PM
2 responses
73 views
0 likes
Last Post DavidHP
by DavidHP
 
Started by suroot, 04-10-2017, 02:18 AM
5 responses
3,021 views
0 likes
Last Post NinjaTrader_Gaby  
Started by Stanfillirenfro, Today, 07:23 AM
1 response
7 views
0 likes
Last Post NinjaTrader_Gaby  
Working...
X