Crypto Macro Confluence Monitor
Checks four independent crypto macro indicators once a day — Fear & Greed Index, BTC dominance, BTC funding rate, ETH funding rate — and alerts the user on Telegram only when 3 or more point the same direction (bullish or bearish), filtering out single-indicator noise. Interprets what the aligned combination historically means and suggests a directional action. Stays silent on every other day.
Description
You check four independent crypto macro indicators daily and alert the user only when most of them agree on a direction.
Hard rules
- Classify each indicator by reasoning over the fetched numbers in plain language against the thresholds below. Never write or run code to do it.
- In the daily routine, send an alert only if 3 or more of the 4 indicators point the same direction (all bullish-leaning or all bearish-leaning). Otherwise reply
HEARTBEAT_OKand stop — send no message. - Use the thresholds exactly as defined below. Do not invent your own cutoffs.
- If any one indicator's fetch fails, note it as unavailable and judge confluence on the remaining ones — never invent a value.
- Never tell the user to buy or sell as a command. Frame the output as an interpretation of aligned signals, not financial advice.
- Installing this skill does not create the routine by itself. After install, you must explicitly call the routine/mission creation tool yourself to register it — never assume the routine exists just because this file describes one. Confirm it was created (e.g. list active routines) before telling the user it's running.
Indicators and thresholds
- Fear & Greed —
https://api.alternative.me/fng/?limit=1. Value < 25 = EXTREME FEAR (bullish-leaning, contrarian). Value > 75 = EXTREME GREED (bearish-leaning, contrarian). Otherwise NEUTRAL. - BTC Dominance —
https://api.coingecko.com/api/v3/global, fieldmarket_cap_percentage.btc. ≥ 60% = DOMINANCE HIGH (bearish-leaning for alts). < 50% = ALTSEASON (bullish-leaning for alts). Otherwise NEUTRAL. - BTC Funding Rate —
https://fapi.binance.com/fapi/v1/fundingRate?symbol=BTCUSDT&limit=1, fieldfundingRate(×100 for %). ≥ 0.05% = OVERLEVERAGED LONGS (bearish-leaning). < -0.03% = OVERLEVERAGED SHORTS (bullish-leaning). Otherwise NEUTRAL. - ETH Funding Rate —
https://fapi.binance.com/fapi/v1/fundingRate?symbol=ETHUSDT&limit=1, same thresholds as BTC funding.
Daily check (routine)
Create a routine that runs every day at 7:00 PM UTC. The routine goal must contain these full steps as a self-contained prompt, because a routine does not keep any context from this conversation when it runs:
- Fetch all four indicators with the
httptool using the URLs above. - Classify each one using the thresholds above.
- Count how many point bearish-leaning (Extreme Greed + Dominance High + BTC Longs + ETH Longs) and how many point bullish-leaning (Extreme Fear + Altseason + BTC Shorts + ETH Shorts).
- If 3 or more align in the same direction, send the alert (format below).
- Otherwise reply
HEARTBEAT_OKand stop.
Alert format:
🎯 Macro Signal Confluence — [date]
[BULLISH/BEARISH] — [X] of 4 signals aligned
😱 Fear & Greed: [value] ([classification]) — [signal]
📊 BTC Dominance: [X]% — [signal]
₿ BTC Funding: [X]% — [signal]
Ξ ETH Funding: [X]% — [signal]
🧠 Interpretation: [what this combination historically tends to mean]
⚡ Read: [STRONG BULLISH SETUP / STRONG BEARISH SETUP / CONSIDER REDUCING LEVERAGE / CONSIDER ADDING EXPOSURE]
Commands
show macro signals— fetch all four indicators right now and show their current classification and how many align, even below the 3-of-4 threshold
Access & Credentials
Uses declared trunk auth
Network & Permissions
Network access is defined by the selected trunk.
Implementation
Resources
Review implementation and setup instructions before installing.