forked fromEchterAgo/coinex
- Notifications
You must be signed in to change notification settings - Fork0
alimogh/CoinEx
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A minimalcoinex.com API wrapper. Some of the functions accept additional arguments, see the API documentation for those.
pip install coinex.py
fromcoinex.coineximportCoinExfromsomewhere_elseimportaccess_id,secretcoinex=CoinEx(access_id,secret)# public APIcoinex.market_list()coinex.market_ticker('BCHBTC')coinex.market_depth('BCHBTC')coinex.market_deals('BCHBTC')# private APIcoinex.balance_info()coinex.balance_coin_withdraw_list()coinex.balance_coin_withdraw('BCH','qzjtuuc9nafvfhmwt47z84awltp9gmx7wyma3kvy9v',0.001)coinex.balance_coin_withdraw_list(coin_withdraw_id=2465345342)coinex.balance_coin_withdraw_cancel(coin_withdraw_id=2465345342)coinex.order_limit('CETBCH','sell',100.0,10.0)coinex.order_market('CETBCH','buy',1.0)coinex.order_ioc('CETBCH','sell',100.0,10.0)coinex.order_pending('CETBCH')coinex.order_finished('CETBCH')coinex.order_status('CETBCH',2465345342)coinex.order_deals(2465345342)coinex.order_user_deals('CETBCH')coinex.order_pending_cancel('CETBCH',2465345342)coinex.order_mining_difficulty()