trader-regime

Detects market regimes and recommends trading strategies using neural-trader technical indicators.

70.1k|8.4k|Updated Jun 2, 2025
One-click install
npx skills add https://github.com/ruvnet/claude-flow --skill trader-regime
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: trader-regime
Source: https://github.com/ruvnet/claude-flow/tree/main/plugins/ruflo-neural-trader/skills/trader-regime
Command: npx skills add https://github.com/ruvnet/claude-flow --skill trader-regime

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires neural-trader.

What problem does it solve?

Traders often apply the wrong strategy for current market conditions, leading to poor backtest results and misaligned signals. This Skill classifies the current market regime (bull, bear, ranging, or volatile) so strategies and backtests can be chosen to match actual conditions.

Core Features & Use Cases

  • Regime Classification: Runs neural-trader's regime detection engine on one or multiple ticker symbols to classify market conditions.
  • Technical Indicator Context: Pulls RSI, MACD, Bollinger Bands, ADX, and ATR indicators to support the regime assessment.
  • Historical Regime Matching: Searches stored memory for similar past regimes and stores new analyses for future comparison.
  • Use Case: Before running a backtest on SPY, ask for a regime check to confirm whether a trend-following or mean-reversion strategy fits current conditions.

Quick Start

Ask the assistant to detect the current market regime for SPY and recommend a suitable trading strategy.

Frequently Asked Questions about trader-regime

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect the current market regime for a stock?

Run npx neural-trader --regime-detect --symbol TICKER to classify the market as bull, bear, ranging, or volatile. For multiple symbols, pass a comma-separated list with --symbols such as AAPL,MSFT,GOOGL,AMZN.

What technical indicators does neural-trader support for regime analysis?

The Skill retrieves RSI, MACD, Bollinger Bands, ADX, and ATR via the --indicators flag. These indicators provide context for the regime classification and feed into the prediction step.

Can I analyze multiple stock symbols at once?

Yes, pass multiple tickers as a comma-separated string, for example npx neural-trader --regime-detect --symbols "AAPL,MSFT,GOOGL,AMZN". Each symbol receives its own regime classification.

What happens if neural-trader is not installed?

The Skill checks for the package with npm ls and installs it with npm install --ignore-scripts neural-trader if missing. The npx commands will not work until the package is available.

When should I run regime detection before a backtest?

Run it whenever a strategy's performance depends on market conditions, since trend-following and mean-reversion strategies behave differently across regimes. Matching the strategy to the detected regime avoids misleading backtest results.