Assess portfolio risk using npx neural-trader — VaR, CVaR, Sharpe, position sizing, circuit breaker status
Scanned 9/12/2026
Install to Claude Code
npx -y skills add thedixitjain/the-mega-skill-library --skill trader-risk --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Trader Risk?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/thedixitjain-trader-risk)More formats (shields.io, HTML) on the badges page.
---
name: trader-risk
description: "Assess portfolio risk using npx neural-trader — VaR, CVaR, Sharpe, position sizing, circuit breaker status"
allowed-tools: "Bash Read mcp__plugin_ruflo-core_ruflo__memory_store mcp__plugin_ruflo-core_ruflo__memory_search"
category: business-and-finance
source_repo: ruvnet/ruflo
source_path: "plugins/ruflo-neural-trader/skills/trader-risk/SKILL.md"
source_url: https://github.com/ruvnet/ruflo/blob/HEAD/plugins/ruflo-neural-trader/skills/trader-risk/SKILL.md
---
Assess portfolio and position risk using neural-trader's risk engine.
Steps:
1. Ensure neural-trader is available:
`npm ls neural-trader 2>/dev/null || npm install --ignore-scripts neural-trader`
2. Run risk assessment:
```bash
# Single position
npx neural-trader --risk assess --symbol TICKER
npx neural-trader --var --symbol TICKER --investment 10000
# Portfolio-wide
npx neural-trader --risk assess --portfolio NAME
npx neural-trader --correlation --portfolio NAME --flag-threshold 0.8
```
3. Calculate position sizing:
```bash
npx neural-trader --risk-tolerance 0.02 --symbol TICKER
npx neural-trader --position-sizing kelly --symbol TICKER
```
4. Check circuit breaker status:
- Daily loss limit (3%), weekly loss limit (5%)
- Correlation spike (>0.85), volatility regime (VIX > 2x)
- Max positions, single-name concentration (>10%)
5. Present: risk metrics, position sizing recommendation, active breakers, alerts
6. Store assessment:
`mcp__plugin_ruflo-core_ruflo__memory_store({ key: "risk-TICKER-DATE", value: "RISK_METRICS", namespace: "trading-risk" })`
---
**Source:** [`ruvnet/ruflo`](https://github.com/ruvnet/ruflo) → `plugins/ruflo-neural-trader/skills/trader-risk/SKILL.md`
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!