I did a few more tests and find out all lines drawn by EFS are put on top of price bars, which is very annoying. Apply the following script to esignal 1086 and older version you may see the difference. In esignal 1086, bars are hiden by lines drawn by EFS while in older esignal they are still visible.
I opened the study properties editing window, and in older esingal, the symbol (price) study (candlestick configuration) is always listed as the first in study dropdown list, while in esignal 1086, it is shown as the last one, which means in esignal 1086 any objects created by EFS are drawn on top of candlestick bars. This also explain the reason why setDefaultBarBgColor() no longer works as before. Please fix this as soon as possible.
- Clearpicks
function preMain()
{
setPriceStudy(true);
}
function main()
{
if ( getCurrentBarIndex() >= -10 && getCurrentBarIndex() <= -5 ) {
drawLineRelative(-1, close(-1)* 1.1, -1, close(-1) * 0.90, PS_SOLID, 7, Color.blue, getCurrentBarIndex());
}
}
I opened the study properties editing window, and in older esingal, the symbol (price) study (candlestick configuration) is always listed as the first in study dropdown list, while in esignal 1086, it is shown as the last one, which means in esignal 1086 any objects created by EFS are drawn on top of candlestick bars. This also explain the reason why setDefaultBarBgColor() no longer works as before. Please fix this as soon as possible.
- Clearpicks
function preMain()
{
setPriceStudy(true);
}
function main()
{
if ( getCurrentBarIndex() >= -10 && getCurrentBarIndex() <= -5 ) {
drawLineRelative(-1, close(-1)* 1.1, -1, close(-1) * 0.90, PS_SOLID, 7, Color.blue, getCurrentBarIndex());
}
}
Comment