correlation-analysis

correlation-analysis is a skill for Claude Code, Codex from skloxo/TideTrading. It costs 57 tokens per session (10,442 once invoked), scanned A, a copy of correlation-analysis, MIT.

A framework for finding assets that move together and testing whether their prices tend to return to a long-term relationship. This supports pairs trading, where two related assets are traded against each other, and portfolio risk analysis.

In plain words
What is it for?
Use it to discover related assets, group sectors, measure realised correlation, test cointegration, estimate spread half-life and changing hedge ratios, study cross-market links, and generate pairs-trading signals.
Why use it?
Simple correlation can be temporary, so the framework also tests longer-term links and how quickly a spread may return toward normal. This helps separate useful relationships from coincidental co-movement.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/skloxo/tidetrading/correlation-analysis
Any agent
npx skills add skloxo/TideTrading --skill correlation-analysis
Clone the repo
git clone --depth 1 https://github.com/skloxo/TideTrading

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for correlation-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/skloxo/tidetrading/correlation-analysis.svg)](https://agentmods.dev/skills/skloxo/tidetrading/correlation-analysis)
Your own site
<a href="https://agentmods.dev/skills/skloxo/tidetrading/correlation-analysis"><img src="https://agentmods.dev/badge/skills/skloxo/tidetrading/correlation-analysis.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,442 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00057 $0.10442
Opus 5 $0.00028 $0.05221
Sonnet 5 $0.00011 $0.02088
Haiku 4.5 $0.00006 $0.01044

Measured 5d ago against content hash c32e341ef8f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

correlation-analysis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to correlation-analysis — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agent/src/skills/correlation-analysis/SKILL.md · 1,124 lines

How it starts

The opening of the file, as written. The whole thing — 1,124 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Correlation and Cointegration Analysis

Overview

Correlation analysis is a foundational tool for pairs trading, portfolio construction, and risk management. This skill covers four analysis modes (co-movement discovery / return-correlation deep dive / sector clustering / realized correlation), a full cointegration-testing framework, cross-market linkage analysis, and the complete workflow from analytics to pair-trading signals.


Mode 1: Co-Movement Discovery

Use case: Given a target asset, scan a universe for highly correlated assets and build a candidate pool with similar industry or factor exposure, for use in pairs trading or substitute identification.

Workflow

1. Pull daily return series for the target asset and N candidates
2. Compute Pearson / Spearman correlations between the target and each candidate
3. Rank by correlation in descending order and keep Top-K (usually K=10-20)
4. Run cointegration tests on the Top-K set to retain pairs with real long-run equilibrium
5. Output the candidate pool and a correlation summary
import pandas as pd
import numpy as np
from scipy.stats import pearsonr, spearmanr

def scan_correlated_assets(
    target_returns: pd.Series,
    universe_returns: pd.DataFrame,
    top_k: int = 20,
    min_corr: float = 0.5,
    method: str = "pearson",
) -> pd.DataFrame:
    """Scan for assets that are highly correlated with the target asset.

    Args:
        target_returns: Daily return series for the target asset
        universe_returns: Candidate-universe return matrix, columns are symbols
        top_k: Number of top candidates to return
        min_corr: Minimum absolute-correlation threshold
        method: "pearson" or "spearman"

    Returns:
        A DataFrame containing symbol / corr / p_value / rank
    """
    aligned = universe_returns.dropna(axis=1, how="any")
    aligned, target_aligned = aligned.align(target_returns, join="inner", axis=0)

    results = []
    for col in aligned.columns:
        if method == "spearman":
            corr, p = spearmanr(target_aligned, aligned[col])
        else:
            corr, p = pearsonr(target_aligned, aligned[col])
        results.append({"symbol": col, "corr": corr, "p_value": p})

    df = pd.DataFrame(results)
    df = df[df["corr"].abs() >= min_corr].sort_values("corr", ascending=False)
    df["rank"] = range(1, len(df) + 1)
    return df.head(top_k).reset_index(drop=True)

Read the full file on GitHub · 1,124 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 1,124 lines · 57 tokens per session scan A c32e341ef8f7

Subscribe to this mod's changes

correlation-analysis is a skill published in the GitHub repository skloxo/TideTrading (10 stars, last pushed yesterday), licensed MIT. It adds 57 tokens to every session and 10,442 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to correlation-analysis, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

daily-deep-brief

8 点这个时点:HK 开盘前 90 分钟,US 已收盘 4 小时。盘前是 deep think 最好的窗口 — 有完整夜间消息面,没有盘中执行压力。.

KCNyu/clawock · 163 tokens

invest-analyst

全能证券分析师工作台——把零散金融工具串成机构级工作流。覆盖个股IC研报、主题策略、事件驱动(电话会/业绩/政策/并购)、一致预期整合、行业比较、市场日报六大场景。 触发:「出一份茅台的IC报告」「写一份XX的行业深度」「XX业绩电话会纪要」「怎么看待XX政策/并购」「这个产业链有哪些标的」「分析师一致预期」「今天市场怎么样」「出个日报晨报」「这个投资论点怎么写」。 与invest系列区别:invest-stock/fund做「买不买」的判断,invest-analyst做「怎么写/怎么产出」的机构级内容交付。invest-industry做「行业是什么」,invest-analyst做「这个行业怎么投」。.

taxueseek/fund-investment-guide · 193 tokens

invest-fund

场景优先级:B(同经理) > F(跨基金对比) > G(行业) > C(次新) > E(ETF) > A(默认).

taxueseek/fund-investment-guide · 142 tokens

invest-stock

Skill "invest-stock" from taxueseek/fund-investment-guide, covering invest-stock:统一个股分析, 模式自动选择, 快速识别, 模式 1:三关审查(默认,a股/港股) and 哲学锚点.

taxueseek/fund-investment-guide · 110 tokens

hk-stock-analysis

Workspace-aware Hong Kong stock analysis for kcn. Routes through clawock analyze-hk (Tencent primary + Eastmoney full-batch independent cross-check/fallback → stooq → yfinance) for price/技术指标/news, layered with HK-specific concepts — 南向资金, HSTECH 方向, 杠杆 ETF 衰减, 老千股警惕, T+0 无涨跌幅. Use when user asks about a HK ticker…

KCNyu/clawock · 126 tokens

us-stock-analysis

Workspace-aware US stock analysis for kcn. Routes through clawock analyze-us / clawock us-quotes instead of generic web search, then layers fundamental/technical/news analysis on top. Use when user asks to analyze a US ticker (e.g. "analyze AAPL", "look at RKLB", "compare TSLA vs NVDA"), check earnings, run…

KCNyu/clawock · 97 tokens