Can I automate my TradingView strategy on Binance with PickMyTrade?
Yes. Go to pickmytrade.io, add Binance as your broker connection, and enter your Binance API key and secret. In PickMyTrade, go to Generate Alert to create your alert — you will receive a JSON payload and a webhook URL. Paste the JSON into the TradingView alert message box and paste the webhook URL into the TradingView webhook field. PMT supports Binance USDT-M Futures — spot trading is not supported. Full setup guide: https://docs.pickmytrade.io/docs/connect-binance-with-pickmytrade/
Does PickMyTrade support Binance.US?
Binance.US has a separate, more limited API than Binance global. PickMyTrade supports Binance global (binance.com) for USDT-M Futures — spot trading is not supported. If you are a US resident, check PickMyTrade's current broker list for Binance.US compatibility before subscribing, since Binance.US does not offer futures at all.
How much does PickMyTrade cost to automate Binance?
PickMyTrade is $50 per month per broker connection with unlimited alerts, strategies, and connected accounts. There is no per-trade fee from PickMyTrade itself. You still pay Binance's standard spot (0.1%) or futures (0.02%/0.05%) trading fees to the exchange.
How fast does PickMyTrade execute on Binance after a TradingView alert?
PickMyTrade targets sub-200ms end-to-end execution from TradingView alert to Binance order placement. Actual latency also depends on TradingView's alert delivery time and Binance's matching engine response. Physical distance between TradingView, PickMyTrade, and Binance servers affects speed, with Asia-routed flows typically being fastest.
How do I create a Binance API key for automated trading?
Log in to Binance, go to Account > API Management, click Create API, and choose System-generated. Give it a label like 'PickMyTrade', complete 2FA, then set permissions: enable 'Spot & Margin Trading' and/or 'Futures' depending on what you want to automate. Leave 'Enable Withdrawals' OFF. Copy the API Key and Secret immediately, because the Secret is only shown once.
What Binance API permissions should I enable for PickMyTrade?
Enable 'Enable Reading' (on by default) and 'Enable Spot & Margin Trading'. To automate futures, you also need 'Enable Futures'. Do NOT enable 'Enable Withdrawals'. PickMyTrade only needs to place orders, not move funds off the exchange.
Should I use IP whitelisting on my Binance API key?
Binance recommends it for security, but it can break third-party automation if the service uses dynamic IPs. If PickMyTrade provides a static IP list, whitelist those. Otherwise, leave the key unrestricted IP-wise and rely on the restricted permission set (no withdrawals) plus Binance's 90-day expiry for non-whitelisted trading keys.
Why does my Binance API key expire every 90 days?
Binance automatically expires the 'Enable Spot & Margin Trading' permission on API keys that do NOT have an IP whitelist. To avoid rotation every 90 days, either add an IP whitelist or set a calendar reminder to regenerate the key. Whitelisted keys do not expire.
Does PickMyTrade work with Binance Spot or only Futures?
PMT supports Binance USDT-M Futures — spot trading is not supported. You connect your Binance Futures account via API key in the PickMyTrade dashboard and automate USDT-M perpetual contracts.
Can I test my Binance automation on a demo or testnet account?
Binance demo and testnet accounts do not work with PickMyTrade. PickMyTrade connects to live Binance only. For pre-live testing, use TradingView's Paper Trading or a tiny live position (e.g., $10 notional) to validate your webhook before scaling up.
What does the webhook JSON look like for a Binance trade?
PickMyTrade uses a JSON payload inside the TradingView alert message. A typical Binance spot buy looks like: {"webhook_id":"YOUR_ID","symbol":"BTCUSDT","side":"BUY","quantity":"0.001","type":"MARKET"}. The exact schema is shown in your PickMyTrade dashboard and handles both spot and futures orders.
Can I automate leverage on Binance futures via PickMyTrade?
Yes. You set leverage per symbol in the Binance Futures interface (up to 125x on some pairs), and PickMyTrade's orders will use whatever leverage you have configured on that pair. Most automated strategies use 2x to 10x to limit liquidation risk.
Do I need a TradingView paid plan to automate Binance?
You need at least TradingView Essential (formerly Pro) to use webhooks, which is the mechanism PickMyTrade uses. Free TradingView accounts cannot send webhook alerts. Essential plans start around $15-20/month billed annually.
Can I run multiple Binance strategies on the same account?
Yes. PickMyTrade supports multiple strategies per Binance account. Each strategy has its own webhook URL, and you can assign different position sizes, symbols, and direction rules. Just be careful not to stack contradictory signals on the same symbol.
How do I handle stop loss and take profit on Binance with TradingView alerts?
Two options: (1) include SL/TP levels in your TradingView alert JSON and let PickMyTrade place bracket orders on Binance, or (2) manage exits inside your Pine Script with separate alerts for entry, stop, and target. Option 2 is more flexible for trailing exits.
Can I automate Binance from TradingView with PickMyTrade?
PMT supports Binance USDT-M Futures only — spot trading is not supported. In PickMyTrade, go to Generate Alert to create your alert — you will receive a JSON payload and a webhook URL. Paste the JSON into the TradingView alert message box and paste the webhook URL into the TradingView webhook field.
What happens if my TradingView alert fires while Binance is down?
Binance's API will reject the order and PickMyTrade will log the failure. The alert is not automatically retried indefinitely, so you may miss a fill during a Binance outage. Consider monitoring the PickMyTrade dashboard or enabling email/Telegram alerts on order failures.
Why is my Binance automated order rejected with 'insufficient balance'?
Common causes: (1) funds are in the wrong wallet (e.g., Spot vs Funding vs Futures), (2) your order size exceeds what BNB/USDT you hold after fees, (3) on futures, your margin is tied up in open positions. Transfer funds to the correct wallet and retry.
Can I copy someone else's Binance strategy with PickMyTrade?
PickMyTrade is an automation layer for YOUR own TradingView strategies or alerts, not a copy-trading service. If you want to follow another trader, Binance offers native Copy Trading inside its futures interface. For TradingView-based signal copying, you'd need the signal provider to share their indicator.
Does PickMyTrade support Binance margin trading (isolated/cross)?
PickMyTrade supports Binance USDT-M Futures only — spot trading is not supported. Cross and isolated margin are separate account types on Binance and are not supported for direct automation via PickMyTrade.
How do I avoid over-trading when my TradingView strategy repaints?
Use 'bar close' alerts in TradingView instead of 'once per bar' to prevent mid-bar repaints from firing live orders. Also cap daily trade count in your Pine logic. PickMyTrade will execute every webhook it receives, so filtering must happen in the alert logic, not after.
Can I run a grid or DCA bot on Binance through PickMyTrade?
PickMyTrade is signal-driven (one alert = one order), so pure grid bots are better handled by Binance's native Grid Trading feature or dedicated grid tools. You can approximate DCA by scheduling TradingView alerts on fixed time intervals, but Binance's built-in Auto-Invest is simpler for straight DCA.