---
name: quant-real-factor-10d-time-series-ranked-risk-adjusted-trend
description: Use when computing the 10D Time-Series Ranked Risk-Adjusted Trend factor from user-supplied OHLCV data or reviewing its bundled real-data validation metrics.
metadata:
  organization: QuantSkills
  organization_url: https://github.com/quantskills
  repository: skill-quant-factor-directional-alpha
  repository_url: https://github.com/quantskills/skill-quant-factor-directional-alpha
  collection: directional-alpha
  factor_id: R645
  category: Trend
  license: GPL-3.0-only
  copyright: Copyright (C) 2026 QuantSkills
---

# 10D Time-Series Ranked Risk-Adjusted Trend

Use this Skill to compute `10日时序排名风险调整趋势` / `10D Time-Series Ranked Risk-Adjusted Trend` from caller-provided OHLCV data.

## Workflow

1. Load a `pandas.DataFrame` with `open`, `high`, `low`, `close`, `volume`; include `date` and `symbol` for cross-sectional research.
2. Call `scripts/factor.py::compute_factor(df)` to compute the factor column.
3. Call `generate_signals(df)` for a simple rank-based long/short signal.
4. Review `validation_real/report.md` before using the factor in a model.

## Runtime Contract

- Framework-neutral Python: `pandas` and `numpy`.
- The caller owns data vendor, universe, calendar, costs, slippage, and execution modeling.
