Token导航 LogoToken导航TokenDH.com
待分类external-servicegithub未标认证来源可访问许可证需确认审计异常

stock-historical-index股票历史指数

Agent Skill

stock-historical-index 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,647

周安装

66

GitHub Stars

37

下载量

533
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:stock-historical-index(股票历史指数)
来源仓库:https://github.com/octagonai/skills
仓库路径:skills/stock-historical-index
安装命令:
npx skills add https://github.com/octagonai/skills --skill stock-historical-index
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/octagonai/skills --skill stock-historical-index

简介

用于处理 GitHub 仓库协作信息,支持 Issue 与 PR 管理。

  • 适用于跟踪项目状态、代码变更与团队沟通事项。
  • 通过调用仓库 API 获取议题列表或合并请求详情。
  • 需确认目标仓库的读写权限与网络连通性。stock-historical-index 属于待分类类 Skill,可作为该场景下的辅助能力补充。
  • 操作前应评估对外部系统的依赖与稳定性风险。

SKILL.md

Stock Historical Index

Retrieve full historical end-of-day price data for market indices using the Octagon MCP server.

Prerequisites

Ensure Octagon MCP is configured in your AI agent (Cursor, Claude Desktop, Windsurf, etc.). See references/mcp-setup.md for installation instructions.

Workflow

1. Identify Parameters

Determine your query parameters:

  • Index Symbol: ^GSPC (S&P 500), ^DJI (Dow), ^IXIC (NASDAQ), etc.
  • Start Date: Beginning of date range
  • End Date: End of date range

2. Execute Query via Octagon MCP

Use the octagon-agent tool with a natural language prompt:

Retrieve full historical end-of-day price data for the <INDEX> index from <START_DATE> to <END_DATE>.

MCP Call Format:

{
  "server": "octagon-mcp",
  "toolName": "octagon-agent",
  "arguments": {
    "prompt": "Retrieve full historical end-of-day price data for the ^GSPC index from 2025-01-01 to 2025-04-30."
  }
}

3. Expected Output

The agent returns comprehensive daily index data:

DateOpenHighLowCloseVolumeChangeChange %VWAP
2025-04-305,499.445,581.845,433.245,569.075.45B+69.63+1.27%5,520.90
2025-04-295,508.875,571.955,505.705,560.824.75B+51.95+0.94%5,536.84
...........................

Key Statistics:

  • Highest single-day volume: 9.49B on 2025-04-09
  • Largest daily gain: +9.90% on 2025-04-09
  • Largest daily loss: -4.12% on 2025-04-04
  • Trading days covered: 79

Data Sources: octagon-stock-data-agent

4. Interpret Results

See references/interpreting-results.md for guidance on:

  • Analyzing index price trends
  • Calculating period returns
  • Understanding volume patterns
  • Identifying significant market moves

Example Queries

S&P 500 History:

Retrieve full historical end-of-day price data for the ^GSPC index from 2025-01-01 to 2025-04-30.

NASDAQ Composite:

Get historical data for ^IXIC from 2024-01-01 to 2024-12-31.

Dow Jones:

Show ^DJI historical prices for Q1 2025.

Russell 2000:

Retrieve historical data for ^RUT from 2024-06-01 to 2025-06-01.

Multiple Indices:

Compare ^GSPC and ^IXIC performance from 2025-01-01 to 2025-03-31.

Common Index Symbols

US Major Indices

SymbolIndexDescription
^GSPCS&P 500500 large-cap US stocks
^DJIDow Jones30 blue-chip stocks
^IXICNASDAQ CompositeAll NASDAQ stocks
^NDXNASDAQ 100100 largest NASDAQ
^RUTRussell 20002000 small-cap stocks

Sector Indices

SymbolIndexDescription
^XLKTechnologyTech sector
^XLFFinancialsFinancial sector
^XLVHealthcareHealthcare sector
^XLEEnergyEnergy sector
^XLIIndustrialsIndustrial sector

Volatility Indices

SymbolIndexDescription
^VIXVIXMarket volatility
^VXNVXNNASDAQ volatility

