How to include JAson.mqh library in FxDreema Studio and make it work
-
The issue why it is not compiling is because the compiler doesn't have the JAson.mqh file on the MQL5 folder.
So, instead of having a line like this:
#include <JAson.mqh>You can replace by this:
#include <........\MQL4\compiler\MQL4\Include\JAson.mqh>And this will make the compiler reach the file in the right path inside FXDreema's Folders and it will compile files correctly with JAson.mqh library, saving us from having to compile codes externally.
-

Seems like the browser removed my backslashes... See the screenshot with the right code.
-
@floridabrazil Thank you very much for sharing this info.