Binance Futures symbol lookup tool
🎩Example. Find symbols that got boos in volume by 120% in the last 4 hours
python volspike.py --interval=5m --range=4h --threshold=120%
🎩Example. Find 300% and more volume spikes in the last 30 minutes
python volspike.py --interval=3m --range=30m --threshold=300%
Downtrend can also be caused by a sudden sell volume boost.
🎩Example. Find volume spikes in the last 15 minutes (at least 300% increase)
python volspike.py --interval=1m --range=15m --threshold=300%
- Make sure python is installed on your machine
Example of installation on Ubuntu Linux:
sudo apt-get update -y && sudo apt-get install -y python3 python3-pip python-is-python3
Example of installation on Android (Termux):
pkg update && pkg upgrade -y && pkg install -y python
- Download the script to your machine
# Download the script form the repository
curl -O https://raw.githubusercontent.com/asidko/binance-volspike/main/volspike.py
# ☝️ Repeat this command later if you want to update the script to a newer version
- Install required python packages
pip install aiohttp rich
- Run the script (check the usage examples above)
python volspike.py --interval=5m --range=3h --threshold=300%
Example: python volspike.py --help
See all available options
Example: python volspike.py --interval=3m --range=30m --threshold=300% --watch
Automatically request new data every 30 seconds and show it
You can change the interval by passing --wait=300
(in seconds) to request data every 5 minutes
This project is licensed under the MIT License - see the LICENSE file for details