Understanding Index Data

Price Components

FieldDescription
OpenFirst trade price of day
HighHighest price of day
LowLowest price of day
CloseLast trade price of day
VolumeTotal shares traded
ChangePoint change from prior close
Change %Percentage change
VWAPVolume-weighted average price

Daily Range Analysis

MetricCalculation
Daily RangeHigh - Low
Range %(High - Low) / Open
Position in Range(Close - Low) / (High - Low)

Return Calculations

Period Returns

PeriodFormula
Daily(Close - Prior Close) / Prior Close
Weekly(Friday Close - Monday Open) / Monday Open
Monthly(Month End - Month Start) / Month Start
YTD(Current - Year Start) / Year Start

Example

From the data:

  • Start (Jan 2): 5,868.56
  • End (Apr 30): 5,569.07
  • Return: (5,569.07 - 5,868.56) / 5,868.56 = -5.10%

Cumulative Returns

Cumulative = (1 + r1) × (1 + r2) × ... × (1 + rn) - 1

Volume Analysis

Volume Patterns

PatternInterpretation
High volume + upStrong buying
High volume + downStrong selling
Low volume + upWeak rally
Low volume + downLack of sellers

Volume Metrics

MetricPurpose
Average daily volumeBaseline
Volume spikeUnusual activity
Volume trendParticipation changes

Example

From the data:

  • Highest volume: 9.49B on 2025-04-09
  • This coincided with +9.90% gain (major rally)

Trend Analysis

Trend Identification

PatternCharacteristics
UptrendHigher highs, higher lows
DowntrendLower highs, lower lows
ConsolidationRange-bound
ReversalTrend change

Moving Averages

MAUse
50-dayShort-term trend
200-dayLong-term trend
Golden Cross50 > 200 (bullish)
Death Cross50 < 200 (bearish)

Volatility Analysis

Measuring Volatility

MetricCalculation
Daily Range %(High - Low) / Close
Daily ChangeAbsolute daily change
Std DeviationDispersion of returns

Volatility Context

Daily Change %Market Condition
<0.5%Low volatility
0.5-1%Normal
1-2%Elevated
>2%High volatility
>4%Extreme

Example

From the data:

  • Largest gain: +9.90%
  • Largest loss: -4.12%
  • Range: 14.02%
  • Interpretation: Period of elevated volatility

Key Market Events

Identifying Significant Days

CriteriaThreshold
Big up day>2% gain
Big down day>2% loss
Volume spike>2x average
Range expansion>2x normal range

Event Analysis

From DataEvent
+9.90% on Apr 9Major rally
-4.12% on Apr 4Significant selloff
9.49B volumeHighest participation

Benchmarking Use

Stock vs. Index

ComparisonFormula
AlphaStock Return - Index Return
BetaStock Vol / Index Vol × Correlation
Relative StrengthStock / Index

Example Use

  • Your stock returned +15%
  • S&P 500 returned -5.10%
  • Alpha: +20.10% outperformance

Common Use Cases

Market Context

What was the overall market doing when my stock fell?

Return Comparison

How did the S&P 500 perform in Q1 2025?

Volatility Assessment

What were the biggest up and down days for the market in 2024?

Trend Analysis

Is the market in an uptrend or downtrend?

Volume Analysis

What were the highest volume days for the S&P 500?

Analysis Tips

  1. Use for context: Index performance explains stock moves.
  2. Calculate alpha: Your returns vs. market.
  3. Watch volume: High volume days are significant.
  4. Track extremes: Big up/down days signal sentiment.
  5. Compare indices: Different indices, different signals.
  6. Consider VIX: Volatility index for fear gauge.

Integration with Other Skills

SkillCombined Use
stock-performanceStock vs. index comparison
sector-performance-snapshotSector vs. index
stock-quoteCurrent vs. historical
historical-market-capMarket cap vs. index

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.1%
按下载量换算171

Claude

31.44%
按下载量换算168

Cursor

20.29%
按下载量换算108

Gemini CLI

9.4%
按下载量换算50

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills