Binance Futures symbol lookup tool
🎩Example. Find symbols with at least 2% volatility on the 4 hours timeframe
python picker.py --interval=15m --range=4h --threshold=2%
Example. Find symbols for short positions (closer to top edge) with at least 3% volatility on the 2 hours timeframe.
python picker.py --interval=5m --range=2h --threshold=3% --short
Example. Find symbols for long positions (closer to bottom edge) with at least 5% volatility on the 4 hours timeframe.
python picker.py --interval=5m --range=4h --threshold=5% --long
- 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-python3Example 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-picker/main/picker.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 picker.py --interval=5m --range=2h --threshold=2%Example: python picker.py --help
See all available options
Example: python picker.py --interval=5m --range=2h --threshold=4% --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