Install
openclaw skills install @northcap-group/trading-news-guardNews blackout awareness for trading: local reference for high-impact events (NFP/CPI/FOMC) and blackout-window logic. The agent decides whether to trade. 100% lokal reference — ingen netværkskald, ingen API-nøgle.
openclaw skills install @northcap-group/trading-news-guardHigh-impact news (NFP, CPI, FOMC, ECB) can move the market 50-200+ points in seconds. Even perfect DRT/ICT setups get run over if you are in a position during a news candle. Professional traders close positions or wait — your agent should do the same.
# 2) Check news status BEFORE entry
{
"status": "blackout" | "clear",
"current_event": "CPI m/m — High Impact",
"next_events": [
{"name": "FOMC Statement", "impact": "High", "time": "19:00 UTC"}
]
}
news = check_news() # calls the API
if news["status"] == "blackout":
skip_trade("News blackout: " + news["current_event"])
else:
place_trade() # only when the market is clear
trading-news-guard/
├── SKILL.md