Is there any way I can chage the color of the MA line?
Announcement
Collapse
No announcement yet.
Change color, volumeMA.efs
Collapse
X
-
Hello pinesol,
You can set the color using setDefaultBarFgColor() in preMain().
Add this function to your formula.
PHP Code:function preMain() {
setDefaultBarFgColor(Color.red);
}
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
-
Hello pinesol,
That function actually changes the moving average line. Don't let the "Bar" part of it confuse you. Add it to your formula and try it out.
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment
Comment