1.9kā
by andywilliams
dwlf ā OpenClaw Skill
dwlf is an OpenClaw Skills integration for coding workflows. >
Skill Snapshot
| name | dwlf |
| description | > OpenClaw Skills integration. |
| owner | andywilliams |
| repository | andywilliams/dwlf |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @andywilliams/dwlf |
| last updated | Feb 7, 2026 |
Maintainer

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-USDsuffix) - 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
| Method | Path | Description |
|---|---|---|
| GET | /market-data/{symbol}?interval=1d&limit=50 | OHLCV candles |
| GET | /market-data/symbols | List all tracked symbols |
| GET | /support-resistance/{symbol} | S/R levels with scores |
| GET | /chart-indicators/{symbol}?interval=1d | All indicators (RSI, EMA, MACD, etc.) |
| GET | /trendlines/{symbol} | Auto-detected trendlines |
| GET | /events?symbol={symbol}&limit=20 | System events (breakouts) |
| GET | /events?type=custom_event&scope=user&symbol={symbol}&days=30 | User's custom events (wcl, dss, reversals etc.) |
Strategies & Signals
| Method | Path | Description |
|---|---|---|
| GET | /visual-strategies | List user's strategies |
| GET | /visual-strategies/{id} | Strategy details |
| POST | /visual-strategies | Create strategy |
| PUT | /visual-strategies/{id} | Update strategy |
| GET | /user/trade-signals/active | Active trade signals |
| GET | /user/trade-signals/recent?limit=20 | Recent signals |
| GET | /user/trade-signals/stats | Signal performance stats |
| GET | /user/trade-signals/symbol/{symbol} | Signals for a symbol |
Backtesting
| Method | Path | Description |
|---|---|---|
| POST | /visual-backtests | Trigger backtest (async) |
| GET | /visual-backtests/{id} | Get backtest results |
Backtests are async ā POST triggers, then poll GET until complete.
Portfolio & Trades
| Method | Path | Description |
|---|---|---|
| GET | /portfolios | List portfolios |
| GET | /portfolios/{id} | Portfolio details + holdings |
| GET | /trades?status=open | List trades |
| POST | /trades | Log a new trade |
| PUT | /trades/{id} | Update trade |
| GET | /trade-plans | List trade plans |
Watchlist
| Method | Path | Description |
|---|---|---|
| GET | /watchlist | Get watchlist |
| POST | /watchlist | Add symbol ({"symbol":"BTC-USD"}) |
| DELETE | /watchlist/{symbol} | Remove symbol |
Custom Events
| Method | Path | Description |
|---|---|---|
| GET | /custom-events | List custom events |
| POST | /custom-events | Create custom event |
| GET | /custom-events/{id} | Event details |
Custom Event Symbol Activation
| Method | Path | Description |
|---|---|---|
| POST | /custom-event-symbols/:eventId/enable-all | Bulk activate symbols for an event |
| POST | /custom-event-symbols/:eventId/disable-all | Bulk deactivate symbols for an event |
| GET | /custom-event-symbols/event/:eventId | Get active symbols for an event |
| GET | /custom-event-symbols | List all event-symbol associations |
Strategy Symbol Activation
| Method | Path | Description |
|---|---|---|
| POST | /strategy-symbols/:strategyId/enable-all | Bulk activate symbols for a strategy |
| POST | /strategy-symbols/:strategyId/disable-all | Bulk deactivate symbols for a strategy |
| GET | /strategy-symbols/strategy/:strategyId | Get active symbols for a strategy |
| GET | /strategy-symbols | List all strategy-symbol associations |
Evaluations
| Method | Path | Description |
|---|---|---|
| POST | /evaluations | Trigger 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
- Create the event ā
POST /custom-events - Compile the event ā
POST /custom-events/{id}/compile - Ask the user which symbols to activate for
- Activate symbols ā
POST /custom-event-symbols/{eventId}/enable-allwith{ "symbols": ["BTC-USD", "ETH-USD"] }
Workflow: Strategies
- Create the strategy ā
POST /visual-strategies - Compile the strategy ā
POST /visual-strategies/{id}/compile - Ask the user which symbols to activate for
- Activate symbols ā
POST /strategy-symbols/{strategyId}/enable-allwith{ "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-symbolsandGET /strategy-symbols(query:?activeOnly=true)
Deactivating Symbols
- Event:
POST /custom-event-symbols/{eventId}/disable-allwith{ "symbols": [...] } - Strategy:
POST /strategy-symbols/{strategyId}/disable-allwith{ "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 lessonsdwlf_search_academyā search by keyworddwlf_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
š 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
- Sign up at dwlf.co.uk
- Go to Settings ā API Keys
- Click Generate Key ā name it something like "Clawdbot"
- 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
| Feature | Examples |
|---|---|
| Market Data | Price, OHLCV candles, volume |
| Technical Indicators | RSI, EMA, MACD, Bollinger Bands, DSS, Ichimoku, and more |
| Support/Resistance | Auto-detected levels with confidence scores |
| Trendlines | Auto-detected with slope and touch points |
| Events | Breakouts, crossovers, divergences, candlestick patterns |
| Strategies | Create, view, compile, and manage visual signal strategies |
| Backtesting | Run backtests with win rate, Sharpe ratio, P&L |
| Trade Signals | Active signals, recent history, performance stats |
| Portfolio | Track holdings, P&L, snapshots |
| Trade Journal | Log trades, add notes, track executions |
| Watchlist | Monitor symbols |
| Custom Events | Define your own indicator-based events with composable gates |
| AI Summaries | Dashboard overview, symbol briefs, strategy performance ā optimized for agents |
| Academy | Educational 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:
- Pull the AI symbol brief (price, indicators, S/R, events)
- Get 4h indicators for momentum detail
- Check trendlines and support/resistance
- Review recent events and active signals
- 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:
- Create the strategy with your conditions
- Compile it into executable form
- Run a backtest over your chosen period
- Review results (win rate, Sharpe, P&L)
- Suggest iterations based on the numbers
Daily Trading Routine
Ask "What's going on today?" and the agent will:
- Pull the AI dashboard (watchlist, signals, trades, portfolios)
- Highlight active signals and their performance
- Review open positions
- 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.
