https://github.com/mraniki/cefi
A Python package to interact with centralized trading platforms (CEX) supported by CCXT, Capital.com, DEGIRO, IBKR and others
https://github.com/mraniki/cefi
capitalcom ccxt cex interactive-brokers package python talky
Last synced: 9 months ago
JSON representation
A Python package to interact with centralized trading platforms (CEX) supported by CCXT, Capital.com, DEGIRO, IBKR and others
- Host: GitHub
- URL: https://github.com/mraniki/cefi
- Owner: mraniki
- License: mit
- Created: 2023-08-09T05:54:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-23T23:56:34.000Z (10 months ago)
- Last Synced: 2025-07-24T02:18:58.466Z (10 months ago)
- Topics: capitalcom, ccxt, cex, interactive-brokers, package, python, talky
- Language: Python
- Homepage: https://talky.readthedocs.io
- Size: 8.7 MB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README








Interact with centralized trading platforms (CEX)
supported by CCXT, Capital.com, DEGIRO, IBKR and others.
How to use it
cex = CexTrader()
balance = await cex.get_balances()
print("balance ", balance)
symbol = "BTC"
quote = await cex.get_quotes(symbol)
print("quote ", quote)
order = {
"action": "BUY",
"instrument": "BTC",
"quantity": 1,
}
order = await cex.submit_order(order)
print("order ", order)
Documentation
