I have an EFS study built with the wizard which used to always change color realtime on a 5 minute chart and no doesn't do so without having to "reload" the formula.
This a a major problem for me as I trade for a living and am missing signals until I reload the formula. For a very long time I did not have this problem and the Bar Backgroung used to change on a realtime basis.
Thanks very much.
Here is the statement:
if(Strategy.isLong()) {
setBarBgColor(Color.green);
} else if(Strategy.isShort()) {
setBarBgColor(Color.red);
This a a major problem for me as I trade for a living and am missing signals until I reload the formula. For a very long time I did not have this problem and the Bar Backgroung used to change on a realtime basis.
Thanks very much.
Here is the statement:
if(Strategy.isLong()) {
setBarBgColor(Color.green);
} else if(Strategy.isShort()) {
setBarBgColor(Color.red);
Comment