Bot Rentals / SOLPUMP Dip Monitor
Solana — SOLPUMP token (DEXScreener data)SOLPUMP Dip Monitor
SI-BOT-SOLPUMP-MON
Read-only price monitor for the SOLPUMP token. Watches live price against a rolling EMA and alerts the moment it dips sharply, so you can act instead of watching a chart.
Rent 1 day Rent 30 days Ask a question first
Those links return payment terms over x402. If you would rather pay by Cash App or Chime, get in touch and include the bot and the period you want.
Specification
- Market
- Solana — SOLPUMP token (DEXScreener data)
- Language
- Python (standard library only)
- Runs on
- Your machine — Linux, macOS, or Windows
- Needs
- Nothing — no wallet, no API key, no credentials
- Trades
- No — this is an alert tool, not an execution bot
What it actually does
- Polls DEXScreener's public API for the SOLPUMP/SOL pair every 1.5 seconds by default.
- Picks the pool with the highest liquidity if more than one exists.
- Tracks price against a rolling exponential moving average (EMA).
- Fires an alert — terminal bell plus a
DIP TRIGGERline — the moment price drops a set percentage below that EMA. - Keeps watching afterward: logs a
SNAPBACKif price recovers within a time window, or logs the dip as a real move if it doesn't.
The settings that decide your risk
| Setting | What it does |
|---|---|
--interval | poll interval in seconds (default 1.5) |
--alpha | EMA smoothing factor — higher reacts faster to recent price (default 0.15) |
--dip | percent below EMA that counts as a dip trigger (default 8.0) |
--snap | percent below EMA that counts as recovered (default 4.0) |
--window | seconds allowed for a snapback before the dip is treated as a real move (default 30) |
--open | open the pool's page in your browser when a dip triggers |
Credentials and safety
None. This bot only reads public price data from DEXScreener's API — there is nothing to configure, no wallet to fund, and no key that could leak.
Specific risk for this bot
This bot never trades — it has no wallet and cannot move funds. The risk is entirely in how you act on its alerts: a dip trigger is a mechanical signal against the tool's own recent price average, not a guarantee of a bounce, and a snapback pattern that held in the past can stop holding without warning.
It can lose money, including all of the amount you fund it with. There is no published track record and no guarantee of profit. Start small.
Getting it running
# No dependencies to install — standard library only
export BOT_LICENSE=... # the licence string you received when you paid
python3 solpump.py
Nothing to install and nothing to configure beyond the licence — this is the simplest bot in the lineup. It watches one specific token (SOLPUMP); it is not a general-purpose market scanner.
Set BOT_LICENSE to the licence string you received. The bot verifies it at startup against
https://saylorinnovations.com/api/license/verify and will not run without a valid one.