The mt4pycon
repo is a collection of Python3 code used to interface with MT4 and MT5
terminals via 3rd party API's. As of today there is only 2 scripts available, but will
soon contain several other examples for simple indicators, data scrapers/analyzers to
AI/ML automated trading bots.
con2mtapi.py
This is a simple Python3 CLI client that is using the MT4 bridge API
(mtapi) to connect to a MT4 Terminal which
is running the MtApi.ex4
Expert Advisor (EA). It communicates with the EA using either
a TCP/IP host:port
pair or a pipe port, to get some historical OHLCV formatted candle data
for a specified symbol and timeframe. This particular script is using the MQL built-in
CopyRates
and iBars()
functions for receiving the candle data.
liveTicks.py
A very rudimentary data feed that is continusly polling the MQL SymbolInfoTick(sym)
funtion, to display Time, Bid, Ask and Spread (in points), for a given symbol.
This should probably be rewritten using a threaded listener...
Example Output:
Using symbolic TF and normal tabulated output.
Using numerical TF and CSV output.
Live Tick stream with Spread...
Q: What is mtapi
and what does it do?
The MetaTrader API is a Windows library bridging your MT4/5 Terminal and .NET. It consists of a number of DLL files created in .NET that need to be installed separately, which in turn depends on wheater you are using MT4 or MT5 as your terminal server. (Installation instructions and links to the Windows installers can be found below.)
Q: What does con2mtapi.py
do?
The primary use is for demonstrating how to use Python3 to connect to an MT4 or MT5 Terminal instance using the mtapi library. It will retrienve and display historical OHLCV formatted candle data, given a specific symbol, timeframe and the number of requsted candles.
Furthermore, you can easily expand the example to get and make use all of the native MQL4 commands. In which case you can do anything already available in the MQL4 and much more, since you are no longer limited by MT4's lack of API support. Although the perfomance offered is far from excellent, it's more than good enough to excute and monitor scalping trades on low timeframes.
Q: What does it not do?
- Does not send your python code and algorithms to MetaQuotes servers.
- Does not allow for HFT trading, althogh 1M and 5M scalping is possible.
- Does not provide any reliability for trading safely.
- Does not (yet) have a listener for live feeds.
Q: What other limitations does it have?
π΄ The number of candles available for download, is completely determined by the
settings of your terminal (MaxBars
) and how much symbol history is avalable
from your broker. If you can only see a few months (or <4000 M5
candles) of data,
you should consider changing your broker.
Q: Why is this needed?
It probably isn't if you are already happy to use MT5, BUT most brokers still get talked into using the high-maintenace MT4 terminal client, manager and server infrastructure. Afterall, it works and is well proven although outdated by decades.
Another very good reason is that the MT5 Python API provided by MetaQutes (MQ) is closed-source and are also sending your Python code to their own MQ servers, thus rendering all your intellectual property wide open and available for unknown 3rd parties. Obviously not a good idea in world where algorithms are money.
Q: Will I continue to support this tool?
Maybe, if it is broken, but I will not spend much more time for new features. There are plenty of alternative and far better platforms (such as xStation and cTrader) that are doing quite a bit of open-source development and trading integration in a far more modern context. However, if you would like me to add something, just send me a PR, or at the very least a detailed enhancement issue of what you would like to implement. As always, any small crypto donation is an inspitring incentive to make things happen faster.
Python packages:
- pythonnet -
Python.NET
for the .NET Common Language Runtime (CLR) - pyreadline - [Not Required] "You don't wanna develop without it!"
and what you already have:
- MT4 - Latest (unbranded) MT4 and MetaEditor4 downloads
- MtApi - The MT4/5 Terminal to .NET bridge library
Using the scripts in this repo code, require 3 things:
- Installing the MtApi DLL Libraries
- Copying some DLL's to the script directory
- Installing the MtApi Expert Advisor
- Installing
con2mtapi.py
The MtApi DLL's are installed with a normal (WIX-based) Windows installer. Make sure to use the correct installer for your OS, and for the MT4/5 Terminal you want to connect with. Always, check the releases in the original MtApi repo for the latest versions. Pay attention to the MT4 vs MT5 versions, as the installers are different.
- For
MT4 (32-bit x86)
use:MtApi_Setup.exe
[1.0.42] - For
MT5 (32-bit x86)
use:MtApi5_Setup_x86.exe
[1.0.24] - For
MT5 (64-bit x64)
use:MtApi5_Setup_x64.exe
[1.0.24]
The installation locations for the installed DLL files are:
MtApi.dll # MQL API # C:\Program Files (x86)\MtApi\MtApi.dll
Newtonsoft.Json.dll # JSON handler # C:\Program Files (x86)\MtApi\Newtonsoft.Json.dll
MTConnector.dll # MT4 specific connector # C:\windows\SysWOW64\MTConnector.dll
MT5Connector.dll # MT5-x86 specific connector # C:\windows\SysWOW64\MT5Connector.dll
MT5Connector.dll # MT5-x64 specific connector # C:\windows\System32\MT5Connector.dll
MTApiService.dll # API bridge # C:\windows\Microsoft.NET\assembly\GAC_MSIL\MTApiService\...\MTApiService.dll
For example:
For an MT4 installation the following default locations are used:
# tree 'C:\Program Files (x86)\MtApi\'
C:\Program Files (x86)\MtApi\
βββ Experts
βΒ Β βββ MtApi.ex4
βββ MtApi.dll
βββ Newtonsoft.Json.dll
# tree 'C:\windows\Microsoft.NET\assembly\GAC_MSIL\MTApiService'
C:\windows\Microsoft.NET\assembly\GAC_MSIL\MTApiService
βββ v4.0_1.0.33.0__fe39c8c11cabcd1e
βββ MTApiService.dll
# find /cygdrive/c/Windows/{System32,SysWOW64}/ -iname "MT*Connector.dll"
C:\windows\SysWOW64\MTConnector.dll
Unless the DLL locations (above) have also been added to your Windows System PATH variable, your scripts will not know where to find them. So you need to copy the following DLL's to the same location as your script.
MtApi.dll
Newtonsoft.Json.dll
- Open your MT4/5 Terminal
- Find the correct Data Directory of your MT4/5 Terminal
[
File >> Open Data Folder
] - Locate the path to the
../MQL4/Experts/
folder in (2). - Copy the
MtApi.ex4
file from the installation directory, to the folder above (3). - Open the MT (file) Navigator window with
CTRL-N
. - Drag the EA in (4) to any chart in your MT4/5 Terminal
- Make sure your EA Settings are as follows:
- For pip installation:
pip install mt4pycon
Click Here for other options
- For single file installation:
cd /usr/bin/
wget -Lk https://github.com/eabase/mt4pycon/raw/master/con2mtapi.py
chmod 755 con2mtapi.py
- For developer installation:
# git clone --single-branch --depth=1 https://github.com/eabase/mt4pycon.git
git clone https://github.com/eabase/mt4pycon.git
cd mt4pycon
pip install mt4pycon --user
β¨ Done!
If you want to compile your own MtApi libraries, please check the original mtapi github repo for detailed compilation instructions.
In summary, for modifying the EA, you would need to:
(a) Copy the MtApi.mq4
file into the ../MQL4/Experts/
folder.
(b) Copy the following MQL Library files into the ../MQL4/Include/
folder:
hash.mqh
json.mqh
mql4-auth.mqh
(c) Recompile MtApi.mq4
in MetaEditor4.
- Make sure you have installed the correct DLL's (as described above)
- Make sure you have copied the 2 DLL's to your script location (or that they are in the Windows System PATH.)
- Make sure you are allowing these (default) connections through you Windows Firewall:
- For MT4: use port
8222
- For MT5: use port
8228
- For MT4: use port
Click For Details
In Windows powershell, you can check these FW ports with:
# Check on what interfaces the FW is enabled
Get-NetFirewallProfile -Profile Domain, Public, Private | Select-Object Name, Enabled
# Check for specific port rules
Get-NetFirewallPortFilter | ?{$_.LocalPort -eq 8222} | Get-NetFirewallRule
# Set FW rule for MT4API (for localhost?)
$desc = "This port is used by the MtApi .NET MT4 API connector."
New-NetFirewallRule -Name mtapi -DisplayName 'MT4API' -Description $desc -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 8222
- Copy the EA into the
../MQL4/Experts/
data folder of your MT4 Terminal, normally located at:
C:\Users\<username>\AppData\Roaming\MetaQuotes\Terminal\<unique-hash>\MQL4\Experts\
- Check the available
con2mtapi
command line options with:
Click To See
# python.exe .\con2mtapi.py -h Usage: ./con2mtapi.py
This connects to an MT4 EA via a TCP port (or pipe) to receive OHLCV data.
--------------------------------------------------------------------------------
Command Line Options:
-d : Enable extra debug info
-n <n> : Show <n> number of candles back
-p : Use a "Named Pipe" connection (instead of a TCP IP host:port)
-l : Show candle data as a list (one line per OHLC item)
-s <symbol> : Set symbol name to <symbol> ["EURUSD"]
-t <timeframe> : Set timeframe to <timeframe> [M1,M5,M15*,M30,H1,H4,D1,W1,MN1]**
-h, --help : Show THIS help list
-v, --version : Show THIS program version
--------------------------------------------------------------------------------
* = a default setting
** = The standard MT4 TF's are:
[M1,M5,M15,M30,H1,H4,D1,W1,MN1]
[1,5,15,30,60,240,1440,10080,43200]
The non-standard TF's are: (not yet available)
[M2,M3,M4,M6,M10,M12,M20,H2,H3,H6,H8,H12]
[2,3,4,6,10,12,20,120,180,360,480,720]
--------------------------------------------------------------------------------
Example for Windows:
python.exe .\con2mtapi.py -n4 -s "CADCHF.x" -t H4 -p -d
Please file any bug reports at:
https://github.com/eabase/mt4pycon/
For support of the MT4/5 API, see:
https://github.com/vdemydiuk/mtapi/
Version: 1.0.2
License: MIT (2020)
|
- dwx-zeromq-connector (ZeroMQ-enabled MetaTrader Bridge EA)
- mql4-lib (MQL4/5 Foundation Library)
- mql-zmq (ZMQ binding for the MQL)
β When running the script for the first time on a certain symbol and timeframe, the candle data will not be available in the MT4 terminal buffer, so the script will fail. Just run it again and MT4 will most likely have already downloaded the new data. A bug report has been filed in this issue.
See issues marked ToDo.
Feel free to post issues and PR's related to this tool.
Feel free to fork, break, fix and contribute. Enjoy!
Almost everything I do is Free and Open Source Software (FOSS). This means that I do not receive any income on any of my projects. So if you find any of my projects or code, cool & useful, please consider making a small donation to any of my crypto accounts.
See my profile page for Crypto Adresses.
I use an MIT
license because I support mtapi.