Contents:
Search: |
MQL languageOverviewThe MQL language interface consists of three functions, each of which differs from the others only in the kind of input it takes:
ArgumentsThe following are the other arguments, common to them all:
C++ interface#include <mql_execute.h> extern bool mqlExecuteFile(MQLExecEnv *pEE, std::string filename, bool& bResult, bool bPrintResult, bool bReportError); extern bool mqlExecuteStream(MQLExecEnv *pEE, std::istream& strin, bool& bResult, bool bPrintResult, bool bReportError); extern bool mqlExecuteString(MQLExecEnv *pEE, const std::string& input, bool& bResult, bool bPrintResult, bool bReportError); |