ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

trading-research

Binance cryptocurrency trading research, technical analysis, and position management. Triggers on requests for crypto prices, market data, trading analysis, DCA planning, position sizing, whale activity, or any trading research questions about Bitcoin, altcoins, or crypto markets.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/fpsjago/trading-research
Or

Trading Research Skill

Comprehensive cryptocurrency trading research and analysis focused on Binance markets. Designed for conservative-moderate risk traders using DCA (Dollar Cost Averaging) strategies with technical analysis support.

When to Use This Skill

Activate when user requests:

  • Current crypto prices or market data
  • Technical analysis (RSI, MACD, Bollinger Bands, etc.)
  • DCA strategy planning or schedule calculation
  • Position sizing with risk management
  • Market scanning for opportunities
  • Whale tracking or large order monitoring
  • Trading strategy advice or risk assessment

Core Philosophy

  • Conservative first: Preserve capital, minimize risk
  • DCA-focused: Time in market > timing the market
  • Risk management: Never risk more than 1-2% per trade
  • Data-driven: Use technical indicators for confirmation, not prediction
  • Transparent: Show calculations, explain reasoning

Available Tools

1. Market Data (binance_market.py)

Fetch real-time Binance market data.

Use when: User asks for price, volume, orderbook, recent trades, or funding rates.

Common commands:

# Current price and 24h stats (default)
python3 scripts/binance_market.py --symbol BTCUSDT

# Orderbook depth
python3 scripts/binance_market.py --symbol BTCUSDT --orderbook --depth 20

# Candlestick data
python3 scripts/binance_market.py --symbol BTCUSDT --klines 1h --limit 100

# Recent trades
python3 scripts/binance_market.py --symbol BTCUSDT --trades --limit 100

# Funding rate (futures)
python3 scripts/binance_market.py --symbol BTCUSDT --funding

# All data at once
python3 scripts/binance_market.py --symbol BTCUSDT --all

# JSON output (for piping)
python3 scripts/binance_market.py --symbol BTCUSDT --json > btc_data.json

Intervals: 1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w

2. Technical Analysis (technical_analysis.py)

Calculate and interpret technical indicators.

Use when: User asks for TA, indicators, buy/sell signals, or market analysis.

Common commands:

# Full analysis (default: 1h timeframe, 200 candles)
python3 scripts/technical_analysis.py --symbol BTCUSDT

# Different timeframe
python3 scripts/technical_analysis.py --symbol BTCUSDT --interval 4h

# Custom RSI period
python3 scripts/technical_analysis.py --symbol BTCUSDT --rsi-period 21

# From saved klines JSON
python3 scripts/technical_analysis.py --input btc_klines.json

# JSON output
python3 scripts/technical_analysis.py --symbol BTCUSDT --json

What it analyzes:

  • Trend direction (SMA 20/50, EMA 12/26)
  • RSI (14) - overbought/oversold
  • MACD - momentum and crossovers
  • Bollinger Bands - volatility and position
  • Support/resistance levels
  • Volume analysis
  • Trading signals and recommendations

3. DCA Calculator (dca_calculator.py)

Plan Dollar Cost Averaging strategies.

Use when: User wants to set up DCA, calculate investment schedules, or compare strategies.

Metadata

Author@fpsjago
Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-fpsjago-trading-research": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.