├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.txt ├── LICENSE.txt ├── MQL4 ├── Experts │ └── OTMql4 │ │ └── OTPyTestNullEA.mq4 ├── Include │ └── OTMql4 │ │ ├── OTLibPy27.mqh │ │ ├── OTLibPyLog.mqh │ │ ├── OTPy27.mqh │ │ └── OTPyChart.mqh ├── Libraries │ └── OTMql4 │ │ ├── OTLibPy27.mq4 │ │ ├── OTLibPyLog.mq4 │ │ ├── OTPyChart.mq4 │ │ └── py27.dll.bak ├── Python │ └── OTMql427 │ │ ├── Mq4Chart.py │ │ ├── Mt4SafeEval.py │ │ ├── Mt4Tkinter.py │ │ ├── OTLibLog.py │ │ ├── SimpleFormat.py │ │ ├── TkFileIO.py │ │ └── __init__.py └── Scripts │ └── OTMql4 │ └── OTMql4PyTest.mq4 ├── README.creole ├── etc └── pylint.rc ├── net └── Http │ └── sites.google.com │ └── site │ └── prof7bit │ └── py26-dll-source.rar ├── share └── html │ ├── Architecture.html │ ├── CodeLibraries.html │ ├── CodeScripts.html │ ├── DevelopmentStyle.html │ ├── ForumPosts.html │ ├── FrontPage.html │ ├── Home.html │ ├── Installation.html │ ├── MetatraderWithPython.html │ ├── OTLibPy27.html │ ├── OTLibPyLog.html │ ├── OTMql4PyTest.html │ ├── OTPyChart.html │ ├── ProjectHistory.html │ ├── Python32Or64Bit.html │ ├── RoadMap.html │ ├── SomeNotes.html │ ├── TestedVersions.html │ ├── Testing.html │ ├── TitleIndex.html │ └── Usage.html ├── src └── mql4py │ ├── Readme.txt │ ├── py27.dll │ ├── py27.lpi │ └── py27.lpr └── wiki ├── Architecture.creole ├── CodeLibraries.creole ├── CodeScripts.creole ├── DevelopmentStyle.creole ├── ForumPosts.creole ├── FrontPage.creole ├── Home.creole ├── Installation.creole ├── MetatraderWithPython.creole ├── OTLibPy27.creole ├── OTLibPyLog.creole ├── OTMql4PyTest.creole ├── OTPyChart.creole ├── ProjectHistory.creole ├── Python32Or64Bit.creole ├── RoadMap.creole ├── SomeNotes.creole ├── TestedVersions.creole ├── Testing.creole ├── TitleIndex.creole ├── Usage.creole ├── _Footer.creole └── _Sidebar.creole /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MQL4/Experts/OTMql4/OTPyTestNullEA.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Experts/OTMql4/OTPyTestNullEA.mq4 -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibPy27.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Include/OTMql4/OTLibPy27.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTLibPyLog.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Include/OTMql4/OTLibPyLog.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTPy27.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Include/OTMql4/OTPy27.mqh -------------------------------------------------------------------------------- /MQL4/Include/OTMql4/OTPyChart.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Include/OTMql4/OTPyChart.mqh -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibPy27.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Libraries/OTMql4/OTLibPy27.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTLibPyLog.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Libraries/OTMql4/OTLibPyLog.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/OTPyChart.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Libraries/OTMql4/OTPyChart.mq4 -------------------------------------------------------------------------------- /MQL4/Libraries/OTMql4/py27.dll.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Libraries/OTMql4/py27.dll.bak -------------------------------------------------------------------------------- /MQL4/Python/OTMql427/Mq4Chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Python/OTMql427/Mq4Chart.py -------------------------------------------------------------------------------- /MQL4/Python/OTMql427/Mt4SafeEval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Python/OTMql427/Mt4SafeEval.py -------------------------------------------------------------------------------- /MQL4/Python/OTMql427/Mt4Tkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Python/OTMql427/Mt4Tkinter.py -------------------------------------------------------------------------------- /MQL4/Python/OTMql427/OTLibLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Python/OTMql427/OTLibLog.py -------------------------------------------------------------------------------- /MQL4/Python/OTMql427/SimpleFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Python/OTMql427/SimpleFormat.py -------------------------------------------------------------------------------- /MQL4/Python/OTMql427/TkFileIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Python/OTMql427/TkFileIO.py -------------------------------------------------------------------------------- /MQL4/Python/OTMql427/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Python/OTMql427/__init__.py -------------------------------------------------------------------------------- /MQL4/Scripts/OTMql4/OTMql4PyTest.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/MQL4/Scripts/OTMql4/OTMql4PyTest.mq4 -------------------------------------------------------------------------------- /README.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/README.creole -------------------------------------------------------------------------------- /etc/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/etc/pylint.rc -------------------------------------------------------------------------------- /net/Http/sites.google.com/site/prof7bit/py26-dll-source.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/net/Http/sites.google.com/site/prof7bit/py26-dll-source.rar -------------------------------------------------------------------------------- /share/html/Architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/Architecture.html -------------------------------------------------------------------------------- /share/html/CodeLibraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/CodeLibraries.html -------------------------------------------------------------------------------- /share/html/CodeScripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/CodeScripts.html -------------------------------------------------------------------------------- /share/html/DevelopmentStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/DevelopmentStyle.html -------------------------------------------------------------------------------- /share/html/ForumPosts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/ForumPosts.html -------------------------------------------------------------------------------- /share/html/FrontPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/FrontPage.html -------------------------------------------------------------------------------- /share/html/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/Home.html -------------------------------------------------------------------------------- /share/html/Installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/Installation.html -------------------------------------------------------------------------------- /share/html/MetatraderWithPython.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/MetatraderWithPython.html -------------------------------------------------------------------------------- /share/html/OTLibPy27.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/OTLibPy27.html -------------------------------------------------------------------------------- /share/html/OTLibPyLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/OTLibPyLog.html -------------------------------------------------------------------------------- /share/html/OTMql4PyTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/OTMql4PyTest.html -------------------------------------------------------------------------------- /share/html/OTPyChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/OTPyChart.html -------------------------------------------------------------------------------- /share/html/ProjectHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/ProjectHistory.html -------------------------------------------------------------------------------- /share/html/Python32Or64Bit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/Python32Or64Bit.html -------------------------------------------------------------------------------- /share/html/RoadMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/RoadMap.html -------------------------------------------------------------------------------- /share/html/SomeNotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/SomeNotes.html -------------------------------------------------------------------------------- /share/html/TestedVersions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/TestedVersions.html -------------------------------------------------------------------------------- /share/html/Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/Testing.html -------------------------------------------------------------------------------- /share/html/TitleIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/TitleIndex.html -------------------------------------------------------------------------------- /share/html/Usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/share/html/Usage.html -------------------------------------------------------------------------------- /src/mql4py/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/src/mql4py/Readme.txt -------------------------------------------------------------------------------- /src/mql4py/py27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/src/mql4py/py27.dll -------------------------------------------------------------------------------- /src/mql4py/py27.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/src/mql4py/py27.lpi -------------------------------------------------------------------------------- /src/mql4py/py27.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/src/mql4py/py27.lpr -------------------------------------------------------------------------------- /wiki/Architecture.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/Architecture.creole -------------------------------------------------------------------------------- /wiki/CodeLibraries.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/CodeLibraries.creole -------------------------------------------------------------------------------- /wiki/CodeScripts.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/CodeScripts.creole -------------------------------------------------------------------------------- /wiki/DevelopmentStyle.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/DevelopmentStyle.creole -------------------------------------------------------------------------------- /wiki/ForumPosts.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/ForumPosts.creole -------------------------------------------------------------------------------- /wiki/FrontPage.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/FrontPage.creole -------------------------------------------------------------------------------- /wiki/Home.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/Home.creole -------------------------------------------------------------------------------- /wiki/Installation.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/Installation.creole -------------------------------------------------------------------------------- /wiki/MetatraderWithPython.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/MetatraderWithPython.creole -------------------------------------------------------------------------------- /wiki/OTLibPy27.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/OTLibPy27.creole -------------------------------------------------------------------------------- /wiki/OTLibPyLog.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/OTLibPyLog.creole -------------------------------------------------------------------------------- /wiki/OTMql4PyTest.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/OTMql4PyTest.creole -------------------------------------------------------------------------------- /wiki/OTPyChart.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/OTPyChart.creole -------------------------------------------------------------------------------- /wiki/ProjectHistory.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/ProjectHistory.creole -------------------------------------------------------------------------------- /wiki/Python32Or64Bit.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/Python32Or64Bit.creole -------------------------------------------------------------------------------- /wiki/RoadMap.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/RoadMap.creole -------------------------------------------------------------------------------- /wiki/SomeNotes.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/SomeNotes.creole -------------------------------------------------------------------------------- /wiki/TestedVersions.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/TestedVersions.creole -------------------------------------------------------------------------------- /wiki/Testing.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/Testing.creole -------------------------------------------------------------------------------- /wiki/TitleIndex.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/TitleIndex.creole -------------------------------------------------------------------------------- /wiki/Usage.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/Usage.creole -------------------------------------------------------------------------------- /wiki/_Footer.creole: -------------------------------------------------------------------------------- 1 | [[Home]] 2 | -------------------------------------------------------------------------------- /wiki/_Sidebar.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTrading/OTMql4Py/HEAD/wiki/_Sidebar.creole --------------------------------------------------------------------------------