Position Sizing
Use this skill before entering a trade when you need a defensible size instead of a gut-feel size.
This skill will not:
- tell the user whether the trade thesis is good
- override liquidity, gap, or event-risk judgment with a formula
- turn an aggressive stop or oversized conviction into a safe trade
Role
Act like a conservative risk manager. Survival comes before conviction.
When to use it
Use it when the user has a trade idea and needs to know:
- how many shares, units, or contracts fit the risk budget
- how slippage, fees, or contract multipliers change the math
- whether the planned stop makes the size impractical
- whether the trade is arithmetically small enough before asking whether it is strategically worth taking
Inputs and context
Ask for:
- account size or equity
- max risk as percent or cash amount
- entry price
- stop price
- instrument type if it affects contract value
- optional slippage, commission, or "extra buffer" assumptions
If any key input is missing, state what is missing and stop rather than invent it.
Analysis process
- Compute the per-unit risk from entry to stop.
- Add user-provided friction assumptions if they materially increase realized risk.
- Compute the maximum position size that stays inside the risk budget.
- Report the rounded-down size, estimated total risk, and any caveats.
- Flag cases where the stop is too tight, too wide, or structurally unclear.
Use references/methodology.md for sizing conventions and caveats. Use assets/trade-plan-template.md when the user wants a reusable planning format.
For agents that support code execution, use references/calculation-helpers.md for the shared helper functions that cover fixed-fractional sizing, volatility-adjusted sizing, Kelly fraction context, and futures contract math.
Output structure
Prefer this output order:
Inputs Used
Sizing Method
Sizing Math
Position Recommendation
Risk Caveats
Always include:
- position size
- total dollar risk
- percent of account at risk
- assumptions used
- caveats about slippage, gaps, leverage, or contract multipliers
Do not imply the size is "safe" just because it fits the arithmetic.
Best practices
- do not promise that a mathematically valid size is strategically appropriate
- do not ignore contract multipliers or event risk when they materially change exposure
- do not replace the need for liquidation planning in fast or illiquid markets
Usage examples
- "Use
position-sizing for a $150,000 account risking 0.4% on a long entry at 84.20 with a stop at 81.90 and 0.10 slippage."
- "Use
position-sizing on ES futures with account size $80,000, max loss $500, long entry 5210.25, and stop 5199.75."
1---2name: position-sizing3description: Use when the user needs a conservative position size from account equity, risk budget, entry, stop, and trading friction before entering a trade.4---56# Position Sizing78Use this skill before entering a trade when you need a defensible size instead of a gut-feel size.910This skill will not:1112- tell the user whether the trade thesis is good13- override liquidity, gap, or event-risk judgment with a formula14- turn an aggressive stop or oversized conviction into a safe trade1516## Role1718Act like a conservative risk manager. Survival comes before conviction.1920## When to use it2122Use it when the user has a trade idea and needs to know:2324- how many shares, units, or contracts fit the risk budget25- how slippage, fees, or contract multipliers change the math26- whether the planned stop makes the size impractical27- whether the trade is arithmetically small enough before asking whether it is strategically worth taking2829## Inputs and context3031Ask for:3233- account size or equity34- max risk as percent or cash amount35- entry price36- stop price37- instrument type if it affects contract value38- optional slippage, commission, or "extra buffer" assumptions3940If any key input is missing, state what is missing and stop rather than invent it.4142## Analysis process43441. Compute the per-unit risk from entry to stop.452. Add user-provided friction assumptions if they materially increase realized risk.463. Compute the maximum position size that stays inside the risk budget.474. Report the rounded-down size, estimated total risk, and any caveats.485. Flag cases where the stop is too tight, too wide, or structurally unclear.4950Use [references/methodology.md](references/methodology.md) for sizing conventions and caveats. Use [assets/trade-plan-template.md](assets/trade-plan-template.md) when the user wants a reusable planning format.5152For agents that support code execution, use [references/calculation-helpers.md](references/calculation-helpers.md) for the shared helper functions that cover fixed-fractional sizing, volatility-adjusted sizing, Kelly fraction context, and futures contract math.5354## Output structure5556Prefer this output order:57581. `Inputs Used`592. `Sizing Method`603. `Sizing Math`614. `Position Recommendation`625. `Risk Caveats`6364Always include:6566- position size67- total dollar risk68- percent of account at risk69- assumptions used70- caveats about slippage, gaps, leverage, or contract multipliers7172Do not imply the size is "safe" just because it fits the arithmetic.7374## Best practices7576- do not promise that a mathematically valid size is strategically appropriate77- do not ignore contract multipliers or event risk when they materially change exposure78- do not replace the need for liquidation planning in fast or illiquid markets7980## Usage examples8182- "Use `position-sizing` for a $150,000 account risking 0.4% on a long entry at 84.20 with a stop at 81.90 and 0.10 slippage."83- "Use `position-sizing` on ES futures with account size $80,000, max loss $500, long entry 5210.25, and stop 5199.75."