How do I change colors in the PriceBars/MAPriceBars Formula?
Announcement
Collapse
No announcement yet.
PriceBars/MAPriceBars
Collapse
X
-
Tanya
Open the efs with the Editor (Tools->EFS->Editor... in main menu) and look for the following section
if(vValue >= vClose) {
setPriceBarColor(Color.red);
} else if(vValue < vClose) {
setPriceBarColor(Color.lime);
}
For a list of readily available colors see the Colors,Constants and Flags section in EFS Function Reference available in the EFS Help Center & Library
Alex
Comment