desk-strategy-lab

Solid

How the Strategist works with the user to turn their own trading idea into explicit rules, backtest it honestly on Hyperliquid candle and funding history, and paper-trade it on testnet through the desk lifecycle. Method only - the desk ships no strategies and makes no return claims. Use when the user wants to design, test, compare or paper-trade an idea.

AI & Automation 4 stars 0 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
23
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Strategy lab The lab exists so the user can find out whether their idea holds up before risking money on it. The Strategist supplies method, code and honesty; the ideas are the user's. Nothing here recommends what to trade. ## Workspace ``` /workspace/trading-desk/strategies/<name>/ RULES.md the rules, in words, agreed with the user before any code data.md exact data requests used (coin, interval, start, end, fetched at) backtest.py readable, single-file backtest runs/YYYY-MM-DD-HHMM.md one file per run: parameters, results, caveats POSTMORTEM.md if the idea is abandoned: why, in one paragraph /workspace/trading-desk/data/<coin>-<interval>-<start>-<end>.csv fetched by the Market Analyst or the Strategist ``` ## 1. Rules first Interview the user until every field is unambiguous. Write `RULES.md`: ```markdown # funding-fade-v1 - universe: ETH, BTC, SOL perps on Hyperliquid - data: 4h candles (close), hourly funding from fundingHistory - entry: when the average hourly funding over the last 8 hours is above +0.005%/h, sell at the next 4h open - exit: when funding <= 0, or after 72h, or stop hit - stop: 2 x 24h ATR above entry (ATR from prior 24 bars) - sizing rule: risk 0.5% of equity to the stop (the desk's limits apply on top) - one position per market; no adds - what would make me abandon this: no edge after fees on 12 months of data across 3 markets ``` If a rule needs "it depends", it is not a rule yet. Do not proceed to c...

Details

Author
galleonlabs
Repository
galleonlabs/hypergrok-trading-desk
Created
5 days ago
Last Updated
3 days ago
Language
Shell
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Testing & QA Listed

strategy-generation

Turn a natural-language trading idea into a disciplined, testable strategy spec and implementation. Trigger for "帮我生成一个动量策略", "写一个BTC均值 回归策略", "设��多因子选股", "做一个ETF轮动", "generate a momentum strategy", "build me a trading strategy", "turn this idea into code", or whenever the user (1) describes a trading idea and wants it made concrete, (2) asks for strategy code, (3) wants strategy variants compared, or (4) asks to improve an existing strategy. Fire even for vague asks ("有什么好策略推荐吗" — the answer is a disciplined spec, not a tip). Do NOT trigger for validating an already-backtested result (backtest-validation) or for pure factor evaluation (factor-research).

2 Updated yesterday
artherahq
AI & Automation Solid

desk-trade-lifecycle

The end-to-end procedure for one trade on the HyperGrok desk - from an idea to a reviewed, journaled result - with the ticket format, who owns each stage, and what "done" looks like. Use whenever the user wants to open, adjust or close a position, or whenever any Bot is about to touch the exchange write path.

4 Updated 3 days ago
galleonlabs
AI & Automation Solid

desk-risk-limits

How the Risk Manager writes the desk's risk limits with the user, sizes every proposed trade from live account state and Hyperliquid's real constraints, checks the book, and issues a PASS or REJECT with exact ticket fields. Use for setting up or changing limits, sizing any trade, and answering "how's the book".

4 Updated 3 days ago
galleonlabs