Pressure-test the risk before you automate the signal.
Model one TradingView entry without creating an account. This sandbox calculates position size, margin, a 2R target, and the guardrails that would accept or reject the order.
Nothing here is sent, saved, or executed. This is an educational paper preview.
Configure the paper signal
Risk gate: ready for paper
Every blocking check passes. This still says nothing about whether the strategy is profitable.
Risk budget
100 USDT
Stop distance
2 %
Position quantity
0.07692308 BTC
Position notional
5,000 USDT
Margin required
1,666.67 USDT
2R target
67,600
Guardrail checks
All inputs are positive and usable
Blocking
Stop is on the protective side of entry
Blocking
Risk does not exceed the 5% hard cap
Blocking
Risk is at or below the 2% discipline marker
Advisory
Leverage does not exceed 10×
Blocking
Position notional stays under your cap
Blocking
Required margin fits inside paper equity
Blocking
TradingView webhook preview
This mirrors the standard payload shape. The real builder generates a unique webhook URL and a secret shown once.
{
"secret": "YOUR_WEBHOOK_SECRET",
"action": "entry",
"side": "buy",
"symbol": "BTCUSDT",
"order_type": "market",
"risk_percent": 1,
"leverage": 3,
"stop_loss_percent": 2,
"take_profit_percent": 4,
"timestamp": "{{timenow}}"
}Placeholder only — never paste a real secret into a public or shared document.
How the calculation works
Risk budget = equity × risk %. Quantity = risk budget ÷ stop distance. Margin = notional ÷ leverage. Fees, slippage, liquidity, funding, and gaps are not modeled in this quick preview.
Build the real paper bot