Announcement

Collapse
No announcement yet.

study line color

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

  • study line color

    I've got a study that plots a yellow line.

    I'd like to have it a darker yellow.

    I've tried darkyellow, paleyellow, lightyellow, but no luck.

    Any suggestions.

    Bruce

    setDefaultBarFgColor(Color.yellow, 0);

  • #2
    Try This...

    these are hex values..

    setDefaultBarFgColor(Color.RGB(0xDD, 0xDD, 0x22),0);

    Or you could try decimal values

    setDefaultBarFgColor(Color.RGB(240, 240, 10),0);

    Try messing with the settings till you get a color you like,

    B
    Brad Matheny
    eSignal Solution Provider since 2000

    Comment


    • #3
      Bruce
      Use RGB() values. To find the color (and corresponding values) that you want download RGB.zip which is available here courtesy of Chris Kryza
      Alex

      Comment


      • #4
        Thanks, worked perfectly.

        Bruce

        Comment

        Working...
        X