Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

indicator-series指标系列

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

1,207

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/daveskender/stock.indicators --skill indicator-series

简介

indicator-series 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Series indicator development

File structure

All files live in src/{category}/{Indicator}/:

FilePurpose
{Indicator}.StaticSeries.csStatic partial class — To{Indicator}() + To{Indicator}List() entry points
{Indicator}.StreamHub.csHub class (internal ctor) + To{Indicator}Hub() extension
{Indicator}.BufferList.csList class + To{Indicator}List() extension
{Indicator}.Catalog.csCommonListing, SeriesListing, StreamListing, BufferListing
{Indicator}.Models.csResult record(s)
{Indicator}.Utilities.csValidate() (internal), Increment() (public), RemoveWarmupPeriods()
I{Indicator}.csParameter interface (parameter properties only; NOT result properties)

Test files mirror in tests/indicators/{category}/{Indicator}/:

  • {Indicator}.StaticSeries.Tests.cs
  • {Indicator}.BufferList.Tests.cs
  • {Indicator}.StreamHub.Tests.cs
  • {Indicator}.Regression.Tests.cs

Category folders: a-d, e-k, m-r, s-z (alphabetical)

Performance optimization

Array allocation pattern (use for predictable result counts; benchmark first):

TResult[] results = new TResult[length];
// ... assign results[i] = new TResult(...);
return new List<TResult>(results);  // NOT results.ToList()

Some indicators (e.g., ADL) are faster with List.Add() — benchmark both.

Required implementation

Beyond the .StaticSeries.cs file, ensure:

  • Catalog registration: Create src/**/{Indicator}.Catalog.cs and register in Catalog.Listings.cs
  • Interface file: Create src/**/{Indicator}/I{Indicator}.cs with parameter properties (NOT result properties)
  • Unit tests: Create tests/indicators/**/{Indicator}.StaticSeries.Tests.cs

- Inherit from StaticSeriesTestBase - Include [TestCategory("Regression")] for baseline validation - Verify against manually calculated reference values

  • Performance benchmark: Add to tools/performance/Perf.Series.cs
  • Public documentation: Update docs/indicators/{Indicator}.md
  • Regression tests: Add to tests/indicators/**/{Indicator}.Regression.Tests.cs
  • Migration guide: Update docs/migration.md for notable and breaking changes from v2

Precision testing

  • Store reference data in {Indicator}.Data.cs at maximum precision
  • Regression: compare full dataset using Money10-Money12
  • Spot checks: use Money4
  • Document when precision must be lowered due to accumulated floating-point error

Examples

  • Simple: src/s-z/Sma/Sma.StaticSeries.cs
  • Exponential smoothing: src/e-k/Ema/Ema.StaticSeries.cs
  • Complex multi-stage: src/a-d/Adx/Adx.StaticSeries.cs
  • Multi-value results: src/a-d/Alligator/Alligator.StaticSeries.cs

See references/decision-tree.md for result interface selection.

Constraints

  • Series is canonical truth — BufferList and StreamHub MUST match exactly
  • Verify algorithms against authoritative reference publications only
  • Never reject NaN inputs; guard against division by zero
  • Fix formulas, not symptoms — see src/AGENTS.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.85%
按下载量换算39

Claude

29.66%
按下载量换算31

Cursor

18%
按下载量换算19

Gemini CLI

10.14%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills