Skip to main content

Playground

Build trading signals visually with a form, then copy to TradingView. The Playground is a visual command builder — no need to memorize signal syntax. Just select action, fill fields, and get perfectly formatted signal text.

What is the Playground?

A visual form that generates signal text for you. Instead of typing:
BUY, EURUSD, VOL=0.1, SL=20, TP=40, TPSLType=PIPS
You just:
  1. Select “BUY” button
  2. Enter “EURUSD” in Symbol field
  3. Enter “0.1” in Volume
  4. Enter “20” in SL, “40” in TP
  5. Select “PIPS” for TP/SL Type
  6. Copy generated command

How to Use

1

Go to Automation → Playground

Click “Automation”“Playground”
2

Select action

Choose from 9 command types:
  • BUY / SELL (market orders)
  • BUYLIMIT / SELLLIMIT (pending limits)
  • BUYSTOP / SELLSTOP (pending stops)
  • MODIFY (update SL/TP)
  • CLOSE (close position)
  • CLOSEALL (close all)
3

Fill parameters

Form fields change based on selected actionEnter symbol, volume/risk, SL/TP, etc.
4

Copy command

Right panel shows live previewClick Copy button → Command copied to clipboard
5

Paste in TradingView

Paste into TradingView alert message field✅ Signal ready to use!

Command Types

Market Orders

BUY - Open long position at market price Fields:
  • Symbol (required)
  • Volume OR Risk %
  • Stop Loss (optional)
  • Take Profit (optional)
  • TP/SL Type (PRICE or PIPS)
  • Magic Number (optional)
  • Comment (optional)
Example output:
BUY, EURUSD, VOL=0.1, SL=20, TP=40, TPSLType=PIPS

SELL - Open short position at market price Same fields as BUY, just opposite direction. Example output:
SELL, GBPUSD, RISK=2, SL=30, TP=60, TPSLType=PIPS

Pending Orders

BUYLIMIT - Pending buy limit order (buy below current price) Additional field:
  • Entry Price (required) - Price to trigger order
Example output:
BUYLIMIT, EURUSD, PRICE=1.0850, VOL=0.1, SL=20, TP=40, TPSLType=PIPS

SELLLIMIT - Pending sell limit (sell above current price) Example output:
SELLLIMIT, EURUSD, PRICE=1.0950, VOL=0.1, SL=20, TP=40, TPSLType=PIPS

BUYSTOP / SELLSTOP - Pending stop orders
  • BUYSTOP: Buy above current price (breakout)
  • SELLSTOP: Sell below current price (breakdown)

Modify Existing Trade

MODIFY - Update SL/TP on existing position Fields:
  • Symbol (required)
  • Ticket ID (optional - modify specific ticket)
  • New Stop Loss
  • New Take Profit
  • TP/SL Type
Example output:
MODIFY, EURUSD, SL=1.0900, TP=1.0950, TPSLType=PRICE

Close Positions

CLOSE - Close position (full or partial) Fields:
  • Symbol (required)
  • Close Percent (default: 100%)
  • Ticket ID (optional)
  • Side (BUY/SELL/Both)
  • Magic Number (optional)
Example output (partial close):
CLOSE, EURUSD, SIDE=BUY, PERCENT=50
Example output (close all EURUSD buys):
CLOSE, EURUSD, SIDE=BUY

CLOSEALL - Close all positions Fields:
  • Symbol (required)
Example output:
CLOSEALL, EURUSD

Key Features

Live Preview

Right panel shows generated command in real-time. As you type → Command updates instantly. Copy button appears on hover → One click to copy.

TP/SL Type Toggle

Two modes: PRICE - Absolute price levels
SL=1.0850, TP=1.0950, TPSLType=PRICE
  • SL at exactly 1.0850
  • TP at exactly 1.0950
PIPS - Pip distance from entry
SL=20, TP=40, TPSLType=PIPS
  • SL 20 pips below entry
  • TP 40 pips above entry
Use toggle to switch between modes.

Volume vs Risk %

Mutually exclusive - choose one: VOL=0.1 - Fixed lot size (always 0.1 lot) RISK=2 - Risk 2% of balance (requires SL) Playground enforces this: Entering volume clears risk, and vice versa.

Quick Documentation

Right panel shows:
  • Parameter reference
  • Example signals
  • Quick tips
No need to memorize syntax — it’s all there.

Use Cases

New to TradeWzrd?Use Playground to explore:
  • What parameters exist?
  • How do they combine?
  • What does output look like?
Playground = interactive tutorial
Before using in TradingView:
  1. Build signal in Playground
  2. Copy command
  3. Test in demo account
  4. Verify trades execute correctly
  5. Then use in live TradingView alerts
Scenario: You need pending order with precise SL/TPInstead of typing (error-prone):
BUYLIMIT,EURUSD,PRICE=1.0850,VOL=0.1,SL=1.0830,TP=1.0900,TPSLType=PRICE
Just fill form → Get perfect syntax
Alert failing in TradingView?
  1. Paste signal into Playground (reverse-engineer)
  2. See what fields it maps to
  3. Spot the error
  4. Fix and regenerate

Tips

For beginners: Use Playground for every signalAfter 10-20 signals: You’ll memorize syntax naturallyAdvanced users: Type signals directly (faster)Playground always available when you forget syntax
Create a few template signals:
  • Scalp template: BUY, {SYMBOL}, VOL=0.01, SL=10, TP=20, TPSLType=PIPS
  • Swing template: BUY, {SYMBOL}, RISK=2, SL=50, TP=150, TPSLType=PIPS
Save in notes → Just swap {SYMBOL} when using
What happens if:
  • I don’t set SL/TP?
  • I use 0.001 lot (micro)?
  • I set TP without SL?
Playground shows exactly what signal is generated

Limitations

Playground is for building signals only — it doesn’t execute trades. To execute:
  1. Build signal in Playground
  2. Copy command
  3. Either:
    • Paste in TradingView alert
    • Send to webhook via Postman/cURL
    • Use Playground + webhook testing (coming soon)

Keyboard Shortcuts

ActionShortcutNotes
Copy commandCmd+C / Ctrl+CWhen preview is focused
Clear all fieldsComing soon
Switch command typeComing soon

Next Steps