All Projects → erhan → pybtcturk

erhan / pybtcturk

Licence: MIT license
Python client for the Btcturk api

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pybtcturk

crypto-watcher
Real-time cryptocurrencies prices.
Stars: ✭ 25 (-3.85%)
Mutual labels:  btc, xrp
Open Crypto Tracker
Bitcoin / Alts private portfolio tracker, with email / text / alexa / telegram price alerts, charts, leverage support and much more.
Stars: ✭ 59 (+126.92%)
Mutual labels:  btc
kunkka-match
高性能撮合引擎
Stars: ✭ 50 (+92.31%)
Mutual labels:  btc
bybit-api
Node.js connector for the Bybit APIs and WebSockets, with TypeScript & browser support.
Stars: ✭ 69 (+165.38%)
Mutual labels:  btc
xrpvalue.com
http://xrpvalue.com website
Stars: ✭ 24 (-7.69%)
Mutual labels:  xrp
advcash
node.js wrapper for advcash cryptocurrency exchange
Stars: ✭ 14 (-46.15%)
Mutual labels:  btc
coinget
**deprecated API (no longer works)** The fastest cli 💻 price checker for cryptocurrencies📈
Stars: ✭ 27 (+3.85%)
Mutual labels:  btc
HTML-Crypto-Currency-Chart-Snippets
💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹
Stars: ✭ 89 (+242.31%)
Mutual labels:  btc
xrpl-dev-portal
Source code for xrpl.org including developer documentation
Stars: ✭ 330 (+1169.23%)
Mutual labels:  xrp
telegram bitcoin bot
Telegram Auto Mining Bitcoins In Termux
Stars: ✭ 115 (+342.31%)
Mutual labels:  btc
bitcoinz-wallet
BitcoinZ Wallet - nice graphical user interface BTCZ wallet
Stars: ✭ 19 (-26.92%)
Mutual labels:  btc
go-dc-wallet
交易所收提币功能
Stars: ✭ 76 (+192.31%)
Mutual labels:  btc
evian
www.balletcrypto.org/
Stars: ✭ 21 (-19.23%)
Mutual labels:  xrp
MugglePay
Make Crypto Payment Easy 让数字货币支付更简单
Stars: ✭ 176 (+576.92%)
Mutual labels:  btc
Btcbf
Bitcoin private key brute force tool, written in python. Also can be used as a bitcoin wallet generator.
Stars: ✭ 91 (+250%)
Mutual labels:  btc
bitforce
A tools brute force BTC
Stars: ✭ 24 (-7.69%)
Mutual labels:  btc
go-coin-ticker
Raspberry Pi BTC/ETH monitoring daemon, LCD 16x2 & LED indicators
Stars: ✭ 14 (-46.15%)
Mutual labels:  btc
capwatch
💸 Your Cryptoportfolio. Live.
Stars: ✭ 19 (-26.92%)
Mutual labels:  btc
artunis-mobile
XRP Wallet app for Android and iOS, built in React Native.
Stars: ✭ 23 (-11.54%)
Mutual labels:  xrp
TheWorldExchange
A purely client-side wallet and direct interface showcasing the full functionality of Ripple / blockchain.
Stars: ✭ 34 (+30.77%)
Mutual labels:  xrp

pybtcturk

Python client for the Btcturk Api.

Build version License Python version

Installation

pip install btcturk
pip install git+git://github.com/erhan/pybtcturk.git

Usage

Btcturk Pair symbols

  • BTCTRY
  • ETHTRY
  • XRPTRY

Public Endpoint Methods

from btcturk import Btcturk  

client = Btcturk()  

Ticker

client.ticker()  

Get order book

client.get_order_book(pair_symbol)

Get all trades

client.get_all_trades(pair_symbol)

Get last trades

client.get_last_trades(pair_symbol, count)

Get all ohlc data

client.get_all_ohlc(pair_symbol)

Get daily ohlc data

client.get_daily_ohlc(pair_symbol, days)

Private Endpoint Methods

from btcturk import Btcturk  

client = Btcturk("public_key", "private_key")

Get balances

client.get_balances()
# example return : 
client.get_balances_v2()
# example return : 

Get transactions

client.get_transactions(limit, offset, ascending)

Get open orders

client.get_open_orders(pair_symbol)

Cancel order

client.cancel_order(order_id)

Market buy

client.market_buy(pair_symbol, total, total_precision)

Market sell

client.market_sell(pair_symbol, amount, amount_precision)

Limit buy

client.limit_buy(pair_symbol, amount, amount_precision, price, price_precision)

Limit sell

client.limit_sell(pair_symbol, amount, amount_precision, price, price_precision)

Stop buy

client.stop_buy(pair_symbol, total, total_precision, trigger_price, trigger_price_precision)

Stop sell

client.stop_sell(pair_symbol, total, total_precision, trigger_price, trigger_price_precision)
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].