Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

canslim-analysis坎斯利姆分析

Agent Skill

canslim-analysis 用于辅助 Python 项目开发、测试和数据处理,适合在 OpenClaw 中需要阅读 Python 代码、运行测试或整理脚本流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,397

周安装

357

GitHub Stars

公开资料未说明

下载量

2,942
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:canslim-analysis(坎斯利姆分析)
来源仓库:https://github.com/lkmsteven/canslim-analysis
安装命令:
openclaw skills install canslim-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install canslim-analysis

简介

使用固定模式和模块化 Python 管道对美国股票执行混合定量和定性 CANSLIM 分析,返回排名后的入围名单。

SKILL.md

name
canslim-analysis
description
Executes a hybrid quantitative and qualitative CANSLIM analysis on US stocks using a fixed schema and a modular Python pipeline, returning a ranked shortlist.
user-invocable
true
requires
os

CANSLIM Hybrid Analyzer

Analyze US stocks using a three-stage modular pipeline:

  1. Run a quantitative screen to filter candidates by earnings, leadership, and price/volume behavior.
  2. Use OpenClaw AI enrichment to evaluate qualitative catalysts, float tightness, and institutional quality.
  3. Generate a final ranked CANSLIM report using a fixed scoring contract.

When to use

Use this skill when the user asks to:

  • Run a comprehensive CANSLIM analysis on US stocks.
  • Screen for market leaders combining both quantitative strength and recent catalysts.
  • Generate a ranked shortlist with clear met/missed CANSLIM criteria.
  • Audit or reproduce the pipeline with deterministic JSON handoffs.

Required files

Expected local files (located in Scripts/ directory):

  • Scripts/quantitative_analyzer.py
  • Scripts/final_process.py
  • Scripts/pdf_report_generator.py
  • Scripts/requirements.txt

Expected generated files (in Scripts/ directory):

  • Scripts/intermediate_canslim.json
  • Scripts/enriched_canslim.json
  • Scripts/final_canslim_report.json
  • Scripts/canslim_analysis.log
  • Scripts/out/canslim_report_{date}.pdf (PDF report with formatted analysis)

Canonical JSON contract

The quantitative phase owns Quantitative_Metrics.

The AI phase must preserve every field already present in Quantitative_Metrics and must only fill AI_Qualitative_Checks.

Intermediate schema

{
  "Metadata": {
    "Schema_Version": "2.1",
    "Date_Run": "2026-03-15",
    "Market_Direction_M": "Confirmed Uptrend",
    "Total_Universe_Scanned": 503,
    "Successfully_Evaluated": 487,
    "Failed_Fetches": 16,
    "Skipped_For_Missing_Fundamentals": 39,
    "Stocks_Passed_To_AI": 27
  },
  "Stocks": [
    {
      "Ticker": "XYZ",
      "Company_Name": "XYZ Corp",
      "Quantitative_Metrics": {
        "C_Met": true,
        "C_Details": "Q EPS Growth: 38.0%",
        "Quarterly_EPS_Growth": 0.38,
        "EPS_Accelerating": false,
        "A_Met": true,
        "A_Details": "Annual EPS CAGR: 31.0%",
        "Annual_EPS_Growth": 0.31,
        "L_Met": true,
        "RS_Rating": 92.4,
        "S_Quant_Met": true,
        "S_Quant_Details": "Today volume >= 1.5x 50-day average, Up-day volume skew positive",
        "S_Score": 2,
        "Today_Volume_Strong": true,
        "Volume_Skew_Positive": true,
        "I_Quant_Flag": true,
        "I_Quant_Details": "78.0% institutional ownership",
        "N_Technical_Met": true,
        "N_Technical_Details": "Within 4.0% of 52-week high",
        "Near_52_Week_High": true,
        "Recent_Breakout": false,
        "Pct_From_High": 0.04,
        "Current_Price": 145.2,
        "Float_Shares": 42000000,
        "Institutional_Ownership": 0.78
      },
      "AI_Qualitative_Checks_Pending": {
        "N_New_Catalyst": null,
        "N_Catalyst_Details": "",
        "S_Float_Tightness": null,
        "S_Float_Details": "",
        "I_Institutional_Quality": null,
        "I_Institutional_Details": ""
      }
    }
  ]
}

Enriched schema

The enriched schema must be the same as the intermediate schema, plus AI_Qualitative_Checks.


