Via C++

Benefits

Interfacing with Emdros via C++ offers the following benefits:

  • Greatest performance:
    • No need to parse the output of the MQL engine. You can use the datastructures returned by MQL directly instead of first dumping them to stdout, then reading them back into memory again. This saves both space and time.

    • No need to start and stop the mql(1) process. Everything is done in-process.

    • Persistence of back-end connection: No need to connect and reconnect to the back-end. This saves time.

  • Greatest flexibility: You can use the full EMdF API, rather than "just" the MQL API.

Drawbacks

Drawbacks include:

  • Greater complexity, due to:

    • Complexity of C++ language,
    • Complexity of Emdros APIs.
  • Steeper learning-curve (due to greater complexity).


Previous:Ways of calling Emdros
Up:Ways of calling Emdros
Next:Via SWIG