├── Include └── Mt4Redis │ ├── Redis.mqh │ ├── RedisBase.mqh │ ├── RedisCommand.mqh │ ├── RedisCommon.mqh │ ├── RedisContext.mqh │ ├── RedisPubSub.mqh │ ├── RedisReply.mqh │ ├── RedisSimple.mqh │ └── Utils.mqh ├── LICENSE ├── Library └── Mt4Redis.dll ├── README.md └── Scripts └── Test ├── TestRedisCommand.mq4 ├── TestRedisPublish.mq4 ├── TestRedisSimple.mq4 └── TestRedisSubscribe.mq4 /Include/Mt4Redis/Redis.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/Redis.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/RedisBase.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/RedisBase.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/RedisCommand.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/RedisCommand.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/RedisCommon.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/RedisCommon.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/RedisContext.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/RedisContext.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/RedisPubSub.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/RedisPubSub.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/RedisReply.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/RedisReply.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/RedisSimple.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/RedisSimple.mqh -------------------------------------------------------------------------------- /Include/Mt4Redis/Utils.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Include/Mt4Redis/Utils.mqh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/Mt4Redis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Library/Mt4Redis.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Test/TestRedisCommand.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Scripts/Test/TestRedisCommand.mq4 -------------------------------------------------------------------------------- /Scripts/Test/TestRedisPublish.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Scripts/Test/TestRedisPublish.mq4 -------------------------------------------------------------------------------- /Scripts/Test/TestRedisSimple.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Scripts/Test/TestRedisSimple.mq4 -------------------------------------------------------------------------------- /Scripts/Test/TestRedisSubscribe.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingmaotu/mql4-redis/HEAD/Scripts/Test/TestRedisSubscribe.mq4 --------------------------------------------------------------------------------