Skip to main content

Simple to use wrappers for the Bitfinex web socket api

Project description

btfx-trader

https://img.shields.io/pypi/v/btfx_trader.svg https://travis-ci.org/sentrip/btfx-trader.svg?branch=master Documentation Status https://codecov.io/gh/sentrip/btfx-trader/branch/master/graph/badge.svg Updates

“Simple to use wrappers for Bitfinex’s web socket api”

Features

  • Access to cryptocurrency data with api of queue.Queue

  • Simple api for trading that responds to account data

  • No boilerplate required to start trading

Installation

To install btfx-trader, run this command in your terminal:

$ pip install btfx-trader

Usage

To use public data:

from btfx_trader import PublicData

q = PublicData(types=['tickers'], symbols=['BTCUSD'])
q.connect()

while True:
    data = q.get('tickers', 'BTCUSD')

To make an order:

from btfx_trader import Trader

trader = Trader('YOUR_BITFINEX_KEY', 'YOUR_BITFINEX_SECRET')
trader.connect()
# Order 0.01 BTC at $10000 per bitcoin
order_id = trader.order('BTCUSD', 10000, dollar_amount=100)

To cancel an order:

# for a single order
trader.cancel(order_id)
# for multiple orders
trader.cancel_all(older_than=10)

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.1.0 (2018-05-25)

  • First release on PyPI.

0.1.1 (2018-05-27)

  • Fixed rendering of readme on pypi.

0.1.2 (2018-05-27)

  • Added codecov to docs.

0.1.3 (2018-05-28)

  • Updated codecov config to only run with travis-ci builds.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

btfx_trader-0.1.3.tar.gz (20.3 kB view hashes)

Uploaded Source

Built Distribution

btfx_trader-0.1.3-py2.py3-none-any.whl (9.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page