coingecko / cryptoexchange

[UNMAINTAINED] Ruby library to query market data from cryptocurrency exchanges (https://www.coingecko.com)
https://www.coingecko.com
MIT License
299 stars 240 forks source link

Implement BitShares Asset Exchange Protocol Ticker, Orderbook, Trades #423

Closed bobbyong closed 5 years ago

Swingcloud commented 6 years ago

this maybe the api doc http://docs.bitshares.org/api/

tmlee commented 5 years ago

Lets use this API by http://cryptofresh.com/api/docs

Track BTS target only for now https://cryptofresh.com/api/asset/markets?asset=BTS

Swingcloud commented 5 years ago

👌

Swingcloud commented 5 years ago

https://cryptofresh.com/api/asset/markets?asset=BTS looking into a response that has multiple BTC

{
"OPEN.BTC": {
"volume24": 0.471761,
"price": 0.0000106219,
"updated": "2019-01-15T07:04:22.000Z"
},
"GDEX.BTC": {
"volume24": 0.375235,
"price": 0.0000105263,
"updated": "2019-01-15T07:04:30.000Z"
}
}

do we need to implement two BTC or just one, if just one, which one should we implement into?

superoo7 commented 5 years ago

@Swingcloud OPEN.BTC refers to OpenLedger (a DEX), whereas GDEX is another Decentralized Exchange (DEX).

If you want to implement one of it I would suggest it to be OPEN.BTC, since it has higher volume compared to GDEX.

wenjieyek commented 5 years ago

https://github.com/coingecko/cryptoexchange/pull/1366