A command line interface, CLI, to trade on the Poloniex exchange through its RestFul API.
You can consult your balance and place orders on the exchange.
It is a Python script with support to both versions 2 and 3.
$ polo help
Examples:
polo balance
polo summary # margin
polo tradable # margin
polo position BTC_ETH # margin
polo long BTC_ETH 0.01981 10 # margin
polo short BTC_ETH 0.01981 10 # margin
polo close BTC_ETH # margin
polo buy BTC_ETH 0.01981 10 # exchange
polo sell BTC_ETH 0.01981 10 # exchange
polo orders BTC_ETH
polo trades 40829005273
polo cancel 40829005273
polo move 40829005273 0.01981 [10]
polo transfer ETH 10 exchange margin
- This software is not endorsed by the Poloniex exchange. It is just an author's study on use of the RestFul API provided by them.
- This software is provided as is, without any guarantee of working or profit.
- Trading involves high risks. The author can not be responsible for any losses when using this software.
Create a settings.py
file and fill it with yours API key and secret. Use the settings.py_template
as a model.