All Projects → banteg → liqui

banteg / liqui

Licence: other
liqui.io api wrapper

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to liqui

snow-ctp
Node CTP Wrapper
Stars: ✭ 15 (-31.82%)
Mutual labels:  wrapper, trading
Coinbasepro Python
The unofficial Python client for the Coinbase Pro API
Stars: ✭ 1,386 (+6200%)
Mutual labels:  wrapper, trading
uniswap-python
🦄 The unofficial Python client for the Uniswap exchange.
Stars: ✭ 533 (+2322.73%)
Mutual labels:  wrapper, trading
Stocklook
crypto currency library for trading & market making bots, account management, and data analysis
Stars: ✭ 119 (+440.91%)
Mutual labels:  wrapper, trading
Python Poloniex
Poloniex API wrapper for Python 2.7 & 3
Stars: ✭ 557 (+2431.82%)
Mutual labels:  wrapper, trading
Uniswap Python
🦄 The unofficial Python client for the Uniswap exchange.
Stars: ✭ 191 (+768.18%)
Mutual labels:  wrapper, trading
reactive-trader
In the coming weeks this plans to become a Gekko plugin that reacts to market changes, finding and running only the most profitable strategies.
Stars: ✭ 91 (+313.64%)
Mutual labels:  trading
CryptoStupidity
Проект по обучению ручной и автоматической торговли криптовалютами.
Stars: ✭ 22 (+0%)
Mutual labels:  trading
FinMesh
A python package that brings together financial and economic data.
Stars: ✭ 20 (-9.09%)
Mutual labels:  wrapper
igdb
Laravel PHP Facade/Wrapper for the IGDB API
Stars: ✭ 30 (+36.36%)
Mutual labels:  wrapper
uplot-wrappers
React and Vue.js wrappers for uPlot that allow you to work with charts declaratively inside your favorite framework
Stars: ✭ 37 (+68.18%)
Mutual labels:  wrapper
elinor-reloaded
Trading tool for Eve Online
Stars: ✭ 29 (+31.82%)
Mutual labels:  trading
HerePy
A library that provides a Python interface to the HERE APIs.
Stars: ✭ 73 (+231.82%)
Mutual labels:  wrapper
tradeview
A platform for trading crypto currency pairs on crypto exchanges and running crypto currency pair strategies.
Stars: ✭ 69 (+213.64%)
Mutual labels:  trading
FivePD-API
A wrapper that allows you to create FivePD callouts/plugins.
Stars: ✭ 17 (-22.73%)
Mutual labels:  wrapper
tellerbot
Telegram Bot for over-the-counter trading
Stars: ✭ 17 (-22.73%)
Mutual labels:  trading
volatile
Volatile: your day-to-day trading companion.
Stars: ✭ 53 (+140.91%)
Mutual labels:  trading
XUSG
XUSG, XU's supreme graphics lib, is a handy wrapper currently for DirectX 12. It can be a good reference for designing your own DX12 wrapper APIs.
Stars: ✭ 57 (+159.09%)
Mutual labels:  wrapper
moGL
Modern OpenGL wrapper, thin C++14 header-only layer on top of the OpenGL 4.5+ API
Stars: ✭ 27 (+22.73%)
Mutual labels:  wrapper
fix-decoder
Unravels FIX messages into human readable tables
Stars: ✭ 71 (+222.73%)
Mutual labels:  trading

liqui

a minimal liqui.io api wrapper

installation

pip install liqui

usage

from liqui import Liqui
from somewhere_else import key, secret

liqui = Liqui(key, secret)

# public api
liqui.info()
liqui.ticker('eth_btc')
liqui.depth('eth_btc')
liqui.trades('eth_btc')

# private api
liqui.get_info()
liqui.active_orders()
liqui.order_info(314159265)
liqui.cancel_order(271828182)
liqui.trade('eth_btc', 'sell', 0.13, 10)
liqui.trade_history()

# convenience methods
liqui.balances()
liqui.sell('eth_btc', 0.14, 10)
liqui.buy('eth_btc', 0.12, 10)
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].