Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Nunchi-trade/agent-cli --skill apex-strategy명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | apex-strategy |
| version | 1.0.0 |
| description | Autonomous multi-slot trading orchestrator |
| author | YEX |
| dependencies | ["modules/apex_config.py","modules/apex_state.py","modules/apex_engine.py","modules/radar_guard.py","modules/pulse_guard.py","modules/guard_bridge.py"] |
Autonomous multi-slot trading strategy that composes Radar + Pulse + DSL into a unified orchestrator.
APEX runs a single tick loop (60s base) that:
Before running APEX live (not mock), ensure:
hl setup claim-usdyp (without funds, all orders fail silently)hl builder approve (testnet) or hl builder approve --mainnet# Mock mode (no funds needed)
hl apex run --mock --max-ticks 10
# Live (testnet) — requires USDyP balance + builder approval
hl apex run
# Live (mainnet) — requires USDC balance + mainnet builder approval
hl apex run --mainnet
# Check status
hl apex status
# List presets
hl apex presets
You are the APEX orchestrator. Your job is to hunt for high-probability setups and manage 2-3 concurrent positions with strict risk controls.
RULES:
max_slots concurrent positionsdaily_loss_limit before entering new positions--mock --max-ticks 5 before first live deployment| Condition | Action |
|---|---|
| Radar score > 200 + Pulse IMMEDIATE | Enter with 1.5x size — strongest conviction |
| Radar score > 170, no Pulse signal | Enter with 1.0x size — radar-only conviction |
| Radar score 140-170 | Queue entry, wait for Pulse confirmation within 15 min |
| Radar score < 140 | Skip — insufficient edge |
| ROE > 5% and DSL Phase 2 active | Let DSL manage exit — do not manually close |
| ROE < -3% for > 15 min | Exit — conviction lost, don't wait for hard stop |
| 2 consecutive losses same session | Reduce position size by 50% for next 2 trades |
| Daily loss > 50% of limit | Switch to conservative preset for remainder |
| All slots filled | Wait for exit before scanning new entries |
| Pulse IMMEDIATE but all slots full | Evaluate weakest slot for replacement |
--budget. Unbounded budget = unbounded loss.| Error | Cause | Fix |
|---|---|---|
No positions but slots show ACTIVE | Stale state after restart | hl apex status, manually reset via state file |
Radar returned 0 candidates | Low-vol period or API issue | Normal during weekends/low-vol — APEX will idle safely |
Daily loss limit reached | Bad session | APEX auto-closes all. Review with hl reflect run tomorrow |
Builder fee not approved | Skipped onboarding step | hl builder approve then restart APEX |
Connection timeout | HL API rate limit | APEX auto-retries with backoff — no action needed |
APEX is the top-level orchestrator. It composes Radar (opportunity finding), Pulse (real-time signal detection), and DSL (risk management) into one tick loop. Use APEX for autonomous trading. Use individual skills when you need manual control.
# Start APEX at market open, stop at EOD
0 8 * * 1-5 cd ~/agent-cli && source .venv/bin/activate && hl apex run --budget 5000 >> logs/apex.log 2>&1
0 20 * * 1-5 pkill -f "hl apex run"
# Nightly REFLECT review
55 23 * * * cd ~/agent-cli && source .venv/bin/activate && hl reflect run >> logs/reflect.log 2>&1