Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.64 KB

README.md

File metadata and controls

57 lines (37 loc) · 1.64 KB

Project btcego

Library and tools for WEX cryptocurrency exchange (former BTC-e, hence naming).

Installation

go get github.com/akovalenko/go-btce

Library: btce

A wrapper around public and private (trading) API remote calls.

Disclaimer: WEX is not affiliated with the project. It's implemented using public documentation:

Some ideas were borrowed from the CodeReclaimers/btce-api Python library.

See documentation for details.

Donate bitcoin to 3GfDvGGd6fqxwR118L7X6XfVFuwni9F33m if you find it useful:

bitcoin

Data

For private methods, API keys are expected to be provided in the following format (JSON):

{
"key": "ZZZZZZZZ-ZZZZZZZZ-ZZZZZZZZ-ZZZZZZZZ-ZZZZZZZZ",
"secret": "8888888888888888888888888888888888888888888888888888888888888888"
}

Tool: btce

Meant mostly as an API usage example.

btce -key otherkey.json orders -pair ltc_btc
btce place sell 0.001 btc_usd 9999
btce cancel -pair btc_usd -min-rate 9000
# Fast depth updates using Push API
btce fastdepth btc_usd

Bot: simplexchange

A trading bot with a predefined (but tunable) strategy. See its own README for details.