
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
function CChart::VisibleBars() is erroneously implemented. Just the last
code line of the function is not correct. Instead of
return((int)ChartGetInteger(m_chart_id,CHART_WIDTH_IN_BARS))
it should be
return((int)ChartGetInteger(m_chart_id,CHART_VISIBLE_BARS)).
I think this is a low hanging fruit for you to fix. ;)
Cheers,
Korbologe