返回顶部
g

global-market-analyst全球市场分析师

Global asset investment analysis and advisory — VN & US stocks, forex, gold, oil, crypto, ETF, DCA. Combines real-time technical analysis (RSI, MACD, EMA, Bollinger Bands) from TradingView with fundamental analysis (P/E, ROE, Sharpe, CAGR, sector valuation). Use when: (1) user asks about VN or global stock prices, (2) user wants to know which assets to buy, (3) user asks about portfolio management, (4) user wants to calculate monthly DCA accumulation, (5) user asks how much to invest per month,

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.5.0
安全检测
已通过
274
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

global-market-analyst

全球市场分析师

全球资产分析——越南股票、美股、外汇、大宗商品、加密货币、ETF——实时技术面+基本面+估值+收益估算。

⚠️ 最重要原则

历史复合年增长率 ≠ 当前价格的预期。
始终要问:如果今天以这个价格买入,市盈率是多少?还便宜吗?

示例:MCH 从3万底部起复合年增长率73%/年→但当前价格16.1万,市盈率~37倍是昂贵的
夏普比率2.19是历史低价区的数据——不适用于今天的买家。



第0步:了解需求并检查宏观环境

在分析任何资产之前,始终检查:

🇻🇳 越南宏观

当前宏观背景(更新于2026年3月23日):
  • - 🔴 VN-指数:~1,604 — 本月下跌14%,外资净卖出 -27,591万亿越盾年初至今
  • 🟢 FTSE升级越南 → 2026年9月21日生效 → 最大催化剂
  • 越南国家银行利率:维持不变,跟随美联储
  • 2026年GDP目标:6.5-7%

🇺🇸 美国宏观

  • - 美联储利率:3.5-3.75%(2026年3月18日维持不变,鹰派——2026年仅预期降息一次)
  • PCE通胀率:2.7%(从2.4%上调)
  • 失业率: ~4.0%(稳定)
  • 标普500: 从历史高点回调约5-8%,科技股领跌
  • 美国10年期国债收益率: ~4.2-4.4%

🌍 全球宏观

  • - 🔴 伊朗战争持续 — WTI原油 $95-99,威胁霍尔木兹海峡
  • 黄金 XAUUSD: ~$4,362(从历史高点 $5,608 回调-15%)
  • DXY(美元指数): ~103-105
  • BNB: 避险压力,生态系统仍然强劲(TVL $6.7B,全球排名第3)
  • 欧洲央行利率: ~3.0%,逐步降息
  • 日本央行利率: ~0.5%,刚从0.25%上调

投资组合影响:

  • - 🟢 积累:MBB(市盈率6.5倍)、黄金、标普500 ETF(VOO)
  • 🟢 定投:FPT(市盈率13-14倍,异常便宜但低于EMA200)
  • ⏳ 持有:BNB(等待美联储降息)、TCB、AAPL、MSFT
  • 🔴 避免:VCB(市盈率昂贵)、房地产(利率上升)、新加密货币、迷因币
  • 🟢 新买入:GAS/PVS(受益于高油价)、能源ETF(XLE)

详见:references/macro-update-2026-03.md、references/crypto-analysis.md、references/gold-analysis.md



确定:
  • - 资产类别:越南股票?美股?外汇?黄金?加密货币?ETF?
  • 目标:寻找新机会?分析特定标的?估算收益?扫描市场?
  • 持有期限:短期(< 3个月)、中期(3-12个月)、长期(> 1年)
  • 资金:用于投资组合配置和风险评估
  • 风险偏好:保守型 / 平衡型 / 进取型



第1步:实时数据(TradingView扫描器)

TradingView扫描器无需认证即可使用:

🇻🇳 越南股票

bash

扫描所有HOSE超卖股票

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_market.py --rsi 40 --exchange HOSE

单只越南股票深度技术分析

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/analyze_stock.py FPT HOSE

🇺🇸 美股

bash

扫描纳斯达克超卖(大盘股 > $2B)

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_market.py --rsi 40 --exchange NASDAQ

扫描纽交所

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_market.py --rsi 35 --exchange NYSE

