pymt5pure 0.3.1

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

pymt5pure 0.3.1

pymt5pure
MetaTrader 5 WebAPI implementation in Python.
Installation
pip install pymt5pure

Usage
Create a client:
from pymt5pure import MT5Client, MT5Api

client = MT5Client(host="111.111.111.111", port=443)
client.connect(username="33007", password="112233")
print("Connected!")

# Basic command call
response = client('SYMBOL_NEXT', INDEX=0)
print(response.params)
print(response.json)

# Using MT5's Official objects
mt5 = MT5Api(client)

result = mt5.symbol_total()
print(result)

result = mt5.symbol_next(0)
print(
result.CurrencyBase,
result.CurrencyProfit,
result.Description
)

Features

Basic socket connection
Authentication
Connection KeepAlive
AES Encryption
[~] MT5API interfaces (incomplete)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.