All Projects → Aula13 → Poloniex

Aula13 / Poloniex

Licence: mit
Poloniex python API client for humans

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Poloniex

Python Poloniex
Poloniex API wrapper for Python 2.7 & 3
Stars: ✭ 557 (+684.51%)
Mutual labels:  api-wrapper, cryptocurrency, trading-api, poloniex, trading
Bxbot
A simple Bitcoin trading bot written in Java.
Stars: ✭ 515 (+625.35%)
Mutual labels:  trading-bot, cryptocurrency, trading-api, trading
Kelp
Kelp is a free and open-source trading bot for the Stellar DEX and 100+ centralized exchanges
Stars: ✭ 580 (+716.9%)
Mutual labels:  trading-bot, cryptocurrency, trading-api, trading
Python Bittrex
Python bindings for bittrex
Stars: ✭ 601 (+746.48%)
Mutual labels:  trading-bot, cryptocurrency, trading-api, trading
Coinbase Pro Trading Toolkit
DEPRECATED — The Coinbase Pro trading toolkit
Stars: ✭ 817 (+1050.7%)
Mutual labels:  trading-bot, cryptocurrency, poloniex, trading
Algotrading
Algorithmic trading framework for cryptocurrencies.
Stars: ✭ 249 (+250.7%)
Mutual labels:  trading-bot, cryptocurrency, trading-api, trading
Thewife
Crypto trading bot that reacts to optimized RSI signal 🤖📈💸
Stars: ✭ 22 (-69.01%)
Mutual labels:  trading-bot, cryptocurrency, trading
Wolfbot
Crypto currency trading bot written in TypeScript for NodeJS
Stars: ✭ 335 (+371.83%)
Mutual labels:  trading-bot, cryptocurrency, trading
Robin stocks
This is a library to use with Robinhood Financial App. It currently supports trading crypto-currencies, options, and stocks. In addition, it can be used to get real time ticker information, assess the performance of your portfolio, and can also get tax documents, total dividends paid, and more. More info at
Stars: ✭ 967 (+1261.97%)
Mutual labels:  cryptocurrency, trading-api, trading
51bitquant
51bitquant Python数字货币量化交易视频 CCXT框架 爬取交易所数据 比特币量化交易 交易机器人51bitquant tradingbot cryptocurrency quantitative trading btc trading
Stars: ✭ 284 (+300%)
Mutual labels:  trading-bot, cryptocurrency, trading
Siis
Trading bot including terminal, for crypto and traditionals markets. Assisted or fully automated strategy.
Stars: ✭ 45 (-36.62%)
Mutual labels:  trading-bot, cryptocurrency, trading
Gekko Strategies
Strategies to Gekko trading bot with backtests results and some useful tools.
Stars: ✭ 1,022 (+1339.44%)
Mutual labels:  trading-bot, cryptocurrency, trading
Tribeca
A high frequency, market making cryptocurrency trading platform in node.js
Stars: ✭ 3,646 (+5035.21%)
Mutual labels:  trading-bot, cryptocurrency, trading
Crypto Exchanges Gateway
Your gateway to the world of crypto !
Stars: ✭ 343 (+383.1%)
Mutual labels:  cryptocurrency, poloniex, trading
Octobot
Cryptocurrency trading bot: high frequency, daily trading, social trading, ...
Stars: ✭ 706 (+894.37%)
Mutual labels:  trading-bot, cryptocurrency, trading
Jesse
An advanced crypto trading bot written in Python
Stars: ✭ 1,038 (+1361.97%)
Mutual labels:  trading-bot, cryptocurrency, trading
Crypto Trading Bot
Cryptocurrency trading bot in javascript for Bitfinex, Bitmex, Binance, FTX, Bybit ... (public edition)
Stars: ✭ 1,089 (+1433.8%)
Mutual labels:  trading-bot, cryptocurrency, trading
crypto-database
Database for crypto data, supporting several exchanges. Can be used for TA, bots, backtest, realtime trading, etc.
Stars: ✭ 72 (+1.41%)
Mutual labels:  trading, trading-bot, poloniex
Tai
A composable, real time, market data and trade execution toolkit. Built with Elixir, runs on the Erlang virtual machine
Stars: ✭ 264 (+271.83%)
Mutual labels:  trading-bot, cryptocurrency, trading
Freqtrade Strategies
Free trading strategies for Freqtrade bot
Stars: ✭ 697 (+881.69%)
Mutual labels:  trading-bot, cryptocurrency, trading

poloniex ########

Poloniex python API client for humans

.. image:: https://travis-ci.org/Aula13/poloniex.svg?branch=master :target: https://travis-ci.org/Aula13/poloniex

.. image:: https://badge.fury.io/py/poloniex.svg :target: https://badge.fury.io/py/poloniex :alt: Code coverage

Description

Poloniex API_ client for humans

Installation

The package has been uploaded to PyPI_, so you can install it with pip:

.. code:: bash

$ pip install poloniex

Usage Examples

Documentation can be inspected by calling the python's help function with a Poloniex object as parameter:

.. code:: python

from poloniex import Poloniex polo = Poloniex() help(polo)

Public APIs """""""""""

.. code:: python

from poloniex import Poloniex polo = Poloniex() ticker = polo.returnTicker()['BTC_ETH'] print(ticker)

Private APIs """"""""""""

.. code:: python

from poloniex import Poloniex import os

api_key = os.environ.get('POLONIEX_API_KEY') api_secret = os.environ.get('POLONIEX_SECRET') polo = Poloniex(api_key, api_secret)

ticker = polo.returnTicker()['BTC_ETH'] print(ticker)

balances = polo.returnBalances() print(balances)

Used in

  • crypto_trader_: Trading automation on poloniex cyriptocoin exchange

Common Errors

If you are having a nonce error or an exception like this one below, you probably need to generate a new api key-secret pair.

.. code:: python

    Traceback (most recent call last):
      File "C:/Users/name/.PyCharmCE2018.2/config/scratches/scratch.py", line 10, in <module>
        balances = polo.returnBalances()
      File "C:\Users\name\AppData\Roaming\Python\Python27\site-packages\poloniex\poloniex.py", line 183, in returnBalances
        return self._private('returnBalances')
      File "C:\Users\name\AppData\Roaming\Python\Python27\site-packages\poloniex\poloniex.py", line 50, in _fn
        raise PoloniexCommandException(respdata['error'])
    poloniex.exceptions.PoloniexCommandException: Nonce must be greater than 1532206573738226. You provided 1533067257748.

    Process finished with exit code 1

Donations

BTC 13NpLwXgEP8d9NpDUHptY6BypFRNXHL3tr

.. _PyPI: https://pypi.python.org/pypi/poloniex .. _Poloniex API: https://poloniex.com/support/api/ .. _crypto_trader: https://github.com/timucin/cyripto_trader

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].