Connect TradingView to Jimmy
Start or refresh your private-beta browser session, then reopen TradingView Setup. The Paper route stays hidden here until you issue a display-once Paper Mode secret.
Private strategy quick start
start hereOne simple private-strategy setup is all most traders need. Use our refined strategies, keep your TradingView chart open, and let Jimmy watch the Paper Mode signal before any funded review.
- Send your TradingView username so we can grant the private strategy.
- Open the private strategy we granted to your TradingView username.
- Pick the same strategy inside My Jimmy.
- Copy the Jimmy webhook URL below into the TradingView alert.
- Message stays empty for private strategies. Do not paste JSON for these scripts.
- Set notifications to Alert Function Calls Only.
- Launch Jimmy in Paper Mode, then send one TradingView test alert.
Ready private strategy lanes
JimmyDesk refinedPaper Mode only
safety ruleThis setup confirms Jimmy can receive Paper Mode alerts. It does not send broker orders, does not ask for trading-account passwords, and does not enable live trading.
Advanced custom payloads
Only for Bring your own strategy users after JimmyDesk maps the custom strategyBring your own strategy payload
advancedPrivate JimmyDesk strategies do not use this box. This receiver shape is only for custom Pine Script alerts after we map your custom strategy in My Jimmy. Review the Payload Guide before using custom payloads.
{
"eventType": "paper_signal",
"ingressSecret": "{{PRIVATE_BETA_PAPER_SIGNAL_SECRET}}",
"payload": {
"signalId": "{{unique_signal_id}}",
"strategySlug": "ote-silver-bullet",
"symbol": "{{ticker}}",
"side": "long",
"price": {{close}},
"source": "tradingview",
"receivedAt": "{{timenow}}"
}
}AI prompt for custom Pine
advancedUse this prompt only when adapting your own Pine Script. Do not use it for JimmyDesk private strategies; those keep Message empty.
You are helping me adapt my own custom TradingView Pine Script alerts for JimmyDesk Paper Mode.
Goal:
- Keep my existing strategy logic intact.
- Do not add broker execution or live-order code.
- Only prepare a custom alert message after JimmyDesk maps this custom strategy.
Advanced custom payload target:
{
"eventType": "paper_signal",
"ingressSecret": "{{PRIVATE_BETA_PAPER_SIGNAL_SECRET}}",
"payload": {
"signalId": "{{unique_signal_id}}",
"strategySlug": "ote-silver-bullet",
"symbol": "{{ticker}}",
"side": "long",
"price": {{close}},
"source": "tradingview",
"receivedAt": "{{timenow}}"
}
}
Rules:
1. Use this only for Bring your own strategy work. JimmyDesk private strategies leave the Message box empty.
2. Create a unique signalId for every alert.
3. Use strategySlug "ote-silver-bullet" only if JimmyDesk has mapped the custom strategy to that selected lane.
4. symbol should come from TradingView ticker/syminfo.
5. side must be exactly "long" or "short".
6. price should use the close/entry price available in the script.
7. Do not include broker keys, account numbers, private keys, live-order flags, or execution commands.
8. Return the exact Pine Script changes and the final custom alert message.
Here is my current Pine Script strategy:
[PASTE MY PINE SCRIPT HERE]