My indicator does not show on the price chart first thing in the morning when I start eSignal (even though properly saved), but if I remove the indicator and add it back in again, it shows just fine.
The indicator is coloring the price bars using this code:
if(InLong == 1){setPriceBarColor(Color.blue)}
if(InLong == -1){setPriceBarColor(Color.magenta)}
Do I need to use the setColorPriceBars() command somehow?
Why doesn't this show first thing, but shows if removed and put back?
The indicator is coloring the price bars using this code:
if(InLong == 1){setPriceBarColor(Color.blue)}
if(InLong == -1){setPriceBarColor(Color.magenta)}
Do I need to use the setColorPriceBars() command somehow?
Why doesn't this show first thing, but shows if removed and put back?
Comment