금융 시장의 데이터는 매우 낮은 신호대잡음비(Low Signal-to-Noise Ratio)와 비정상성(Non-stationarity)이라는 특징을 가집니다. AI는 과거의 패턴이 미래에도 반복될 것이라는 가정을 바탕으로 최적의 의사결정 경계를 찾아냅니다.
Financial market data is characterized by a low signal-to-noise ratio and non-stationarity. AI finds optimal decision boundaries based on the assumption that past patterns will repeat in the future.
원시 가격 데이터를 기술적 지표(RSI, MACD), 수급 데이터, 거시 경제 지표 등으로 변환합니다. 모델이 시장의 노이즈를 걸러내고 유의미한 신호를 학습할 수 있도록 가공하는 핵심 단계입니다.
Transforms raw price data into technical indicators (RSI, MACD), supply/demand data, and macro indicators. This is a critical step to help the model filter market noise and learn meaningful signals.
과거 특정 시점의 데이터(X)와 일정 시간 경과 후의 실제 수익률(y)을 매핑하여 학습합니다. 어떤 기술적 지표 조합에서 가격이 상승하거나 하락할 확률이 높은지 통계적 패턴을 찾아냅니다.
Learns by mapping past data points (X) to actual returns (y) after a certain period. It identifies statistical patterns to determine which indicator combinations correlate with price movements.
단일 모델의 한계를 극복하기 위해 서로 다른 특성을 가진 두 가지 AI 모델을 결합하여 예측의 정밀도를 높입니다.
To overcome the limitations of a single model, two AI models with different characteristics are combined to increase prediction precision.
의사결정 나무 기반의 부스팅 모델로, 수백 개의 지표들 사이의 비선형적 관계를 빠르게 찾아냅니다. 특히 특정 수치(예: RSI 30 이하)가 매수 신호로서 가지는 임계값(Threshold)을 포착하는 데 매우 강력하며, 학습 속도가 빨라 대규모 데이터 처리에 적합합니다.
A boosting model based on decision trees that quickly finds non-linear relationships among hundreds of indicators. It is particularly powerful at capturing thresholds (e.g., RSI below 30) as buy signals and is suitable for large-scale data due to its fast learning speed.
데이터의 순서와 시간적 맥락을 기억하는 순환 신경망(RNN)의 일종입니다. 단순히 현재의 지표 수치뿐만 아니라, 최근 며칠간의 가격 흐름이 어떠했는지 '기억'하여 추세의 강도와 지속성을 판단합니다. 이는 시장의 급격한 변곡점을 감지하는 데 도움을 줍니다.
A type of Recurrent Neural Network (RNN) that remembers the sequence and temporal context of data. It 'remembers' recent price flows to judge trend strength and persistence, helping to detect sudden market pivot points.
이론적으로 모든 정보는 즉각 가격에 반영되지만, 실제로는 정보의 비대칭성, 인간의 심리(행동재무학), 알고리즘의 반응 속도 차이로 인해 일시적인 비효율성(Alpha)이 발생합니다. 자동매매는 이 틈을 공략합니다.
Theoretically, all information is immediately reflected in prices, but in reality, temporary inefficiencies (Alpha) occur due to information asymmetry, human psychology (Behavioral Finance), and differences in algorithm reaction speeds. AutoTrade targets these gaps.
| 이론 | Theory | 핵심 가정 | Core Assumption |
|---|---|---|---|
| 평균 회귀 | Mean Reversion | 가격은 내재 가치나 평균으로 돌아온다. | Price returns to intrinsic value or mean. |
| 추세 추종 | Trend Following | 움직이는 방향으로 계속 가려는 성질이 있다. | Price tends to keep moving in its current direction. |
이론의 함정: 아무리 완벽한 이론과 높은 백테스트 수익률이라도 실전에서의 슬리피지와 체결 오차를 반영하지 못하면 실패합니다. 이론은 도구일 뿐, 생존은 리스크 관리에 달려 있습니다.
Theoretical Trap: Even the most perfect theory and high backtest returns will fail if they don't account for live slippage and execution errors. Theory is just a tool; survival depends on risk management.