mnbvcxz555 / Publications
Forum
MQL4 and JSON/XML
Is there any posibility to decode JSON(prefered) or XML in MT4? JSON/XML are simple, several entries of key-value. It can be 3rd part library, doesn't metter, it just needs to work correctly
Passing object reference to funciton
Hi, Can anyone tell me how I can pass object reference to function ? I have tried something like this: CXmlElement ResponseXml; void Init() { (some code) SomeMetod(ResponseXml); } void SomeMethod(CXmlElement &xml) { (some code) } but I get error that CXmlElement variable is without type.. Anyone