Announcement

Collapse
No announcement yet.

Using setBarBgColor

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

  • Using setBarBgColor

    When you are using;

    setBarBgColor(Color.RGB(255,0,0);

    Is is possible to have an efs calculate a number representing the strength of either an UP candle or a DOWN candle is plug that number between 0 and 255 into the setBarBgColor.

    e.g. my efs calculates value x = 255

    when stating the background color I cannot do the following;

    setBarBgColor(Color.RGB(x,0,0);

    As value x can change real-time, is there a way to accomplish this within the EFS.

  • #2
    You have a typo:

    setBarBgColor(Color.RGB(x,0,0));

    Left a parentheses out on the end.

    Comment


    • #3
      Thanks Steve

      Comment

      Working...
      X