video

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

YouTube Video Analysis

YouTube视频分析

Analyzing YouTube video to extract trading strategy specifications.
正在分析YouTube视频以提取交易策略规格。

Instructions

操作说明

When this skill is invoked with a YouTube URL:
  1. Run the video analyzer immediately:
    bash
    python tools/video-analyzer.py "$ARGUMENTS"
  2. Show the analysis results to the user, including:
    • Video title and author
    • Detected script type (indicator/strategy)
    • Complexity score
    • Key indicators and patterns identified
    • Entry/exit conditions extracted
    • Suggested features
  3. Confirm with the user:
    • "Does this capture the strategy correctly?"
    • "Would you like me to adjust anything before implementing?"
  4. Proceed to implementation using pine-developer skill
当通过YouTube链接调用此技能时:
  1. 立即运行视频分析器
    bash
    python tools/video-analyzer.py "$ARGUMENTS"
  2. 向用户展示分析结果,包括:
    • 视频标题和作者
    • 检测到的脚本类型(指标/策略)
    • 复杂度评分
    • 识别出的关键指标和形态
    • 提取的入场/离场条件
    • 建议功能
  3. 与用户确认
    • "这个解析是否准确覆盖了该策略?"
    • "在开始实现前,您需要我调整任何内容吗?"
  4. 使用pine-developer技能进行后续实现

Command Options

命令选项

If standard analysis fails:
bash
undefined
如果标准分析失败:
bash
undefined

Force Whisper transcription (slower but works without captions)

强制使用Whisper转写(速度较慢但无需字幕即可运行)

python tools/video-analyzer.py "$ARGUMENTS" --whisper
python tools/video-analyzer.py "$ARGUMENTS" --whisper

Use larger model for better accuracy

使用更大模型以提高准确率

python tools/video-analyzer.py "$ARGUMENTS" --whisper --model medium
undefined
python tools/video-analyzer.py "$ARGUMENTS" --whisper --model medium
undefined

Error Handling

错误处理

If video analyzer fails:
  1. Check if it's a valid YouTube URL
  2. Try with
    --whisper
    flag
  3. If still failing, ask user to describe the strategy manually
如果视频分析器运行失败:
  1. 检查是否为有效的YouTube链接
  2. 尝试添加
    --whisper
    参数
  3. 如果仍然失败,请用户手动描述该策略

Post-Analysis

分析后流程

After confirming the analysis:
  1. Create a project file in
    projects/
  2. Use pine-developer to implement the extracted strategy
  3. Add debugging tools for verification
确认分析结果后:
  1. projects/
    目录下创建项目文件
  2. 使用pine-developer实现提取到的策略
  3. 添加调试工具用于验证