DEV Community

Michael Lip
Michael Lip

Posted on Originally published at tg.zovo.one

Track a Crypto Portfolio and Set Price Alerts in Telegram

Track a Crypto Portfolio and Set Price Alerts in Telegram

Most portfolio trackers want one thing up front: connect your wallet or your exchange API keys. That is a lot of trust to hand over just to see a number. A read-only alternative is to log what you hold and let a bot price it from public market data. In Telegram you can do all of it with plain text commands, no spreadsheet, and no connection to your funds.

Tracking a crypto portfolio in Telegram starts with a tracker that never touches your wallet. HoldFolio (@MyHoldFolioBot) lets you log coins with quantities and an optional cost basis, then values the portfolio live, shows profit or loss against your average cost, snapshots your total every hour, and sends a weekly digest. You send /add btc 0.5 @97000 to log half a Bitcoin bought at 97,000, /folio to see every holding with its live value and the 24-hour move, and /history to view the last seven days. Adding the same coin again merges into a weighted average cost, and /rm removes a position. Nothing is read from any wallet, so there are no credentials to leak and nothing to rob. That is the whole trade: a little typing in exchange for keeping your keys entirely out of the picture.

The other half is setting up crypto price alerts in Telegram. PricePing (@TickMyPriceBot) watches the market around the clock and messages you the moment a price crosses a level you name. You send /price btc for the live price, then /alert btc above 100000 to set a watch. The bot re-checks the market every five minutes and fires a single message in the same chat where you set the alert. Each alert is one-shot, so nothing stale stays on your list. /alerts shows your active lines, /rma 2 removes one by number, and /watch plus /watchlist keep a separate set of coins you follow. Prices come from the CoinGecko public API, so you are reading the same numbers every chart site uses, cached for about a minute.

Together the two bots cover the everyday workflow. Watch the tape with alerts, log the buys that matter, and let the tracker carry the running total. The commands are short, so the whole setup takes minutes and works on a phone as easily as a desktop client.

For alert hygiene, the discipline matters more than the tool. Set levels for the moves you actually want to act on, usually a few percent away from the last price, not every tiny wobble. Because each alert fires once and removes itself, a level that gets tested repeatedly will keep asking you to re-arm it, which is exactly how notification fatigue starts. Choose a direction deliberately, above a level you want to clear or below one you are watching on the way down, and keep the free tier's three active alerts as a soft cap on how much noise you allow yourself. Alerts check every five minutes, so treat them as a heads-up for decisions you still make yourself, not a signal to trade on.

For anyone holding long term, a few best practices for a crypto portfolio keep things honest. Log every buy with its cost so your profit or loss is real instead of guessed. Add the same coin again when you buy more and let the weighted average do its work, so the basis always reflects what you actually paid. Review the weekly digest or the seven-day history rather than refreshing a price, because a total moving in weekly steps is the right resolution for a position you hold for months. And never hand a bot a wallet address, an exchange key, or a seed phrase. A tracker that can move coins is not a tracker.

That mindset applies across the whole Tiny Telegram Tools guide library, which covers more of the same ground. The small habit that pays off is this: you stop checking prices, the tools tell you when to look, and your record of what you hold stays in plain commands you can read at any time. A portfolio reaction is only as accurate as your last /add, so log the buys, arm the alerts you will respect, and keep the movements you watch aligned with the ones you will actually act on.

Related reading

Related fleet tools worth a look: the bot hub, whisper. Each one runs as a Telegram Mini App, so nothing to install.

Top comments (0)