Binance Top-100 Crypto Pairs Bot
Overview
A Python script that periodically pulls the top 100 USDT trading pairs and their pricing from Binance, feeding the list into a downstream trading bot that monitors price fluctuations. Outcome: Provided a continuously refreshed list of high-volume USDT pairs that powers the client's trading algorithm.
Architecture & Pipeline
flowchart LR
n0["SchedulerRecurring poll"]
n1["Binance SiteUSDT pairs"]
n2["Selenium ScraperTop-100 list"]
n3["Pricing SnapshotLatest values"]
n4["Trading Bot Hand-offDownstream consumer"]
n0 --> n1
n1 --> n2
n2 --> n3
n3 --> n4
classDef step0 fill:#f1f5f9,stroke:#64748b,color:#1e293b,stroke-width:2px,rx:10,ry:10;
classDef step1 fill:#ecfeff,stroke:#06b6d4,color:#1e293b,stroke-width:2px,rx:10,ry:10;
classDef step2 fill:#f0fdfa,stroke:#0d9488,color:#1e293b,stroke-width:2px,rx:10,ry:10;
classDef step3 fill:#ecfdf5,stroke:#10b981,color:#1e293b,stroke-width:2px,rx:10,ry:10;
classDef step4 fill:#fffbeb,stroke:#f59e0b,color:#1e293b,stroke-width:2px,rx:10,ry:10;
class n0 step0;
class n1 step1;
class n2 step2;
class n3 step3;
class n4 step4;
End-to-end flow derived from this project's scope and tech stack. Tap View Fullscreen for a larger view, or scroll horizontally on small screens.
Key Features
- Scheduled extraction at regular intervals
- Continuously refreshed top-100 USDT pairs list
- Direct hand-off into the client's trading bot
- Deployed on an Ubuntu remote desktop server
- Tech Stack:** Python, Selenium, Linux