{
  "Stocks": [
    {
      "Ticker": "XYZ",
      "Company_Name": "XYZ Corp",
      "Quantitative_Metrics": { "...": "unchanged and preserved" },
      "AI_Qualitative_Checks_Pending": {
        "N_New_Catalyst": null,
        "N_Catalyst_Details": "",
        "S_Float_Tightness": null,
        "S_Float_Details": "",
        "I_Institutional_Quality": null,
        "I_Institutional_Details": ""
      },
      "AI_Qualitative_Checks": {
        "N_New_Catalyst": true,
        "N_Catalyst_Details": "New product launch and raised guidance",
        "S_Float_Tightness": true,
        "S_Float_Details": "Tight float supported by low float and buyback activity",
        "I_Institutional_Quality": true,
        "I_Institutional_Details": "High-quality institutional sponsorship improving"
      }
    }
  ]
}

Execution rules

Follow this checklist exactly:

  1. Verify files: Confirm Scripts/quantitative_analyzer.py, Scripts/final_process.py, Scripts/pdf_report_generator.py, and Scripts/requirements.txt exist.
  1. Create environment:
python3 -m venv canslim_analysis
source canslim_analysis/bin/activate  # Linux/Mac
canslim_analysis\Scripts\activate  # Windows
  1. Install dependencies:
pip install --no-cache-dir -r Scripts/requirements.txt
  1. Run quantitative analysis:
python Scripts/quantitative_analyzer.py
  1. Verify intermediate output: Confirm Scripts/intermediate_canslim.json exists and contains Metadata, Stocks, Quantitative_Metrics, and AI_Qualitative_Checks_Pending.
  1. Run OpenClaw AI enrichment:
  • Read Scripts/intermediate_canslim.json.
  • For each stock, preserve Ticker, Company_Name, and the entire Quantitative_Metrics object unchanged.
  • Add AI_Qualitative_Checks with values for:

- N_New_Catalyst - N_Catalyst_Details - S_Float_Tightness - S_Float_Details - I_Institutional_Quality - I_Institutional_Details

  1. Write enriched output: Scripts/enriched_canslim.json
  1. Run final processing:
python Scripts/final_process.py

This will automatically generate both the JSON report and the PDF report.

  1. Display results: Read Scripts/final_canslim_report.json and present the ranked list of stocks, CANSLIM scores, met criteria, missed criteria, price, RS rating, and catalyst note.
  1. PDF Report: The PDF report is generated in Scripts/out/canslim_report_{date}.pdf with professional formatting including:

- Report header with metadata and score distribution - Individual stock sections with grades and CANSLIM criteria status - Key metrics tables (RS Rating, EPS growth, institutional ownership) - Detailed analysis for each criterion (C, A, N, S, L, I, M)

  1. Delivery: Always attach the CANSLIM report PDF to the user-facing response when the analysis completes successfully.
  1. Cleanup:
deactivate

Scoring contract

Use this exact final scoring model:

C: Quantitative_Metrics.C_Met

A: Quantitative_Metrics.A_Met

L: Quantitative_Metrics.L_Met

M: Metadata.Market_Direction_M == "Confirmed Uptrend"

N: AI_Qualitative_Checks.N_New_Catalyst == true

S: Quantitative_Metrics.S_Quant_Met == true and AI_Qualitative_Checks.S_Float_Tightness == true

I: AI_Qualitative_Checks.I_Institutional_Quality == true

Interpretation guidance

N_Technical_Met is supporting technical context, not the scored N letter by itself.

I_Quant_Flag is reference context, not the scored I letter by itself.

A stock can have strong technical N support and still miss final N if OpenClaw cannot verify a fresh catalyst.

A stock can have strong volume accumulation and still miss final S if OpenClaw cannot verify tight float or buyback support.

Output format

Return the final user-facing answer in this structure:

Market Environment: <1-2 sentence assessment of the M criterion>

Top CANSLIM Candidates:

RankTickerCompanyCANSLIM ScoreMet CriteriaMissed CriteriaPriceRS RatingAI Catalyst Note
1XYZXYZ Corp6/7C, A, N, S, L, IM$145.2092.4New product launch and raised guidance

AI Catalyst Insights:

XYZ: Fresh catalyst confirmed; float tightness and institutional sponsorship also verified.

Notes & Caveats: Mention missing data, lack of catalyst confirmation, or market-trend caution when relevant.

Constraints

Never install dependencies globally.

Always use the canslim_analysis virtual environment.

Use only files generated by the current skill run.

Do not fabricate catalysts, float conclusions, or institutional-quality claims.

If no catalyst is found, set N_New_Catalyst to false and explain briefly.

If the AI phase cannot verify S or I, set the corresponding value to false instead of leaving it ambiguous.

Do not claim results are guaranteed investment advice. Always include disclaimers about risks and the need for further research.

Failure handling

If execution fails:

State exactly which phase failed: Quantitative, AI Enrichment, or Final Processing.

Include the error message when available.

Recommend the smallest next step.

If the failure is a schema mismatch, state which required field is missing or was overwritten.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90%
按下载量换算2,648

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills