Skip to content

Commit

Permalink
1.10.1059
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Feb 9, 2018
1 parent 7267e65 commit 19c2cfc
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 13 deletions.
8 changes: 5 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.1058'
const version = '1.10.1059'

Exchange.ccxtVersion = version

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.1058",
"version": "1.10.1059",
"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.1058';
$version = '1.10.1059';

abstract class Exchange {

Expand Down
2 changes: 2 additions & 0 deletions php/bitbay.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@ public function fetch_trades ($symbol, $since = null, $limit = null, $params = a
}

public function create_order ($symbol, $type, $side, $amount, $price = null, $params = array ()) {
if ($type !== 'limit')
throw new ExchangeError ($this->id . ' allows limit orders only');
$market = $this->market ($symbol);
return $this->privatePostTrade (array_merge (array (
'type' => $side,
Expand Down
2 changes: 1 addition & 1 deletion php/bitmex.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function describe () {
'countries' => 'SC', // Seychelles
'version' => 'v1',
'userAgent' => null,
'rateLimit' => 1500,
'rateLimit' => 2000,
'has' => array (
'CORS' => false,
'fetchOHLCV' => true,
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.1058'
__version__ = '1.10.1059'

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

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.1058'
__version__ = '1.10.1059'

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

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.1058'
__version__ = '1.10.1059'

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

Expand Down
2 changes: 2 additions & 0 deletions python/ccxt/async/bitbay.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ async def fetch_trades(self, symbol, since=None, limit=None, params={}):
return self.parse_trades(response, market, since, limit)

async def create_order(self, symbol, type, side, amount, price=None, params={}):
if type != 'limit':
raise ExchangeError(self.id + ' allows limit orders only')
market = self.market(symbol)
return self.privatePostTrade(self.extend({
'type': side,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/bitmex.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def describe(self):
'countries': 'SC', # Seychelles
'version': 'v1',
'userAgent': None,
'rateLimit': 1500,
'rateLimit': 2000,
'has': {
'CORS': False,
'fetchOHLCV': True,
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.1058'
__version__ = '1.10.1059'

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

Expand Down
2 changes: 2 additions & 0 deletions python/ccxt/bitbay.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ def fetch_trades(self, symbol, since=None, limit=None, params={}):
return self.parse_trades(response, market, since, limit)

def create_order(self, symbol, type, side, amount, price=None, params={}):
if type != 'limit':
raise ExchangeError(self.id + ' allows limit orders only')
market = self.market(symbol)
return self.privatePostTrade(self.extend({
'type': side,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/bitmex.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def describe(self):
'countries': 'SC', # Seychelles
'version': 'v1',
'userAgent': None,
'rateLimit': 1500,
'rateLimit': 2000,
'has': {
'CORS': False,
'fetchOHLCV': True,
Expand Down

0 comments on commit 19c2cfc

Please sign in to comment.