At first glance, there seems to be no connection. TradingView is one of the most reliable cloud trading platforms available. However, once alerts leave TradingView and travel through connectors into MetaTrader 5, the final execution depends entirely on MT5 terminal permissions. That is exactly where Error 4752 appears.
This article explains what MT5 Error 4752 means, why it commonly appears when TradingView alerts are automated through a connector, and exactly which MetaTrader 5 settings must be enabled to allow execution.
In automated trading setups the execution pipeline normally looks like this:
Everything may appear to work correctly until the final step. The signal reaches MetaTrader 5, but the order request is rejected with a single line in the terminal logs: Error 4752.
Error 4752 corresponds to the MetaTrader code:
ERR_TRADE_DISABLED
In practical terms it means only one thing: trading by Expert Advisors is disabled.
This is not a TradingView issue, not a connector outage, and not a webhook transport failure. It is a restriction inside the MT5 terminal that blocks automated trading. Manual orders may still work normally, which is why this error often confuses users.
When trades are placed manually, MetaTrader 5 only verifies whether the account is allowed to trade the symbol. When alerts are automated, the final order is executed by an Expert Advisor, and MT5 applies an additional layer of permissions.
This is why the pipeline frequently looks like this:
Error 4752 almost always comes from one of these MetaTrader configuration points:
The first setting to verify is the global automation switch.
If the global automation button is disabled, every EA inside the terminal is blocked regardless of connector status.
Once this is done, test the alert again and check the terminal logs.
This is one of the most common causes. The terminal may allow algo trading globally, but the EA itself may still be blocked on the chart.
When Error 4752 occurs, MetaTrader logs always contain the exact reason.
Typical messages include:
Trading by Expert Advisors prohibited
AutoTrading disabled by client terminal
If you need to resolve the problem quickly, verify these four items:
The connection between TradingView alerts and Error 4752 is not that TradingView failed. The alert simply triggers an automated execution path, and MetaTrader 5 may block that path if algo trading permissions are disabled.
Error 4752 is MetaTrader saying: Expert Advisors are not allowed to trade. The fix is almost always located in three places: the global Algo Trading button, MT5 Expert Advisor settings, and EA permissions on the chart.