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.
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.
Comment