
Trading Automation
ai-news-bnb-trader
AI News BNB Trader is an event-driven trading bot for BSC that converts news sentiment into automated WBNB↔stablecoin trades while enforcing strict risk controls.
概要
AI News BNB Trader is an event-driven trading bot for BSC that converts news sentiment into automated WBNB↔stablecoin trades while enforcing strict risk controls.
AI News BNB Trader is an event-driven trading bot for BSC that converts news sentiment into automated WBNB↔stablecoin trades while enforcing strict risk controls. It supports REST polling and optional WebSocket news ingestion with deduplication and backoff, two interchangeable signal models (explainable RuleSignalModel by default, optional OpenAISignalModel with timeout and fallback), and configurable buy/sell thresholds based on sentiment, impact, and confidence. Safety-first features include DRY_RUN=true by default, private-key handling, asset whitelisting (WBNB, USDT/BUSD/USDC), panic mode, and revoke-approvals tooling. Built-in risk gates include max order notional, max position %, daily trade/loss caps, TP/SL, cooldowns, slippage caps, and SAFE_MODE on repeated failures. Ideal for developers/operators who need an auditable, configurable, self-hosted news-driven trading strategy with operational commands and production hardening guidance.
Skill.md
この Skill の仕組み
AI News BNB Trader is an event-driven trading bot for BSC that converts news sentiment into automated WBNB↔stablecoin trades while enforcing strict risk controls.
AI News BNB Trader
Run an event-driven BSC trading bot using news sentiment + risk gates.
Safety first
- Default
DRY_RUN=true. - Never print private key/seed in logs.
- Only whitelist assets (
WBNB,USDT/BUSD/USDC). - Panic mode immediately disables trading.
Commands
npm run start -- start
npm run start -- status
npm run start -- panic
npm run start -- revoke-approvals
npm run key:encrypt -- --out ./secrets/key.json
News modes
- Poll REST via
NEWS_API_URLeveryNEWS_POLL_SECONDS - Optional WebSocket via
NEWS_WS_URL
Both modes dedupe on news.id and log failures with exponential backoff.
Signal models
RuleSignalModel(default): keyword rules with explainable reasonsOpenAISignalModel(optional): enabled whenOPENAI_API_KEYis set; timeout + fallback to rules
Strategy
- Buy WBNB with stablecoin if
sentiment * impact >= BUY_THRESHOLDand confidence >=MIN_CONF - Sell WBNB to stablecoin if
sentiment * impact <= -SELL_THRESHOLDand confidence >=MIN_CONF - Enforce all risk gates before execution
Risk controls
- Max order notional / max position pct / daily trade cap
- Daily loss cap (MTM approximation)
- TP/SL from avg entry
- Cooldown between trades
- Slippage cap from quote
- Consecutive failures -> SAFE_MODE
Notes
- Prefer private RPC (
PRIVATE_RPC_URL) when provided. - For production: validate token/DEX addresses and add deeper MEV defenses.
こんな用途に最適
どんなときに使うか
AI News BNB Trader is an event-driven trading bot for BSC that converts news sentiment into automated WBNB↔stablecoin trades while enforcing strict risk controls.

01 · 会議前
意思決定用のブリーフを準備
投資委員会の前に、散らばった材料を構造化した論拠にまとめます。

02 · チームのワークフロー
引き継ぎを標準化
アナリスト、ポートフォリオマネージャー、Agent の間で一貫したリサーチ成果物を作ります。

03 · リアルタイム更新
投資仮説をアップデート
新しいカタリスト、KPI の発表、決算結果を受けてシナリオを更新します。
コミュニティのメモ
使うほど良くなる設計。
この Skill が使われ、レビューされるにつれて、フィードバックがここに表示されます。
さらに探す
関連する Skills
すべて見るhyperliquid-trading
The Hyperliquid Trading skill provides a concise interface for trading on Hyperliquid’s spot and perpetual markets. Use it to place limit and market orders, cancel open orders, query order status,…
bankr
Bankr enables executing crypto trading and DeFi operations via natural-language commands. It offers two integration options: a batteries-included Bankr CLI and a REST API at https://api.bankr.bot,…
pine-backtester
pine-backtester provides comprehensive backtesting for Pine Script indicators and strategies. Use it to append performance metrics, analyze trades, generate equity curves, compute win rates, track…