
长桥 skill 使用初体验,很 Cool

I'm running Longbridge's Skill through OpenClaw, and the installation went without a hitch. It works across multiple surfaces — instant messaging clients, OpenClaw's web interface, and the Linux command line — making for a pretty seamless first experience.
OpenClaw plays nicely with Alibaba Cloud's Wuying (cloud PC) or a lightweight VM instance, keeping everything sandboxed from your local machine — a solid security win. Spinning up a server in an overseas region should resolve Longbridge API access out of the box. If not, you'll need a cross-platform proxy solution with Linux support to bridge the gap.
Get your prompts right, and OpenClaw will handle the rest — configuration included.
Skill: Setup & Usage Guide
To install the Skill, just send the following prompt to any AI and it'll walk you through the setup:
"Follow the guide to install Longbridge SKILL: https://open.longbridge.com/skill/install.md"
For a full breakdown of Skill capabilities, visit the official docs: https://open.longbridge.com/zh-CN/skill/
While drafting this post, I got to thinking — could the trading approach that @浙江忧郁二代 uses be systematized? Running it through a Skill agent seems like it could improve the hit rate.
One thing worth keeping in mind: the agent is a tool for executing and dispatching instructions, and for surfacing information to support better decision-making. The quality of the information you get depends entirely on how well you ask. It won't hand you alpha directly — building and refining your own trading framework is still on you.
1、Combo Order Instructions — Surprisingly Convenient
With SNDK trading around $668, I closed out my Apr 17, 2026 $670 Call, sold 50 shares, and then — couldn't help myself — sold a Apr 17, 2026 $750 Call. To manage the risk of holding insufficient shares, I issued the following instruction:
"When SNDK hits $743, close the Apr 17, 2026 $750 Call position. Then wait for the stock to rally and pull back 1% before selling 50 shares."
✅SNDK Conditional Trade Monitor — Active!
📊 Current Positions
Ticker | Qty | Cost Basis | Current Price | Distance to Target |
$Sandisk(SNDK.US) (SNDK.US) | 50 shares1 | $-243.16 | $696.73 | +$46.27 (+6.64%) |
SNDK260417C750000.US | -1 (short) | $28.90 | - | - |
🎯 Strategy Logic
┌───────────────────────────────────────────────────────────┐ │ SNDK Price Monitor (checks every 30 sec) │ └─────────────────────────────────────────────────────────────┘ │ ▼ ┌─────────────────────────┐ │ Price ≥ $743.00 ?│ └─────────────────────────┘ │ │ Yes No │ │ ▼ │ ┌─────────────┐ │ │ Buy 1 Call t Close Position │ │ │ (SNDK260417C750000)│ │ └──────────────────┘ │ │ │ ▼ │ ┌──────────────────┐ │ │ Record the Highest Price │ │ └──────────────────┘ │ │ │ ▼ │ ┌──────────────┐ │ │ Pullback ≥ 1% from High? │◄────┘ └──────────────────┘ │ Yes │ ▼ ┌──────────────────┐ │ Sell 50 Shares │ │ (limit at 99% of market price) │ └──────────────────┘
📁 Management Commands
# Check monitor status
bash /root/.openclaw/workspace/scripts/sndk_monitor_status.sh
# View live logs
tail -f /root/.openclaw/workspace/logs/sndk_trade.log
# Stop monitor
bash /root/.openclaw/workspace/scripts/sndk_monitor_stop.sh
# Restart monitor
bash /root/.openclaw/workspace/scripts/sndk_monitor_start.sh
📝 Log Locations
Trade log: /root/.openclaw/workspace/logs/sndk_trade.log
Strategy doc: /root/.openclaw/workspace/strategies/SNDK_策略说明.md
⚠️ Important Notes
- Monitor running in background (PID: 576014)
- US market hours: 21:30 – 04:00 (Beijing Time)
- Option expiry: 2026-04-17 (16 days remaining)
- Current price: $696.73 — 6.64% away from target $743
Need help adjusting strategy parameters or adding new features? 🚀
I then added a stop-loss layer with the following instruction: "Monitor SNDK's price. If it touches $710 and pulls back 3%, or drops directly below $678, immediately execute: buy back (close) 1 × Apr 17 $750 Call at market price, and sell (liquidate) the remaining 50 shares of SNDK at market."
✅ SNDK Conditional Trade Strategy v2 — Active!
📊 Current Positions
Ticker | Qty | Cost Basis | Current Price |
$$Sandisk(SNDK.US) (SNDK.US) | 50 shares | $-243.16 | ~$697.50 |
SNDK260417C750000.US | -1 (short) | $28.90 | - |
🎯 Strategy Configuration
Strategy | Trigger | Action |
🎯 Target | Price ≥ $743 | Close option → wait for 1% pullback → sell shares |
🛑 Stop-Loss A | Touches $710, then pulls back 3% | Immediately close all (option + shares) |
🛑 Stop-Loss B | Drops directly below $678 | Immediately close all (option + shares) |
📍 Current Price Positioning
$743 ──────────────────────────── 🎯 Target (+6.5%)
$710 ────────────────────────── 🛑 Stop-Loss A (+1.8%)
$697.50 ─────────────────────────── 💰 Current Price
$678 ────────────────────────── 🛑 Stop-Loss B (-2.8%)
🚀 Monitor Status
Status: ✅ Running (PID: 576137)
Check interval: every 15 seconds
Log file: /root/.openclaw/workspace/logs/sndk_trade_v2.log
📁 Management Commands
# Check monitor status
bash /root/.openclaw/workspace/scripts/sndk_monitor_status_v2.sh
# View live logs
tail -f /root/.openclaw/workspace/logs/sndk_trade_v2.log
# Stop monitor
bash /root/.openclaw/workspace/scripts/sndk_monitor_stop.sh
# Restart monitor
bash /root/.openclaw/workspace/scripts/sndk_monitor_start_v2.sh
📝 Strategy Doc
Full details: /root/.openclaw/workspace/strategies/SNDK_策略说明_v2.md
⚠️ Important Notes
- Monitor running in background — price checked every 15 seconds
- Stop-loss is highest priority — all positions closed immediately upon trigger
- Option expiry: 2026-04-17 (16 days remaining)
- US market hours: 21:30 – 04:00 (Beijing Time)
Strategy active — good luck with the trades! 🚀📈
I wanted to make sure it hadn't misunderstood my intent — specifically that the option close would use a market order, not a limit order. Ran a quick code check, and confirmed it's using market orders as intended.
Also verified via OS process list that the monitoring script is indeed running in the background. Now it's just a matter of seeing how it performs when the triggers fire.
2、Pulling Monthly & Annual Account Statements
You can retrieve account statements either through the agent's chat interface or directly via the CLI. Screenshots below.
3、One Limitation: No Real-Time Options Quotes
With the recent market volatility eating into my options positions pretty hard, I wanted a clearer picture of my monthly P&L. I sent the following instruction: "Break down my Longbridge US options positions by month — include cost basis, current market value, and P&L."
The position data came back correctly, but there's a catch: no real-time quotes, which means P&L can't be calculated on the fly. Hoping Longbridge can address this in a future update.
The copyright of this article belongs to the original author/organization.
The views expressed herein are solely those of the author and do not reflect the stance of the platform. The content is intended for investment reference purposes only and shall not be considered as investment advice. Please contact us if you have any questions or suggestions regarding the content services provided by the platform.


