Skip to content

Repository files navigation

coinex

A minimal coinex.com API wrapper. Some of the functions accept additional arguments, see the API documentation for those.

installation

pip install coinex.py

usage

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()

Releases

Packages

Contributors

Languages