JimMY / TradingView Alert
--:--:-- UTCPAPER SETUP
Setup · Step 01

Connect TradingView to Jimmy

Private strategy quick start: pick the strategy we granted to your TradingView username, paste your Jimmy webhook URL, leave Message empty, and send one Paper Mode test alert.
TradingView setup data unavailable

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.

Selected strategy
Decrypt Labs (OTE)
match this in My Jimmy and TradingView
Webhook
NEEDED
paste the full HTTPS URL
Message
EMPTY
private strategies own the alert body
Safety
PAPER ONLY
no live order is sent

Private strategy quick start

start here

One 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.

  1. Send your TradingView username so we can grant the private strategy.
  2. Open the private strategy we granted to your TradingView username.
  3. Pick the same strategy inside My Jimmy.
  4. Copy the Jimmy webhook URL below into the TradingView alert.
  5. Message stays empty for private strategies. Do not paste JSON for these scripts.
  6. Set notifications to Alert Function Calls Only.
  7. Launch Jimmy in Paper Mode, then send one TradingView test alert.

Ready private strategy lanes

JimmyDesk refined
Decrypt Labs (OTE)
Fastest private-strategy setup path for the Decrypt Labs OTE lane.
ready
Decrypt Labs (IFVG FVG)
Structure lane for the private Decrypt Labs (IFVG FVG) alerts.
ready
Decrypt Labs (OTE Refined S)
Refined setup path for Decrypt Labs (OTE Refined S).
ready
Decrypt Labs (OTE Refined L)
Refined setup path for Decrypt Labs (OTE Refined L).
ready

Paper Mode only

safety rule

This 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 strategy

Bring your own strategy payload

advanced

Private 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

advanced

Use 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]