Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mraniki/findmyorder

A python package to identify and parse order for trade execution.
https://github.com/mraniki/findmyorder

findmyorder order parsing pyparsing pypi-package talky trading

Last synced: 19 days ago
JSON representation

A python package to identify and parse order for trade execution.

Awesome Lists containing this project

README

        











Logo

















Find My order,

a parsing package to find trading order.

How to use it



from findmyorder import FindMyOrder
fmo = FindMyOrder()
msg_order = "buy EURUSD sl=1000 tp=1000 q=1 comment=FOMC"
order = await fmo.get_order(msg_order)
#{'action': 'BUY', 'instrument': 'EURUSD', 'stop_loss': '1000', 'take_profit': '1000', 'quantity': '2', 'order_type': None, 'leverage_type': None, 'comment': None, 'timestamp': datetime.datetime(2023, 5, 3, 12, 10, 28, 731282, tzinfo=datetime.timezone.utc)}

Documentation