Agent skill · Data & Analytics

market-pattern

Detect and classify candlestick patterns from ingested OHLCV data

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add ruvnet/ruflo --skill market-pattern --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: mcp__plugin_ruflo-core_ruflo__memory_searchmcp__plugin_ruflo-core_ruflo__memory_listmcp__plugin_ruflo-core_ruflo__memory_storemcp__plugin_ruflo-core_ruflo__agentdb_pattern-storemcp__plugin_ruflo-core_ruflo__agentdb_pattern-searchmcp__plugin_ruflo-core_ruflo__ruvllm_hnsw_routeBash
Path: plugins/ruflo-market-data/skills/market-pattern/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Market Pattern Scan ingested OHLCV data for known candlestick patterns, classify them by type and reliability, and store for future reference. ## When to use When you need to identify candlestick patterns (doji, hammer, engulfing, head-shoulders, etc.) in market data. Requires data to be ingested first via `market-ingest`. ## Steps 1. **Load candles** -- call `mcp__plugin_ruflo-core_ruflo__memory_search` (or `memory_list`) on the `market-data` namespace to retrieve normalized OHLCV data for the symbol and period. The `memory_*` tool family routes by namespace; the `agentdb_hierarchical-*` family does NOT (it routes by tier), so use `memory_*` for namespaced reads. 2. **Scan for patterns** -- iterate through candle sequences looking for: - Single-candle: doji (open ~= close), hammer (long lower wick), inverted hammer - Two-candle: bullish/bearish engulfing - Three-candle: morning star, evening star, three white soldiers, three black crows - Multi-candle: head & shoulders, double top/bottom, cup & handle 3. **Classify** -- for each detection, assign: pattern name, type (reversal/continuation), direction (bullish/bearish), reliability score (0.0-1.0) 4. **Rank** -- sort by reliabili

What's inside
Steps it walks through
  1. When to use
  2. Steps
  3. CLI alternative
Commands it runs
npx @claude-flow/cli@latest memory search --query "bullish reversal patterns" --namespace market-patterns
npx @claude-flow/cli@latest memory store --key "pattern-AAPL-2026-05-04-doji" --value '{...}' --namespace market-patterns
More from ruflo
All skills →
About this skill
What does the market-pattern skill do?

Detect and classify candlestick patterns from ingested OHLCV data

How do I install it?

Run `npx skills add ruvnet/ruflo --skill market-pattern --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going