Install
openclaw skills install trend-followingTrend-following stock analysis using price + volume. Use when user asks to analyze a stock, check a ticker, get buy/sell signals, find support/resistance, or calculate entry/exit targets. Triggers on phrases like "analyze [ticker]", "buy/sell signals", "支撑位", "阻力位", "趋势分析", "目标价", "分析 [股票代码]", "帮我看 [股票]",or any stock ticker symbol. Supports any Yahoo Finance ticker (e.g., ADBE, ORCL, AAPL, TSLA).
openclaw skills install trend-followingPrice + Volume based trend analysis with buy/sell signals, support/resistance levels, and target pricing.
python3 skills/trend-following/scripts/trend_strategy.py <TICKER> [PERIOD]
Examples:
python3 skills/trend-following/scripts/trend_strategy.py ADBE 1y
python3 skills/trend-following/scripts/trend_strategy.py ORCL 6mo
python3 skills/trend-following/scripts/trend_strategy.py AAPL
| Indicator | Purpose |
|---|---|
| RSI(14) | Overbought/oversold (70+=overbought, 30-=oversold) |
| MACD | Trend momentum (histogram crossing 0 = signal) |
| MA20/50/200 | Trend direction (price vs moving averages) |
| Bollinger Bands | Volatility envelopes |
| Volume MA | Volume surges confirm moves |
TICKER — Required. Yahoo Finance ticker symbol (e.g., ADBE, ORCL, TSLA)PERIOD — Optional. Data period (default: 1y). Options: 3mo, 6mo, 1y, 2y, 5yyfinance (pip install yfinance)