π What is a Wavelet Transform in trading research?
Wavelet Transform is a mathematical tool that breaks down a price series into different frequency components β but localized in time.
-
Think of it like a microscope for charts:
it helps you zoom into different time scales at different moments. -
Unlike a Fourier Transform (which gives you only overall cycle/frequency info but loses time info),
Wavelet Transform keeps both:
β what frequencies exist
β and when they occur.
π§ In simple words:
Fourier Transform | Wavelet Transform | |
---|---|---|
Focus | Frequencies only (global) | Frequencies + when they happen (local) |
Good for | Finding cycles in stationary data | Finding dynamic cycles, bursts, volatility clusters |
Problem | Loses time info | Keeps time info |
π οΈ In trading research, people use Wavelet Transforms to:
-
Detect trend shifts (because different wavelet levels show trends vs noise separately)
-
Find cyclical patterns that aren’t constant (adaptive cycles)
-
Denoise price data (removing useless small noise while keeping important swings)
-
Study volatility clustering (volatility isn’t constant over time)
-
Create better technical indicators (wavelet-smoothed moving averages, wavelet-based MACD, etc.)
-
Improve forecasting models (input clean data into Machine Learning models)
π₯ Example use case:
You have messy 1-minute Bitcoin prices.
You apply a Wavelet Decomposition, and split it into:
-
Low-frequency component β main market trend
-
High-frequency components β noise, mean-reversion, short-term spikes
Then you can:
-
Trade the trend using low-frequency wavelet
-
Mean-revert scalp using high-frequency spikes
-
Filter out noise when building models
β‘ Types of Wavelet Transforms traders explore:
-
Discrete Wavelet Transform (DWT)
β breaks the signal into fixed layers/scales -
Continuous Wavelet Transform (CWT)
β more detailed but computationally heavier -
Wavelet Packet Transform (WPT)
β deeper decomposition (both approximation and detail levels are split)
Mostly, DWT is practical for trading because it’s fast enough.
π Good references if you want to dive deeper:
-
“Wavelet Applications in Financial Engineering” (academic papers)
-
People like Tucker Balch (early ML trading research) used wavelets in their strategies.
-
Some hedge funds have used wavelet preprocessing before feeding prices into neural networks.