https://github.com/paulseperformance/bittrexorderflowfilter
python script that gets the order book from bittrex and filters out insignificant orders to identify key levels.
https://github.com/paulseperformance/bittrexorderflowfilter
Last synced: 5 months ago
JSON representation
python script that gets the order book from bittrex and filters out insignificant orders to identify key levels.
- Host: GitHub
- URL: https://github.com/paulseperformance/bittrexorderflowfilter
- Owner: pAulseperformance
- Created: 2018-07-17T01:32:28.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-17T02:00:33.000Z (almost 8 years ago)
- Last Synced: 2024-12-30T20:23:59.934Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bittrex Orderflow Filter
### The purpose of this script is to help identify key levels of accumulated buy/sell orders on the Bittrex orderbook.
Large bids will be printed to the terminal every 5 seconds separated by the current price and large asks on top.
The output is meant to be concise and minimal in order to quickly assess the state of the market.
```
________________MOON___________________
Price: 0.48179865 Amount: 51413.0
Price: 0.48237931 Amount: 13282.9813236
Price: 0.48334456 Amount: 13282.9813236
Price: 0.48399998 Amount: 61331.0
Price: 0.48968526 Amount: 23359.46136
LASTPRICE:0.47889998
Price: 0.47889998 Amount: 24899.3201939
Price: 0.47667973 Amount: 46514.0
Price: 0.47667972 Amount: 61331.0
Price: 0.4701105 Amount: 35805.9082155
Price: 0.47011 Amount: 49720.9541603
Price: 0.4695 Amount: 42492.3771021
Price: 0.46943459 Amount: 52995.1189405
Price: 0.46833741 Amount: 61331.0
Price: 0.465 Amount: 25004.9734875
Price: 0.46187057 Amount: 61331.0
_______________FLOOR__________________
```
## Setup
1. Clone this repository ```git clone https://github.com/GrilledChickenThighs/bittrexorderflowfilter.git ```
2. Install Dependencies ``pip install python-bittrex``
3. Run ```python2 main.py```
## To Do
* Add support for user input
* Abstract Modularize Functions
* Round Decimal Outputs
## Future Features
* Graphical Display With Automated Level Plotting
* Automated Strategic Level Indicator/Alert (Will require back testing and statistical analysis to support profitability)
* Your Contributions