Skip to content

Commit

Permalink
1.10.799
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Jan 21, 2018
1 parent 254c5af commit 146641d
Show file tree
Hide file tree
Showing 10 changed files with 51 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build/ccxt.browser.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ccxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Exchange = require ('./js/base/Exchange')
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '1.10.798'
const version = '1.10.799'

Exchange.ccxtVersion = version

Expand Down
40 changes: 40 additions & 0 deletions doc/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,46 @@ Below is a detailed description of each of the base exchange properties:

- ``uid``: A unique id of your account. This can be a string literal or a number. Some exchanges also require this for trading, but most of them don't.

- ``has``: An assoc-array containing flags for exchange capabilities, including the following:

::

'has': {

'CORS': false, // has Cross-Origin Resource Sharing enabled (works from browser) or not

'publicAPI': true, // has public API available and implemented, true/false
'privateAPI': true, // has private API available and implemented, true/false

// unified methods availability flags (can be true, false, or 'emulated'):

'cancelOrder': true,
'createDepositAddress': false,
'createOrder': true,
'deposit': false,
'fetchBalance': true,
'fetchClosedOrders': false,
'fetchCurrencies': false,
'fetchDepositAddress': false,
'fetchMarkets': true,
'fetchMyTrades': false,
'fetchOHLCV': false,
'fetchOpenOrders': false,
'fetchOrder': false,
'fetchOrderBook': true,
'fetchOrders': false,
'fetchTicker': true,
'fetchTickers': false,
'fetchBidsAsks': false,
'fetchTrades': true,
'withdraw': false,
}

The meaning of each flag showing availability of this or that method is:
- boolean ``true`` means the method is natively available from the exchange API and unified in the ccxt library
- boolean ``false`` means the method isn't natively available from the exchange API or not unified in the ccxt library yet
- string ``'emulated`` string means the endpoint isn't natively available from the exchange API but reconstructed by the ccxt library from available true-methods

Rate Limit
----------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "1.10.798",
"version": "1.10.799",
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 90+ exchanges",
"main": "./ccxt.js",
"unpkg": "build/ccxt.browser.js",
Expand Down
2 changes: 1 addition & 1 deletion php/Exchange.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace ccxt;

$version = '1.10.798';
$version = '1.10.799';

abstract class Exchange {

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# ----------------------------------------------------------------------------

__version__ = '1.10.798'
__version__ = '1.10.799'

# ----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# -----------------------------------------------------------------------------

__version__ = '1.10.798'
__version__ = '1.10.799'

# -----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/base/exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# -----------------------------------------------------------------------------

__version__ = '1.10.798'
__version__ = '1.10.799'

# -----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/gdax.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ async def fetch_ohlcv(self, symbol, timeframe='1m', since=None, limit=None, para
return self.parse_ohlcvs(response, market, timeframe, since, limit)

async def fetch_time(self):
response = self.publicGetTime()
response = await self.publicGetTime()
return self.parse8601(response['iso'])

def parse_order_status(self, status):
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/base/exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# -----------------------------------------------------------------------------

__version__ = '1.10.798'
__version__ = '1.10.799'

# -----------------------------------------------------------------------------

Expand Down

0 comments on commit 146641d

Please sign in to comment.