All Projects → dmjio → bittrex

dmjio / bittrex

Licence: BSD-3-Clause license
💸 Haskell bindings to the Bittrex cryptocurrency exchange

Programming Languages

haskell
3896 projects
Nix
1067 projects

Projects that are alternatives of or similar to bittrex

coinaly
🚀 Fast and easy to use mobile trade interface for cryptocurrencies. Track your trades to the moon and beyond. Currently only for Bittrex.
Stars: ✭ 32 (+33.33%)
Mutual labels:  bittrex, cryptocoins, bittrex-exchange
python-bittrex-websocket-aio
Python websocket for Bittrex (async).
Stars: ✭ 35 (+45.83%)
Mutual labels:  bittrex, bittrex-exchange
crypto-database
Database for crypto data, supporting several exchanges. Can be used for TA, bots, backtest, realtime trading, etc.
Stars: ✭ 72 (+200%)
Mutual labels:  bittrex, cryptocoins
My Token
📈Track token prices of your favorite exchanges in terminal!
Stars: ✭ 141 (+487.5%)
Mutual labels:  bittrex
Arbbot
Arbitrator, a bitcoin/altcoin arbitrage trading bot
Stars: ✭ 173 (+620.83%)
Mutual labels:  bittrex
bittrex-api
PHP client for the Bittrex API
Stars: ✭ 25 (+4.17%)
Mutual labels:  bittrex
coinwatch
Coinmarketcap console client to keep track of your crypto currency trades - are you winning or losing?
Stars: ✭ 73 (+204.17%)
Mutual labels:  cryptocoins
Cryptocurrency Portfolio
Google Sheets automatic creation with Google Apps Script (GAS) for managing a cryptocurrency tracking spreadsheet with multi exchanges
Stars: ✭ 134 (+458.33%)
Mutual labels:  bittrex
readme
The Blockchain Bible,a collections for blockchain tech,bitcoin,ethereum,crypto currencies,cryptography,decentralized solutions,business scenarios,hyperledger tech,meetups,区块链,数字货币,加密货币,比特币,以太坊,密码学,去中心化,超级账本
Stars: ✭ 46 (+91.67%)
Mutual labels:  cryptocoins
cryptocoincount
Keep track of your cryptocoin balances with CryptocoinCount
Stars: ✭ 47 (+95.83%)
Mutual labels:  cryptocoins
react-cryptocoins
Сryptocurrencies icons as React components
Stars: ✭ 37 (+54.17%)
Mutual labels:  cryptocoins
Go Quote
Yahoo finance/Google finance/Coinbase/Bittrex/Binance/Tiingo historical quote downloader library and cli written in golang
Stars: ✭ 198 (+725%)
Mutual labels:  bittrex
binance-node-docker
Docker image for Binance full and light nodes
Stars: ✭ 24 (+0%)
Mutual labels:  cryptocoins
Arbitragebot
Arbitrage bot that currently works on bittrex & poloniex
Stars: ✭ 141 (+487.5%)
Mutual labels:  bittrex
guncontrol
🔔 GunControl • Custom *nix launcher for GunBot
Stars: ✭ 16 (-33.33%)
Mutual labels:  bittrex
Exchanges Php
This is a virtual currency SDK that brings together multiple exchanges
Stars: ✭ 134 (+458.33%)
Mutual labels:  bittrex
BittrexSharp
C# Api Wrapper for Bittrex
Stars: ✭ 30 (+25%)
Mutual labels:  bittrex
Crypto Trading Bot
Automated Bittrex crypto-currency technical analysis and trading tool
Stars: ✭ 251 (+945.83%)
Mutual labels:  bittrex
Crypto Exchange
Pulls together list of crypto exchanges to interact with their API's in a uniform fashion.
Stars: ✭ 241 (+904.17%)
Mutual labels:  bittrex
info-bot
🤖 A Versatile Telegram Bot
Stars: ✭ 37 (+54.17%)
Mutual labels:  cryptocoins

bittrex

Hackage Haskell Programming Language BSD3 License Build Status

About

Haskell bindings to the Bittrex cryptocurrency exchange.

Usage

module Main where

import           Bittrex
import           Control.Monad
import           Data.Text     (Text)
import qualified Data.Text.IO  as T

main :: IO ()
main = do
  [api,secret] <- lines <$> readFile "/Users/david/.bittrex"
  let keys = APIKeys api secret

  -- Public Usage
  putStrLn "Markets"
  Right ms <- getMarkets
  forM_ ms (print . marketName)

  putStrLn "Currencies"
  Right cs <- getCurrencies
  mapM_ print cs

  putStrLn "Ticker for BTC-DOGE market"
  t <- getTicker (MarketName BTC_DOGE)
  print t

  putStrLn "Summary of BTC-DOGE market"
  Right t <- getMarketSummary (MarketName BTC_DOGE)
  print t

  putStrLn "Get market summaries"
  Right t <- getMarketSummaries
  print t

  putStrLn "Order book sells for for BTC-DOGE market"
  book <- getOrderBookSells (MarketName BTC_DOGE)
  print book

  putStrLn "Order book buys for for BTC-DOGE market"
  book <- getOrderBookBuys (MarketName BTC_DOGE)
  print book

  putStrLn "Market history for BTC-DOGE"
  Right history <- getMarketHistory (MarketName BTC_DOGE)
  forM_ history print

  -- Market usage
  putStrLn "Retrieve your open orders"
  Right openOrders <- getOpenOrders keys (MarketName BTC_DOGE)
  forM_ openOrders print

  -- Account usage,
  putStrLn "Check your balances (for all currencies)"
  Right balances <- getBalances keys
  forM_ balances print

License

BSD3 © David Johnson

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].