🌍 全球市场(加密货币、外汇、大宗商品)

bash

扫描美股(大盘股 > $10B)

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_global.py --market us --rsi 40

扫描加密货币

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_global.py --market crypto --rsi 35

扫描外汇主要货币对

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_global.py --market forex

扫描大宗商品(黄金、原油、白银)

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_global.py --market commodities

扫描所有市场

python3 ~/.openclaw/workspace/skills/market-analyst/scripts/scan_global.py --market all --rsi 40

手动获取多个标的(任何市场):
python
import urllib.request, json

越南股票

payload = { symbols: {tickers: [HOSE:MBB,HOSE:TCB,HOSE:FPT]}, columns: [name,close,change,volume,RSI,EMA20,EMA50,EMA200, MACD.macd,MACD.signal,BB.upper,BB.lower, price52weekhigh,price52weeklow,Stoch.K,Stoch.D] } req = urllib.request.Request( https://scanner.tradingview.com/vietnam/scan, data=json.dumps(payload).encode(), headers={Content-Type: application/json, User-Agent: Mozilla/5.0}, method=POST )

美股 → https://scanner.tradingview.com/america/scan

加密货币 → https://scanner.tradingview.com/crypto/scan

外汇 → https://scanner.tradingview.com/forex/scan

大宗商品 → https://scanner.tradingview.com/cfd/scan


第2步:技术分析(适用于所有资产类别)

按优先级顺序阅读每个指标:

1. EMA200 — 首先检查

  • - 收盘价 > EMA200 ✅ → 长期上升趋势完好 → 考虑买入
  • 收盘价 < EMA200 ❌ → 长期下降趋势 → 谨慎,仅在明确催化剂下买入

⚠️ 不要买入低于EMA200的超卖资产(除非有明确催化剂)

2. RSI(14)
RSI信号操作
< 30🟢🟢 极度超卖若高于EMA200则考虑强力买入
30–40
🟢 超卖 | 若高于EMA200则定投 |

| 40–60 | 🟡 中性 | 持有 / 等待 | | 60–70 | 🔴 接近超买 | 不加仓 | | > 70 | 🔴🔴 超买 | 考虑获利了结 |

3. MACD

  • - macd > signal → 🟢 看涨动能
  • macd < signal → 🔴 看跌动能
  • MACD在负值区域刚刚上穿信号线 → 强烈买入信号

4. 布林带

  • - 收盘价 ≤ BB.lower → 接近下轨 → 潜在反弹
  • BB收窄 → 即将出现大幅波动,等待突破

5. 随机指标K/D

  • - K < 20:超卖 | K > 80:超买
  • K在< 20区域上穿D → 买入信号

6. 52周位置

pos52 = (收盘价 - 52周最低价) / (52周最高价 - 52周最低价) × 100

  • - < 20%:接近52周低点 — 良好价值区域
  • > 80%:接近52周高点 — 高动能但风险较高

🎯 买入区域评分(综合)

python score = 0 if rsi < 30: score += 3 elif rsi < 40: score += 2 if close > ema200: score += 2 if pe_discount > 20%: score += 3 # 市盈率 < 合理市盈率 -

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 market-analyst-1775899332 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 market-analyst-1775899332 技能

通过命令行安装

skillhub install market-analyst-1775899332

下载

⬇ 下载 global-market-analyst v1.5.0(免费)

文件大小: 96.85 KB | 发布时间: 2026-4-12 10:31

v1.5.0 最新 2026-4-12 10:31
**1.5.0 is a major update with expanded features and improved coverage for global markets and asset analysis.**

- Guidance, macro commentary, and documentation fully translated to English, making the skill usable for a wider audience.
- Expanded asset coverage and examples for VN stocks, US equities, forex, gold, crypto, ETF, and commodities.
- Enhanced technical analysis and portfolio tools, with clearer step-by-step instructions for scanning and analyzing markets.
- Improved organization, structure, and clarity in documentation, including practical scripts and market context references.
- All market scripts and references updated for current macro environment and asset recommendations (as of March 2026).

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部