Skip to content

Commit

Permalink
Update exchange products for BCH support (DeviaVir#438)
Browse files Browse the repository at this point in the history
* Updating product lists for most exchanges

Largely this is adding support for BCH
Updated: bitfinex, bittrex, kraken

Poloniex and gdax was updated, but had no changes.
BTC-e could not be updated (broken update script)
Quadriga doesn't support BCH

BCH currency pairs on Kraken don't fully match what is returned by their API. ie: API says BCH-ZUSD, but only accepts BCH-USD. This is manually updated in the product list, I suspect it is a bug that will be rectified on their side in a few days.

Tested all pairs via backfill.

* Forgot to stage the BCH fix in Kraken.
  • Loading branch information
cmroche authored and DeviaVir committed Aug 4, 2017
1 parent 63676fe commit 5ef0e10
Show file tree
Hide file tree
Showing 3 changed files with 599 additions and 34 deletions.
122 changes: 121 additions & 1 deletion extensions/exchanges/bitfinex/products.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,125 @@
"max_size": "200000.0",
"increment": "0.0001",
"label": "XRP/BTC"
},
{
"asset": "IOT",
"currency": "USD",
"min_size": "0.1",
"max_size": "100000.0",
"increment": "0.0001",
"label": "IOT/USD"
},
{
"asset": "IOT",
"currency": "BTC",
"min_size": "0.1",
"max_size": "100000.0",
"increment": "0.0001",
"label": "IOT/BTC"
},
{
"asset": "IOT",
"currency": "ETH",
"min_size": "0.1",
"max_size": "100000.0",
"increment": "0.0001",
"label": "IOT/ETH"
},
{
"asset": "EOS",
"currency": "USD",
"min_size": "0.001",
"max_size": "50000.0",
"increment": "0.0001",
"label": "EOS/USD"
},
{
"asset": "EOS",
"currency": "BTC",
"min_size": "0.001",
"max_size": "50000.0",
"increment": "0.0001",
"label": "EOS/BTC"
},
{
"asset": "EOS",
"currency": "ETH",
"min_size": "0.001",
"max_size": "50000.0",
"increment": "0.0001",
"label": "EOS/ETH"
},
{
"asset": "SAN",
"currency": "USD",
"min_size": "0.001",
"max_size": "200000.0",
"increment": "0.0001",
"label": "SAN/USD"
},
{
"asset": "SAN",
"currency": "BTC",
"min_size": "0.001",
"max_size": "200000.0",
"increment": "0.0001",
"label": "SAN/BTC"
},
{
"asset": "SAN",
"currency": "ETH",
"min_size": "0.001",
"max_size": "200000.0",
"increment": "0.0001",
"label": "SAN/ETH"
},
{
"asset": "OMG",
"currency": "USD",
"min_size": "0.001",
"max_size": "100000.0",
"increment": "0.0001",
"label": "OMG/USD"
},
{
"asset": "OMG",
"currency": "BTC",
"min_size": "0.001",
"max_size": "100000.0",
"increment": "0.0001",
"label": "OMG/BTC"
},
{
"asset": "OMG",
"currency": "ETH",
"min_size": "0.001",
"max_size": "100000.0",
"increment": "0.0001",
"label": "OMG/ETH"
},
{
"asset": "BCH",
"currency": "USD",
"min_size": "0.001",
"max_size": "2000.0",
"increment": "0.0001",
"label": "BCH/USD"
},
{
"asset": "BCH",
"currency": "BTC",
"min_size": "0.001",
"max_size": "2000.0",
"increment": "0.0001",
"label": "BCH/BTC"
},
{
"asset": "BCH",
"currency": "ETH",
"min_size": "0.001",
"max_size": "2000.0",
"increment": "0.0001",
"label": "BCH/ETH"
}
]
]
Loading

0 comments on commit 5ef0e10

Please sign in to comment.