-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from s4w3d0ff/dev
Example updates, and fix cancelAllOrders
- Loading branch information
Showing
8 changed files
with
191 additions
and
658 deletions.
There are no files selected for viewing
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,25 +1,22 @@ | ||
# Examples | ||
#### _Examples require [this poloniex module](https://github.com/s4w3d0ff/python-poloniex) to be installed._ | ||
##### _Examples require [this poloniex module](https://github.com/s4w3d0ff/python-poloniex) to be installed._ | ||
|
||
## Chart: | ||
Saves chart data in a mongodb collection and returns a pandas dataframe with basic indicators. | ||
### Requirements: | ||
pip: | ||
Saves chart data in a mongodb collection and returns a pandas dataframe. | ||
#### Requirements: | ||
``` | ||
pandas | ||
numpy | ||
pymongo | ||
tqdm | ||
``` | ||
Chart examples require [mongod](https://www.mongodb.com/) running locally. | ||
|
||
## Loanbot: | ||
Helps your loan offers get filled and keeps them from going 'stale' | ||
### Requirements: | ||
Just [this git repository](https://github.com/s4w3d0ff/python-poloniex). | ||
|
||
|
||
## Websocket: | ||
Examples of how to use the websocket api to create tickers, stoplimits, etc. | ||
### Requirements: | ||
Just [this git repository](https://github.com/s4w3d0ff/python-poloniex) v0.5+. | ||
`mongoTicker.py` requires pymongo and mongod running. | ||
|
||
### Projects using `python-poloniex`: | ||
- [donnie](https://github.com/s4w3d0ff/donnie) - 'Poloniex tradebot toolkit for Python 3+' |
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,18 +1,9 @@ | ||
chart.py - saves chart data in a mongodb collection and returns a pandas dataframe with basic indicators | ||
mongoDataframe.py - saves chart data in a mongodb collection and returns a pandas dataframe | ||
|
||
Requires: | ||
``` | ||
pandas | ||
numpy | ||
pymongo | ||
``` | ||
|
||
bokehPlotter.py - same as chart.py with an added `graph` method that plots the data (with indicators) using bokeh | ||
|
||
Requires: | ||
``` | ||
pandas | ||
numpy | ||
pymongo | ||
bokeh | ||
tqdm | ||
``` |
Oops, something went wrong.