Just double click on the line with error and it will bring you to the Users' Manual explaining how to fix:
http://www.amibroker.com/guide/errors/61.html
It is also covered in the Knowledge Base:
IMPORTANT: the error may be caused by DATA VENDOR who is using invalid characters for symbol names. Symbol names MUST NOT contain % (percent) sign.
If your data vendor has invalid % sign in symbol name you must change the formula to avoid using {{NAME}} in the format string.
So instead of:
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
You have to use
_N(Title = StrFormat("%s - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", Name(), O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.