Execute Your Intraday Strategies
At Machine Speed
Never miss an entry or exit again. Automate your TradingView strategies with millisecond execution on ES, NQ, and all futures contracts.
Why Manual Day Trading Fails
In day trading, milliseconds matter. Here's what's costing you money:
Human Reaction Time
Average time to recognize a signal and click
Order Entry Time
Finding the right button, typing quantity
Missed Trades
Bathroom, phone call, looked away
PickMyTrade Speed
Alert to execution, fully automated
Built for Intraday Trading
TradingView Strategy Automation
Connect any TradingView strategy or indicator. When your strategy triggers an alert, PickMyTrade executes the trade instantly.
- Works with Pine Script strategies
- Works with indicator-based alerts
- Dynamic TP/SL from plot values
Multiple Stop Loss Methods
Choose the stop loss method that matches your trading style and risk management approach.
- sl (ticks): 50 ticks = 12.5 points on ES
- dollar_sl: Fixed $500 risk per trade
- percentage_sl: 2% from entry price
News Filter Protection
Automatically pause trading during high-impact economic events. Avoid volatile spikes that can destroy your day.
- Block NFP, CPI, FOMC announcements
- Configure buffer time (5 min before/after)
- Existing positions stay protected
Reverse Order Close
For indicator-based systems that continuously flip between long and short positions.
- true: Close long → Open short automatically
- false: Close only, no new position
- Perfect for trend-following systems
Dynamic TP/SL from TradingView
Use your strategy's calculated levels instead of fixed values. ATR-based stops, Fibonacci targets, volatility-adjusted exits - all automated.
Plot Variables in Pine Script
Use plot() with display.none to expose calculated values
Reference in Alerts
Use {{plot("TP_Price")}} and {{plot("SL_Price")}} placeholders
Executed Automatically
PickMyTrade reads live values when alert fires
// Calculate dynamic levels
long_tp = close * 1.02 // 2% TP
long_sl = close * 0.98 // 2% SL
// Plot for alert access
plot(long_tp, title="TP_Price",
display=display.none)
plot(long_sl, title="SL_Price",
display=display.none)
// In PickMyTrade alert:
// tp: {{plot("TP_Price")}}
// sl: {{plot("SL_Price")}}
Break-Even & Trailing Stop
Lock in profits automatically as your trades move in your favor.
Auto Break-Even
Move your stop loss to entry price once trade reaches a defined profit level.
Example: Buy ES at 4500
- • Price reaches 4510 (+10 points)
- • Stop moves to 4500 (break-even)
- • Risk eliminated, upside unlimited
Configure break-even trigger level in your settings.
Dynamic Stop Updates
Trail your stop by sending periodic update alerts as price moves in your favor.
Using update_sl: true
- • Initial SL: 4490
- • Price reaches 4515
- • Send alert: update_sl → 4505
- • New SL replaces old automatically
Works with any trailing logic in your TradingView strategy.
Trading Time Settings
Control exactly when automation is active. Perfect for session-based strategies.
Session Windows
Trade only during specific hours. Example: 9:30 AM - 4:00 PM EST for regular session.
Exclude Days
Skip weekends, holidays, or specific days when your strategy underperforms.
End-of-Day Flatten
Automatically close all positions at a specific time. No overnight risk.
Trade Any Futures Contract
S&P 500
Nasdaq 100
Dow Jones
Russell 2000
Crude Oil
Gold
Plus MES, MNQ, MCL, MGC and all other CME futures contracts
Day Trading Questions
How fast is trade execution?
From TradingView alert to Tradovate order execution typically takes under 50 milliseconds. Compare that to 2-5 seconds for manual order entry.
Which stop loss method should I use?
Use sl (ticks) for technical level trading, dollar_sl for consistent dollar risk, or percentage_sl for volatility-based systems. Only use ONE method per alert.
Can I use both quantity and risk_percentage?
No. Use only one sizing method. Either fixed quantity (set quantity, keep risk_percentage = 0) or risk-based sizing (set risk_percentage, keep quantity = 0).
Should I edit the JSON code manually?
No! Never edit the JSON manually. Always use the exact code generated by PickMyTrade when creating alerts. Manual edits cause syntax errors.
Ready to Trade at Machine Speed?
Execute your day trading strategies with millisecond precision. No more missed trades.