skills$openclaw/dwlf
andywilliams1.9kā˜…

by andywilliams

dwlf – OpenClaw Skill

dwlf is an OpenClaw Skills integration for coding workflows. >

1.9k stars7.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namedwlf
description> OpenClaw Skills integration.
ownerandywilliams
repositoryandywilliams/dwlf
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @andywilliams/dwlf
last updatedFeb 7, 2026

Maintainer

andywilliams

andywilliams

Maintains dwlf in the OpenClaw Skills directory.

View GitHub profile
File Explorer
8 files
.
references
api-endpoints.md
8.0 KB
strategy-builder.md
22.0 KB
scripts
dwlf-api.sh
1.1 KB
_meta.json
400 B
README.md
5.6 KB
SKILL.md
7.5 KB
SKILL.md

name: dwlf description: > Interact with DWLF (dwlf.co.uk), a market analysis platform for crypto and stocks. Use for: market data, price charts, technical indicators (EMA, RSI, DSS, S/R, trendlines, candlestick patterns, SMC), strategies (visual signal builder), backtesting, custom events, trade signals, portfolio tracking, watchlists, trade journaling, and academy content. Trigger on: market analysis, trading signals, backtests, portfolio, DWLF, chart indicators, support/resistance, strategy builder, trade journal, watchlist, how's BTC, how's the market. metadata: clawdbot: emoji: "šŸ“Š" requires: bins: ["curl", "jq"]

DWLF — Market Analysis Platform

API base: https://api.dwlf.co.uk/v2

Auth

Use API key auth. Check TOOLS.md for the key. Header:

Authorization: ApiKey dwlf_sk_...

Helper script: scripts/dwlf-api.sh

Quick Start

# Generic GET request
./scripts/dwlf-api.sh GET /market-data/BTC-USD

# With query params
./scripts/dwlf-api.sh GET "/events?symbol=BTC-USD&limit=10"

# POST request
./scripts/dwlf-api.sh POST /visual-backtests '{"strategyId":"...","symbol":"BTC-USD"}'

Symbol Format

  • Crypto: BTC-USD, ETH-USD, SOL-USD (always with -USD suffix)
  • Stocks/ETFs: TSLA, NVDA, META, MARA, RIOT
  • Forex: GBP-USD, EUR-USD

If user says "BTC" → use BTC-USD. If "TSLA" → use TSLA.

Core Endpoints

Market Data

MethodPathDescription
GET/market-data/{symbol}?interval=1d&limit=50OHLCV candles
GET/market-data/symbolsList all tracked symbols
GET/support-resistance/{symbol}S/R levels with scores
GET/chart-indicators/{symbol}?interval=1dAll indicators (RSI, EMA, MACD, etc.)
GET/trendlines/{symbol}Auto-detected trendlines
GET/events?symbol={symbol}&limit=20System events (breakouts)
GET/events?type=custom_event&scope=user&symbol={symbol}&days=30User's custom events (wcl, dss, reversals etc.)

Strategies & Signals

MethodPathDescription
GET/visual-strategiesList user's strategies
GET/visual-strategies/{id}Strategy details
POST/visual-strategiesCreate strategy
PUT/visual-strategies/{id}Update strategy
GET/user/trade-signals/activeActive trade signals
GET/user/trade-signals/recent?limit=20Recent signals
GET/user/trade-signals/statsSignal performance stats
GET/user/trade-signals/symbol/{symbol}Signals for a symbol

Backtesting

MethodPathDescription
POST/visual-backtestsTrigger backtest (async)
GET/visual-backtests/{id}Get backtest results

Backtests are async — POST triggers, then poll GET until complete.

Portfolio & Trades

MethodPathDescription
GET/portfoliosList portfolios
GET/portfolios/{id}Portfolio details + holdings
GET/trades?status=openList trades
POST/tradesLog a new trade
PUT/trades/{id}Update trade
GET/trade-plansList trade plans

Watchlist

MethodPathDescription
GET/watchlistGet watchlist
POST/watchlistAdd symbol ({"symbol":"BTC-USD"})
DELETE/watchlist/{symbol}Remove symbol

Custom Events

MethodPathDescription
GET/custom-eventsList custom events
POST/custom-eventsCreate custom event
GET/custom-events/{id}Event details

Custom Event Symbol Activation

MethodPathDescription
POST/custom-event-symbols/:eventId/enable-allBulk activate symbols for an event
POST/custom-event-symbols/:eventId/disable-allBulk deactivate symbols for an event
GET/custom-event-symbols/event/:eventIdGet active symbols for an event
GET/custom-event-symbolsList all event-symbol associations

