Suggest Stops
suggest_stopsGenerate ATR-based risk plan with stop-loss, take-profit, breakeven, and trailing levels for a long or short entry, using current market price if no entry is provided.
Instructions
ATR-based risk plan: stop-loss, take-profit, breakeven trigger and trailing level for a long/short entry. Agent-managed position helper. Unknown ticker (no oracle price) raises an error (MCP isError); returns {"error": ...} when no ATR is available (thin market). All output prices are in market price units: stop_loss / take_profit sit atr_mult_sl / atr_mult_tp x ATR(14) from entry (entry defaults to the current oracle price); breakeven_after is the price at +1 ATR in profit (then move SL to entry and trail by 1 ATR); risk_reward = TP distance / SL distance. Example: suggest_stops(ticker="BTC-USD", side="LONG", atr_mult_sl=1.5)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| side | Yes | ||
| entry | No | ||
| ticker | Yes | ||
| resolution | No | 1HOUR | |
| atr_mult_sl | No | ||
| atr_mult_tp | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||