-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A the Spot order book client (
kraken.spot.OrderbookClient
) (#106)
- Loading branch information
1 parent
af289f0
commit d5a3d7c
Showing
42 changed files
with
3,125 additions
and
1,379 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
|
||
.. _section-license: | ||
|
||
License | ||
======= | ||
========= | ||
|
||
.. include:: ../../../LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
.. The spot orderbook | ||
Maintain a valid Spot order book | ||
-------------------------------- | ||
|
||
The following example demonstrate how to use the python-kraken-sdk to | ||
retrieve a valid realtime order book. Please see the following example | ||
snippet for more information. | ||
|
||
-------------------------------- | ||
References: | ||
- https://gist.github.com/btschwertfeger/6eea0eeff193f7cd1b262cfce4f0eb51 | ||
|
||
|
||
.. literalinclude:: ../../../examples/spot_orderbook.py | ||
:language: python | ||
:linenos: |
4 changes: 2 additions & 2 deletions
4
docs/src/futures/futures_rest.rst → docs/src/futures/rest.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
docs/src/futures/futures_websocket.rst → docs/src/futures/websockets.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
Known Issues | ||
============ | ||
|
||
Issues listed here: `python-kraken-sdk/issues`_ | ||
|
||
Futures Trading | ||
--------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Spot REST Clients | ||
================== | ||
Spot REST | ||
========= | ||
|
||
.. autoclass:: kraken.spot.User | ||
:members: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Spot Websockets | ||
=============== | ||
|
||
.. autoclass:: kraken.spot.KrakenSpotWSClient | ||
:members: | ||
:show-inheritance: | ||
:inherited-members: | ||
|
||
.. autoclass:: kraken.spot.OrderbookClient | ||
:members: | ||
:show-inheritance: | ||
:inherited-members: |
Oops, something went wrong.