Strategy Symbol Activation

MethodPathDescription
POST/strategy-symbols/:strategyId/enable-allBulk activate symbols for a strategy
POST/strategy-symbols/:strategyId/disable-allBulk deactivate symbols for a strategy
GET/strategy-symbols/strategy/:strategyIdGet active symbols for a strategy
GET/strategy-symbolsList all strategy-symbol associations

Evaluations

MethodPathDescription
POST/evaluationsTrigger evaluation run
GET/evaluations/{id}Get evaluation results

Symbol Activation (Required After Creation)

āš ļø IMPORTANT: Creating a custom event or strategy does NOT automatically activate it for any symbols. After creation, you MUST ask the user which symbols to activate it for, then call the enable endpoint. Without this step, the event/strategy will not fire or generate signals.

Workflow: Custom Events

  1. Create the event → POST /custom-events
  2. Compile the event → POST /custom-events/{id}/compile
  3. Ask the user which symbols to activate for
  4. Activate symbols → POST /custom-event-symbols/{eventId}/enable-all with { "symbols": ["BTC-USD", "ETH-USD"] }

Workflow: Strategies

  1. Create the strategy → POST /visual-strategies
  2. Compile the strategy → POST /visual-strategies/{id}/compile
  3. Ask the user which symbols to activate for
  4. Activate symbols → POST /strategy-symbols/{strategyId}/enable-all with { "symbols": ["BTC-USD", "ETH-USD"] }

Checking Active Symbols

  • Event symbols: GET /custom-event-symbols/event/{eventId}
  • Strategy symbols: GET /strategy-symbols/strategy/{strategyId}
  • All activations: GET /custom-event-symbols and GET /strategy-symbols (query: ?activeOnly=true)

Deactivating Symbols

  • Event: POST /custom-event-symbols/{eventId}/disable-all with { "symbols": [...] }
  • Strategy: POST /strategy-symbols/{strategyId}/disable-all with { "symbols": [...] }

Response Formatting

When presenting data to users:

Market overview: Show price, % change, key S/R levels, and any recent events.

Signals: Show symbol, direction, entry, stop loss, confidence score, strategy name.

S/R levels: Sort by score (strongest first), show level and touch count.

Backtests: Show trade count, win rate, total return, Sharpe ratio, best/worst trades.

Available Indicators

EMA (multiple periods), SMA, RSI, MACD, Bollinger Bands, DSS (Double Smoothed Stochastic), Stochastic RSI, ATR, ADX, OBV, Volume Profile, Ichimoku Cloud, Fibonacci Retracement, Support/Resistance, Trendlines, Candlestick Patterns, SMC (Order Blocks, FVGs, BOS/ChoCH).

Academy

DWLF Academy is a CDN-hosted collection of educational content (15 tracks, 60+ lessons) covering indicators, events, strategies, charting, and more. No auth required.

Use academy tools to read lesson content and understand DWLF concepts:

  • dwlf_list_academy_tracks — browse all tracks and lessons
  • dwlf_search_academy — search by keyword
  • dwlf_get_academy_lesson — read a specific lesson (markdown)

When a user asks "how does X work in DWLF?" or "what is DSS?", check the academy first — it likely has a lesson explaining it.

Detailed Reference

  • API endpoints (params, response shapes): read references/api-endpoints.md
  • Strategy builder (node types, edge wiring, examples): read references/strategy-builder.md
README.md

šŸ“Š DWLF Clawdbot Skill

A Clawdbot skill that gives your agent native access to DWLF — a market analysis platform for crypto and stocks.

Ask your agent things like:

  • "How's BTC looking?"
  • "What signals fired today?"
  • "Show me support/resistance levels for TSLA"
  • "Run a backtest on my Golden Cross strategy"
  • "Log a long on ETH at 3,200"
  • "Create a custom event that fires when DSS exits oversold with a bullish cross"
  • "Search the academy for lessons about composability"

What's DWLF?

DWLF turns market noise into semantic data — support/resistance levels, indicator events, trade signals, backtests, and more. This skill lets your Clawdbot agent tap into all of it conversationally.

The companion MCP server exposes 43 tools across market data, indicators, strategies, backtesting, portfolio, trade journal, custom events, AI summaries, and academy content.

Setup

1. Install the skill

Copy this skill into your Clawdbot workspace:

cd ~/clawd/skills
git clone https://github.com/andywilliams/dwlf-clawdbot-skill.git dwlf

