Install
openclaw skills install aiescher-trading-signalsGenerate trading signals for stocks, indices, crypto, and commodities using TradingView data. Use when user asks for trading signals, technical analysis, buy/sell recommendations, market indicators (RSI, MACD, SMA), or automated market monitoring. Supports real-time data from TradingView and CoinGecko.
openclaw skills install aiescher-trading-signalsGenerate technical trading signals using TradingView real-time data.
# Analyze default assets
node scripts/analyze.js
# Analyze specific asset
node scripts/analyze.js --symbol BINANCE:BTCUSDT --name Bitcoin
# Continuous monitoring (15min intervals)
node scripts/monitor.js --interval 15
| Signal | Indicator | Strength |
|---|---|---|
| 🟢 BUY | RSI < 30 (oversold) | Strong |
| 🟢 BUY | Golden Cross (SMA20 > SMA50) | Medium |
| 🟢 BUY | Price near SMA20 bounce | Weak |
| 🔴 SELL | RSI > 70 (overbought) | Strong |
| 🔴 SELL | Death Cross (SMA20 < SMA50) | Medium |
| 🔴 SELL | Price below SMA20 resistance | Weak |
Edit references/assets.json to customize monitored assets:
{
"assets": [
{ "symbol": "XETR:DAX", "name": "DAX", "category": "Index", "timeframe": "60" },
{ "symbol": "BINANCE:BTCUSDT", "name": "Bitcoin", "category": "Crypto", "timeframe": "60" }
],
"alerts": {
"email": "ai.escher.bot@gmail.com",
"minStrength": "medium",
"rsiThresholds": { "oversold": 30, "overbought": 70 }
}
}
scripts/analyze.js - Single analysis runscripts/monitor.js - Continuous monitoring with alertsscripts/lib/tradingview.js - TradingView API wrapperscripts/lib/indicators.js - Technical indicator calculationsscripts/lib/email.js - Email alert sender@mathieuc/tradingview - TradingView WebSocket APIhttps for CoinGecko API