Skip to content

Commit

Permalink
1.10.907
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Jan 29, 2018
1 parent ca45d5a commit 0c46e27
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 32 deletions.
4 changes: 2 additions & 2 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.906'
const version = '1.10.907'

Exchange.ccxtVersion = version

Expand Down
50 changes: 27 additions & 23 deletions doc/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1280,8 +1280,8 @@ The fetchOHLCV method shown above returns a list (a flat array) of OHLCV candles
...
]

Trades, Orders, Executions, Transactions
----------------------------------------
Trades, Executions, Transactions
--------------------------------

.. code:: diff
Expand Down Expand Up @@ -1580,27 +1580,6 @@ many exchanges propagate those properties to the orders as well.
exchange.fetchClosedOrders (symbol = undefined, since = undefined, limit = undefined, params = {})
Trades / Transactions / Fills / Executions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

::

- this part of the unified API is currenty a work in progress
- there may be some issues and missing implementations here and there
- contributions, pull requests and feedback appreciated

Recent Trades
'''''''''''''

.. code:: javascript
exchange.fetchMyTrades (symbol = undefined, since = undefined, limit = undefined, params = {})
Trades By Order Id
''''''''''''''''''

``UNDER CONSTRUCTION``

Order Structure
~~~~~~~~~~~~~~~

Expand Down Expand Up @@ -1739,6 +1718,31 @@ As such, ``cancelOrder()`` can throw an ``OrderNotFound`` exception in these cas
- canceling an already-closed order
- canceling an already-canceled order

Trades / Transactions / Fills / Executions
------------------------------------------

::

- this part of the unified API is currenty a work in progress
- there may be some issues and missing implementations here and there
- contributions, pull requests and feedback appreciated

A trade is a result of order execution. Note, that orders and trades have 1-n relationship: execution of 1 order may result in several trades.

Recent Trades
~~~~~~~~~~~~~

.. code:: javascript
exchange.fetchMyTrades (symbol = undefined, since = undefined, limit = undefined, params = {})
Returns ordered array of trades (most recent trade first).

Trades By Order Id
~~~~~~~~~~~~~~~~~~

``UNDER CONSTRUCTION``

Funding Your Account
--------------------

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

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.906'
__version__ = '1.10.907'

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

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.906'
__version__ = '1.10.907'

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

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.906'
__version__ = '1.10.907'

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

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.906'
__version__ = '1.10.907'

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

Expand Down

0 comments on commit 0c46e27

Please sign in to comment.