├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.txt ├── LICENSE.txt ├── MQL4 ├── Include │ └── OTMql4 │ │ ├── OTBarInfo.mqh │ │ ├── OTLibConstants.mqh │ │ ├── OTLibJsonFormat.mqh │ │ ├── OTLibLog.mqh │ │ ├── OTLibMt4ProcessCmd.mqh │ │ ├── OTLibProcessCmd.mqh │ │ ├── OTLibServerErrors.mqh │ │ ├── OTLibSimpleFormatCmd.mqh │ │ ├── OTLibStrings.mqh │ │ └── OTLibTrading.mqh ├── Libraries │ └── OTMql4 │ │ ├── OTLibJsonFormat.mq4 │ │ ├── OTLibLog.mq4 │ │ ├── OTLibMt4ProcessCmd.mq4 │ │ ├── OTLibProcessCmd.mq4 │ │ ├── OTLibServerErrors.mq4 │ │ ├── OTLibSimpleFormatCmd.mq4 │ │ ├── OTLibStrings.mq4 │ │ └── OTLibTrading.mq4 ├── Python │ └── __init__.py └── Scripts │ └── OTMql4 │ └── OTLibTest.mq4 ├── README.creole ├── share └── html │ ├── CodeLibraries.html │ ├── CodeScripts.html │ ├── DevelopmentStyle.html │ ├── DirectoryStructure.html │ ├── FrontPage.html │ ├── Home.html │ ├── Installation.html │ ├── OTLibJsonFormat.html │ ├── OTLibLog.html │ ├── OTLibMt4ProcessCmd.html │ ├── OTLibProcessCmd.html │ ├── OTLibServerErrors.html │ ├── OTLibSimpleFormatCmd.html │ ├── OTLibStrings.html │ ├── OTLibTest.html │ ├── OTLibTrading.html │ └── TitleIndex.html └── wiki ├── CodeLibraries.creole ├── CodeScripts.creole ├── DevelopmentStyle.creole ├── DirectoryStructure.creole ├── FrontPage.creole ├── Home.creole ├── Installation.creole ├── OTLibJsonFormat.creole ├── OTLibLog.creole ├── OTLibMt4ProcessCmd.creole ├── OTLibProcessCmd.creole ├── OTLibServerErrors.creole ├── OTLibSimpleFormatCmd.creole ├── OTLibStrings.creole ├── OTLibTest.creole ├── OTLibTrading.creole ├── TitleIndex.creole ├── _Footer.creole └── _Sidebar.creole /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTBarInfo.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTBarInfo.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibConstants.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibConstants.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibJsonFormat.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibJsonFormat.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibLog.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibLog.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibMt4ProcessCmd.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibMt4ProcessCmd.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibProcessCmd.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibProcessCmd.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibServerErrors.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibServerErrors.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibSimpleFormatCmd.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibSimpleFormatCmd.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibStrings.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibStrings.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibTrading.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Include/OTMql4/OTLibTrading.mqh -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibJsonFormat.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibJsonFormat.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibLog.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibLog.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibMt4ProcessCmd.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibMt4ProcessCmd.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibProcessCmd.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibProcessCmd.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibServerErrors.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibServerErrors.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibSimpleFormatCmd.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibSimpleFormatCmd.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibStrings.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibStrings.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibTrading.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Libraries/OTMql4/OTLibTrading.mq4 -------------------------------------------------------------------------------- /MQL4/Python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MQL4/Scripts/OTMql4/OTLibTest.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/MQL4/Scripts/OTMql4/OTLibTest.mq4 -------------------------------------------------------------------------------- /README.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/README.creole -------------------------------------------------------------------------------- /share/html/CodeLibraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/CodeLibraries.html -------------------------------------------------------------------------------- /share/html/CodeScripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/CodeScripts.html -------------------------------------------------------------------------------- /share/html/DevelopmentStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/DevelopmentStyle.html -------------------------------------------------------------------------------- /share/html/DirectoryStructure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/DirectoryStructure.html -------------------------------------------------------------------------------- /share/html/FrontPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/FrontPage.html -------------------------------------------------------------------------------- /share/html/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/Home.html -------------------------------------------------------------------------------- /share/html/Installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/Installation.html -------------------------------------------------------------------------------- /share/html/OTLibJsonFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibJsonFormat.html -------------------------------------------------------------------------------- /share/html/OTLibLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibLog.html -------------------------------------------------------------------------------- /share/html/OTLibMt4ProcessCmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibMt4ProcessCmd.html -------------------------------------------------------------------------------- /share/html/OTLibProcessCmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibProcessCmd.html -------------------------------------------------------------------------------- /share/html/OTLibServerErrors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibServerErrors.html -------------------------------------------------------------------------------- /share/html/OTLibSimpleFormatCmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibSimpleFormatCmd.html -------------------------------------------------------------------------------- /share/html/OTLibStrings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibStrings.html -------------------------------------------------------------------------------- /share/html/OTLibTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibTest.html -------------------------------------------------------------------------------- /share/html/OTLibTrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/OTLibTrading.html -------------------------------------------------------------------------------- /share/html/TitleIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/share/html/TitleIndex.html -------------------------------------------------------------------------------- /wiki/CodeLibraries.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/CodeLibraries.creole -------------------------------------------------------------------------------- /wiki/CodeScripts.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/CodeScripts.creole -------------------------------------------------------------------------------- /wiki/DevelopmentStyle.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/DevelopmentStyle.creole -------------------------------------------------------------------------------- /wiki/DirectoryStructure.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/DirectoryStructure.creole -------------------------------------------------------------------------------- /wiki/FrontPage.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/FrontPage.creole -------------------------------------------------------------------------------- /wiki/Home.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/Home.creole -------------------------------------------------------------------------------- /wiki/Installation.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/Installation.creole -------------------------------------------------------------------------------- /wiki/OTLibJsonFormat.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibJsonFormat.creole -------------------------------------------------------------------------------- /wiki/OTLibLog.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibLog.creole -------------------------------------------------------------------------------- /wiki/OTLibMt4ProcessCmd.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibMt4ProcessCmd.creole -------------------------------------------------------------------------------- /wiki/OTLibProcessCmd.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibProcessCmd.creole -------------------------------------------------------------------------------- /wiki/OTLibServerErrors.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibServerErrors.creole -------------------------------------------------------------------------------- /wiki/OTLibSimpleFormatCmd.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibSimpleFormatCmd.creole -------------------------------------------------------------------------------- /wiki/OTLibStrings.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibStrings.creole -------------------------------------------------------------------------------- /wiki/OTLibTest.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibTest.creole -------------------------------------------------------------------------------- /wiki/OTLibTrading.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/OTLibTrading.creole -------------------------------------------------------------------------------- /wiki/TitleIndex.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/TitleIndex.creole -------------------------------------------------------------------------------- /wiki/_Footer.creole: -------------------------------------------------------------------------------- 1 | [[Home]] 2 | -------------------------------------------------------------------------------- /wiki/_Sidebar.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Lib/HEAD/wiki/_Sidebar.creole --------------------------------------------------------------------------------