2. Get an API key

  1. Sign up at dwlf.co.uk
  2. Go to Settings → API Keys
  3. Click Generate Key — name it something like "Clawdbot"
  4. Copy the key (dwlf_sk_...)

3. Configure auth

Add your API key to TOOLS.md in your workspace:

## DWLF
- API Key: dwlf_sk_your_key_here

Or set the environment variable:

export DWLF_API_KEY="dwlf_sk_your_key_here"

4. Use it

Just talk to your agent about markets. The skill triggers automatically on topics like market analysis, trading signals, backtests, portfolio, indicators, support/resistance, etc.

What's Included

dwlf/
ā”œā”€ā”€ SKILL.md              # Procedural instructions (loaded by Clawdbot)
ā”œā”€ā”€ scripts/
│   └── dwlf-api.sh      # Generic API wrapper (curl + jq)
└── references/
    └── api-endpoints.md  # Full endpoint reference (188+ endpoints)

Capabilities

FeatureExamples
Market DataPrice, OHLCV candles, volume
Technical IndicatorsRSI, EMA, MACD, Bollinger Bands, DSS, Ichimoku, and more
Support/ResistanceAuto-detected levels with confidence scores
TrendlinesAuto-detected with slope and touch points
EventsBreakouts, crossovers, divergences, candlestick patterns
StrategiesCreate, view, compile, and manage visual signal strategies
BacktestingRun backtests with win rate, Sharpe ratio, P&L
Trade SignalsActive signals, recent history, performance stats
PortfolioTrack holdings, P&L, snapshots
Trade JournalLog trades, add notes, track executions
WatchlistMonitor symbols
Custom EventsDefine your own indicator-based events with composable gates
AI SummariesDashboard overview, symbol briefs, strategy performance — optimized for agents
AcademyEducational content on indicators, events, strategies, and composability

Example Prompts

# Market analysis
"How's BTC looking?"
"What are the support and resistance levels for TSLA?"
"Show me RSI, MACD, and DSS for NVDA on the 4h chart"
"What events have fired for SOL recently?"

# Signals & strategies
"What signals fired today?"
"How are my strategies performing? Show win rates"
"Browse public strategies for ideas"

# Strategy building & backtesting
"Create a Golden Cross strategy using EMA 50/200"
"Backtest my Trend Momentum strategy on NVDA"
"What's the Sharpe ratio on my last backtest?"

# Portfolio & trades
"Show me my portfolio performance"
"Log a long on ETH at 3,200 with a stop at 3,050"
"Add a note to my BTC trade: held through consolidation"
"Close my TSLA trade at 285"

# Custom events
"Create a custom event that fires when DSS exits oversold with a bullish cross"
"List my custom events and their recent triggers"

# Academy
"What does the academy say about composability?"
"Show me the lesson on custom events"
"Search the academy for lessons about DSS"

Cookbook

Multi-step workflows the agent handles naturally:

Analyze a Symbol

Ask "Give me a full analysis of BTC" and the agent will:

  1. Pull the AI symbol brief (price, indicators, S/R, events)
  2. Get 4h indicators for momentum detail
  3. Check trendlines and support/resistance
  4. Review recent events and active signals
  5. Synthesize everything into a market view

Build and Backtest a Strategy

Ask "Create a trend-following strategy and test it on BTC" and the agent will:

  1. Create the strategy with your conditions
  2. Compile it into executable form
  3. Run a backtest over your chosen period
  4. Review results (win rate, Sharpe, P&L)
  5. Suggest iterations based on the numbers

Daily Trading Routine

Ask "What's going on today?" and the agent will:

  1. Pull the AI dashboard (watchlist, signals, trades, portfolios)
  2. Highlight active signals and their performance
  3. Review open positions
  4. Help you log new trades or journal existing ones

For detailed worked examples with tool call sequences, see the MCP server cookbook.

Symbol Format

  • Crypto: BTC-USD, ETH-USD, SOL-USD
  • Stocks/ETFs: TSLA, NVDA, META, MARA
  • Forex: GBP-USD, EUR-USD

Also Available: MCP Server

Want to use DWLF from Claude Desktop, Codex, Cursor, or any MCP client? Check out the companion project:

šŸ‘‰ dwlf-mcp-server — 43 tools, full read/write access

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install dwlf?

Run openclaw add @andywilliams/dwlf in your terminal. This installs dwlf into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/andywilliams/dwlf. Review commits and README documentation before installing.