What is the biggest risk with AI-generated trading bots?
Bad logic, poor risk management, overfitting, or users not understanding the code?
If your prompt is a blank slate, AI generates useless boilerplate/generic trading logic, e.g., an SMA(10), and SMA(20), and the rest is left to your "discretion."
AI can't analyze tick nor OHLC data, so good luck getting meaningful stoploss/risk parameters from AI.
Overfitting is a byproduct of machine learning or optimization. In the case of machine learning, you presumably asked AI for some form of it. In the case of optimization, AI can't backtest on tick nor OHLC data so it's all on you in your backtesting. In either case, the GIGO principle applies─garbage in, garbage out.
There are AI engines that generate detailed code comments which should, at least, help you understand the code.
If your prompt is a blank slate, AI generates useless boilerplate/generic trading logic, e.g., an SMA(10), and SMA(20), and the rest is left to your "discretion."
AI can't analyze tick or OHLC data, so good luck getting meaningful stoploss/risk parameters from AI.
Overfitting is a byproduct of machine learning or optimization. In the case of machine learning, you presumably asked AI for some form of it. In the case of optimization, AI can't backtest on tick or OHLC data so it's all on you in your backtesting. In either case, the GIGO principle applies─garbage in, garbage out.
There are AI engines that generate detailed code comments which should, at least, help you understand the code.
In short, something will be missing.
When there are too many interactions, she can very easily forget or mix them up.
In short, something will be missing.
- What do you look at for as a signal when swing trading?
- What metrics do you use to decide your SL?
The biggest risk nobody talks about is overfitting. A bot can look perfect on backtests and fail completely in live markets because it was optimized for past data not future conditions. I learned this the hard way building and testing my own EAs on XAUUSD. The strategy that made 50% in backtests lost money live within weeks. The market conditions that trained it simply stopped repeating. Now I treat any backtest result with suspicion until it survives at least 3 different market conditions — trending, ranging, and high volatility.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
What is the biggest risk with AI-generated trading bots?
Bad logic, poor risk management, overfitting, or users not understanding the code?