eterna-momentum-scalping
Momentum scalping strategy for the Eterna MCP Gateway. Identifies instruments with strong 24h momentum, confirms with orderbook imbalance, and trades with tight take-profit and stop-loss levels. --- # Momentum Scalping Strategy A short-term trading strategy that rides existing momentum with tight risk controls. ## Entry Criteria ### Step 1: Scan for Momentum Call `get_tickers` (no symbol filter) and scan for candidates: - **Long candidates**: `price24hPcnt` > +0.003 (more than +0.3% in 24h) - **Short candidates**: `price24hPcnt` < -0.003 (more than -0.3% in 24h) ### Step 2: Confirm with Orderbook For each candidate, call `get_orderbook` with `limit: 50` and calculate: ``` total_bid_volume = sum of all bid quantities total_ask_volume = sum of all ask quantities ``` - **Long confirmation**: `total_bid_volume >= 1.1 * total_ask_volume` - **Short confirmation**: `total_ask_volume >= 1.1 * total_bid_volume` Only enter if momentum direction and orderbook imbalance agree. ### Step 3: Check Position Limits
更新日志: Source: GitHub https://github.com/EternaHybridExchange/eterna-mcp
还没有评论,快来第一个发言吧。