# MetaTrader 5 for linux system
A simple package that uses [wine](https://www.winehq.org), [rpyc](https://github.com/tomerfiliba-org/rpyc) and a Python Windows version to allow using [MetaTrader5](https://pypi.org/project/MetaTrader5) on Linux.
## Install
1. Install [Wine](https://wiki.winehq.org/Download).
2. Install [Python for Windows](https://www.python.org/downloads/windows/) on Linux with the help of Wine.
3. Find the path to `python.exe`.
- Mine is installed on `/home/user/.wine/drive_c/users/user/Local Settings/Application Data/Programs/Python/Python39`.
4. Install [mt5](https://www.mql5.com/en/docs/integration/python_metatrader5) library on your **Windows** Python version.
```
pip install MetaTrader5
pip install --upgrade MetaTrader5
```
5. Install this package on both **Windows** and **Linux** Python versions:
```
pip install mt5linux
```
## How To Use
Follow the steps:
1. Open MetaTrader5.
2. On **Windows** side, start the server on a terminal:
```
python -m mt5linux <path/to/python.exe>
```
3. On **Linux** side, make your scripts/notebooks as you did with MetaTrader5:
```python
# import the package
from mt5linux import MetaTrader5
# connecto to the server
mt5 = MetaTrader5(
# host = 'localhost' (default)
# port = 18812 (default)
)
# use as you learned from: https://www.mql5.com/en/docs/integration/python_metatrader5/
mt5.initialize()
mt5.terminal_info()
mt5.copy_rates_from_pos('GOOG',mt5.TIMEFRAME_M1,0,1000)
# ...
# don't forget to shutdown
mt5.shutdown()
```
4. Be happy!
On step 2 you can provide the port, host, executable, etc... just type `python -m mt5linux --help`.
Raw data
{
"_id": null,
"home_page": "https://github.com/Traders-Connect/mt5linux-tc",
"name": "mt5linux-tc",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "",
"author": "Lucas Prett Campagna",
"author_email": "",
"download_url": "",
"platform": null,
"description": "# MetaTrader 5 for linux system\r\n\r\nA simple package that uses [wine](https://www.winehq.org), [rpyc](https://github.com/tomerfiliba-org/rpyc) and a Python Windows version to allow using [MetaTrader5](https://pypi.org/project/MetaTrader5) on Linux.\r\n\r\n## Install\r\n\r\n1. Install [Wine](https://wiki.winehq.org/Download).\r\n\r\n2. Install [Python for Windows](https://www.python.org/downloads/windows/) on Linux with the help of Wine.\r\n\r\n3. Find the path to `python.exe`.\r\n\r\n - Mine is installed on `/home/user/.wine/drive_c/users/user/Local Settings/Application Data/Programs/Python/Python39`.\r\n\r\n4. Install [mt5](https://www.mql5.com/en/docs/integration/python_metatrader5) library on your **Windows** Python version.\r\n\r\n```\r\npip install MetaTrader5\r\npip install --upgrade MetaTrader5\r\n```\r\n\r\n5. Install this package on both **Windows** and **Linux** Python versions:\r\n\r\n```\r\npip install mt5linux\r\n```\r\n\r\n## How To Use\r\n\r\nFollow the steps:\r\n\r\n1. Open MetaTrader5.\r\n\r\n2. On **Windows** side, start the server on a terminal:\r\n\r\n```\r\npython -m mt5linux <path/to/python.exe>\r\n```\r\n\r\n3. On **Linux** side, make your scripts/notebooks as you did with MetaTrader5:\r\n\r\n```python\r\n# import the package\r\nfrom mt5linux import MetaTrader5\r\n# connecto to the server\r\nmt5 = MetaTrader5(\r\n # host = 'localhost' (default)\r\n # port = 18812 (default)\r\n) \r\n# use as you learned from: https://www.mql5.com/en/docs/integration/python_metatrader5/\r\nmt5.initialize()\r\nmt5.terminal_info()\r\nmt5.copy_rates_from_pos('GOOG',mt5.TIMEFRAME_M1,0,1000)\r\n# ...\r\n# don't forget to shutdown\r\nmt5.shutdown()\r\n```\r\n\r\n4. Be happy!\r\n\r\nOn step 2 you can provide the port, host, executable, etc... just type `python -m mt5linux --help`.\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "MetaTrader5 for linux users",
"version": "0.2.3",
"project_urls": {
"Homepage": "https://github.com/Traders-Connect/mt5linux-tc"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1c5bc2ce041cfb218a87b6f75a5c81d6fad052245e319efaa08a859ddc380af8",
"md5": "c4b60add796ed395e90a7fd4206197bb",
"sha256": "0549286dd6008260b72607e2a97a067a652ad31fbd74bea8fb55de5e0213af9a"
},
"downloads": -1,
"filename": "mt5linux_tc-0.2.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c4b60add796ed395e90a7fd4206197bb",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 2771,
"upload_time": "2024-01-24T23:57:28",
"upload_time_iso_8601": "2024-01-24T23:57:28.786834Z",
"url": "https://files.pythonhosted.org/packages/1c/5b/c2ce041cfb218a87b6f75a5c81d6fad052245e319efaa08a859ddc380af8/mt5linux_tc-0.2.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-01-24 23:57:28",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Traders-Connect",
"github_project": "mt5linux-tc",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "mt5linux-tc"
}