├── Include ├── Arrays │ ├── ArrayBool.mqh │ ├── ArrayDatetime.mqh │ └── ArrayMqlRates.mqh ├── MQL5-RPC.mqh ├── wininet.mqh └── xmlrpctags.mqh ├── Readme.md ├── Scripts ├── ArrayObjTest.mq5 ├── MQL5-RPC_ex1_ExternalWebservice.mq5 ├── MQL5-RPC_ex2_ATC2011AnalyzerClient.mq5 ├── MQL5-RPC_request_test.mq5 └── MQL5-RPC_result_test.mq5 └── Server ├── ATC2011XMLRPCServer.py └── PositionGrabberTest.py /Include/Arrays/ArrayBool.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Include/Arrays/ArrayBool.mqh -------------------------------------------------------------------------------- /Include/Arrays/ArrayDatetime.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Include/Arrays/ArrayDatetime.mqh -------------------------------------------------------------------------------- /Include/Arrays/ArrayMqlRates.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Include/Arrays/ArrayMqlRates.mqh -------------------------------------------------------------------------------- /Include/MQL5-RPC.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Include/MQL5-RPC.mqh -------------------------------------------------------------------------------- /Include/wininet.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Include/wininet.mqh -------------------------------------------------------------------------------- /Include/xmlrpctags.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Include/xmlrpctags.mqh -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Readme.md -------------------------------------------------------------------------------- /Scripts/ArrayObjTest.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Scripts/ArrayObjTest.mq5 -------------------------------------------------------------------------------- /Scripts/MQL5-RPC_ex1_ExternalWebservice.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Scripts/MQL5-RPC_ex1_ExternalWebservice.mq5 -------------------------------------------------------------------------------- /Scripts/MQL5-RPC_ex2_ATC2011AnalyzerClient.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Scripts/MQL5-RPC_ex2_ATC2011AnalyzerClient.mq5 -------------------------------------------------------------------------------- /Scripts/MQL5-RPC_request_test.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Scripts/MQL5-RPC_request_test.mq5 -------------------------------------------------------------------------------- /Scripts/MQL5-RPC_result_test.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Scripts/MQL5-RPC_result_test.mq5 -------------------------------------------------------------------------------- /Server/ATC2011XMLRPCServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Server/ATC2011XMLRPCServer.py -------------------------------------------------------------------------------- /Server/PositionGrabberTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijunior01/mql5-rpc/HEAD/Server/PositionGrabberTest.py --------------------------------------------------------------------------------