Stock Liquidity AnalysisFinance Skill
A stock liquidity analysis skill using yfinance, pandas, and numpy. 3-step process: (1) ensure dependencies (auto-install yfinance/pandas/numpy via pip if missing); (2) route to correct sub-skill via intent classification table; (3) present results with caveats. Six sub-skills: A — Liquidity Dashboard: comprehensive snapshot combining all key metrics (spread, volume, turnover, Amihud illiquidity, market impact estimate for 1% ADV), liquidity grade (Very High/High/Moderate/Low/Very Low based on dollar volume, spread %, Amihud ×10⁹), multi-ticker comparison; B — Spread Analysis: current quoted spread (absolute, relative %, bps), bid/ask sizes, near-the-money options spreads for context; C — Volume Analysis: ADV, median volume, dollar volume, RVOL (today vs average, >1.5 elevated, <0.5 quiet), volume trend (linear regression slope), day-of-week pattern, top 5 high/low volume days; D — Order Book Depth: top-of-book (bid/ask/sizes), intraday volume distribution (5-min bars over 5 days, grouped by time-of-day), options OI as derivatives depth proxy, honest limitation about Yahoo Finance providing top-of-book only (no Level 2); E — Market Impact: square-root model Impact = σ × √(Q/V) where σ = daily volatility, Q = order shares, V = ADV, impact curve for 0.1%-50% of ADV, flag if impact > 50 bps suggesting algorithmic execution; F — Turnover Ratio: daily/annualized turnover vs outstanding and float, days to trade float, turnover trend, interpretation table (>500% extremely active, <30% thinly traded). Defaults: 3mo lookback, daily interval, square-root impact model, 5m intrayday when needed. Includes reference file with detailed formulas, extended code templates, metric interpretation guides, and academic references. Uses yfinance (required), pandas, numpy. Python 3.8+. Works on all platforms.
- Snapshot quality
- 88/100
- Snapshot risk
- Medium
- Audit conclusion
- Needs review
Discovery
What this Skill helps an agent do.
Search metadata is limited to this summary, the controlled finance taxonomy, and relation labels. Detailed upstream instructions are not part of the Search Index.
Domains and assets
Search aliases and tags
Trust
Evidence from the captured directory.
This content snapshot assessment does not certify the repository, current files, or installation environment. "Not verified" means the captured files did not support a Yes or No conclusion.
License
GitHub reports the repository license as MIT License.
Review state
- Automated review
- Automated review
- Install tested
- No
- Human reviewed
- Not verified
Snapshot
- Files reviewed
- 3
- Captured
- 2026-07-29 07:31 UTC
- Snapshot ID
- fsh-stock-liquidity-2026-07-29-001
Permissions
FilesystemRead
NoThe skill does not read local files. It fetches all data via yfinance.
FilesystemWrite
NoThe skill does not write local files. Output is presented as tables and analysis.
NetworkAccess
Yesyfinance fetches quote data, historical prices, volume data, and options chains from Yahoo Finance.
ShellExecution
YesThe skill executes Python code for liquidity analysis and may run pip install for dependencies.
CodeExecution
YesThe skill executes Python code for spread, volume, impact, and turnover computations using yfinance, pandas, and numpy.
ExternalCredentials
NoNo external credentials are required — yfinance uses public Yahoo Finance APIs.
Dependencies
yfinance
python3 -m pip install yfinance (auto-installed if missing)
Python library for Yahoo Finance market data. Auto-installed if missing.
pandas
python3 -m pip install pandas (auto-installed if missing)
Data manipulation library. Auto-installed if missing.
numpy
python3 -m pip install numpy (auto-installed if missing)
Numerical computing library. Auto-installed if missing.
Data sources named by the Skill
Yahoo Finance (yfinance)
Quote data, historical prices, options chains, and company info for liquidity analysis.
Snapshot assessment
88/100
Pineify Finance Skill snapshot assessment, version 1.0.0. Generated 2026-07-29 07:31 UTC.
Medium risk · Needs review
Skill structure
100/100Instruction clarity
100/100Dependency transparency
65/100Permission transparency
75/100Safety guardrails
100/100Finance task fit
100/100Audit findings
Medium
Auto-installs Python packages via pip
Step 1 checks for yfinance/pandas/numpy and auto-installs them via subprocess.check_call([sys.executable, "-m", "pip", "install", ...]) if missing. This executes pip install without user confirmation, which may be unexpected in some environments.
Medium
Dependency manifest is absent from the snapshot
No requirements.txt or pyproject.toml is included. Dependencies (yfinance, pandas, numpy) are auto-installed via pip in Step 1 and documented in README.
Sources and relations
Context around this Skill.
Repository
himself65/finance-skills
topic
Stock liquidity & trading cost analysis
P0 relation label. No public page yet.
topic
Bid-ask spread & effective spread
P0 relation label. No public page yet.
topic
Market impact & slippage estimation
P0 relation label. No public page yet.
topic
Volume profile & turnover ratio
P0 relation label. No public page yet.
agent
Claude Code
P0 relation label. No public page yet.
collection
Market analysis
P0 relation label. No public page yet.
guide
Reviewing finance skills before install
P0 relation label. No public page yet.
Registry
Read this record as data.
The public record includes the page-safe snapshot, evidence, assessment, taxonomy, and relations. Internal revision fields stay outside the public projection.
- Record ID
- github:himself65/finance-skills:plugins/market-analysis/skills/stock-liquidity
- Snapshot ID
- fsh-stock-liquidity-2026-07-29-001