In machine learning, tasks are usually defined as predicting the next n periods’ price movement, returns, or volatility.
But in trading, the problem structure is more complex, with at least four decision layers:
This means even with high prediction accuracy, stable returns may not materialize.
A typical scenario: the model correctly identifies most small movements but repeatedly fails during rare large swings, with tail losses erasing accumulated profits.
Therefore, the first conclusion of Lesson 3 is: signal value comes from “executability,” not a single prediction metric.
Rule-based models are built on clear logic, such as “breakout + volume confirmation + risk filter.”
They feature strong interpretability, fast deployment, and low debugging costs.
Their limitation is weak ability to capture complex nonlinear relationships and require manual rule reconstruction when market structures change.
Machine learning approaches learn nonlinear relationships via multiple factors, commonly seen in tree models, time-series models, and probabilistic scoring models.
The advantage is handling higher-dimensional inputs and uncovering combinations beyond manual rules.
Risks include overfitting, reduced interpretability, and higher strategy maintenance thresholds.
Hybrid frameworks typically use “rule constraints + model ranking” or “model timing + rule execution.”
This path is more common in practice because it balances flexibility and robustness:
In most intermediate trading systems, hybrid frameworks are more sustainable than pure rule or pure model approaches.
Defining labels as “future up/down” is often too crude. Practical designs usually include three target layers:
These layers have distinct roles:
This upgrades a single prediction task to a layered decision system, significantly reducing the odds of “correct direction but losing trades.”
Model outputs are usually probabilities or scores—not direct buy/sell commands.
Signal implementation hinges on threshold management and tiered execution:
The core idea is “signal layering,” not “equal weighting.”
If all signals are executed equally, it leads to noisy trades, fee erosion, and excessive turnover.
Mature systems focus on net signal quality—reducing low-quality trades and boosting per-trade effectiveness.
Tradable signal evaluation should cover five dimensions:
If a signal excels only in prediction metrics but fails trading or execution dimensions, it lacks live trading value.
Many “great in backtest but fail live” strategies stem not from the model itself but from missing the signal-to-trade mapping chain.
Live trading failures typically stem from three types of shifts:
Thus, signal systems must have failure monitoring mechanisms such as:
When thresholds are triggered, reduce frequency/leverage or pause to avoid compounding losses during failure windows.
Compared to traditional markets, crypto’s advantage is simultaneous observation of price action, derivatives positions, and on-chain fund flows.
For example, common composite signals include:
This structure may indicate trend reinforcement—or fragile surges after high leverage crowding.
Therefore, directional signals must pair with risk filters:
Only after passing risk filters does the signal gain higher execution value.
The course recommends an iterative “small system first” approach rather than aiming for complex architecture immediately. Executable steps:
Core advantages are diagnosability, replayability, iterability—consistently reducing uncertainty from black-box decisions.
This lesson focused on “How AI generates tradable signals.” Key conclusions include:
Key takeaway: Predictability does not equal tradability; signal value is determined by execution quality and risk control together.
The next lesson will move into the next step of a complete closed loop: strategy automation—from backtesting to live trading—focusing on how to engineer signal systems for continuous operation.