Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 테슬라 #tesla #ai #퀀트
- >
- 틱
- 실전 금융 머신 러닝 완벽 분석
- 틱데이터
- 금융딥러닝
- AFML
- 금융머신러닝
- 아비트라지랩 #arbitragelab #아비트라지 #arbitrage #residual #reversion #residualreverstion #hudsonthames #허드슨
Archives
- Today
- Total
알파트로스
[AFML] 2.3.1 Financial Data Structures - Standard Bars 본문
Advances in Financial Machine Learning
[AFML] 2.3.1 Financial Data Structures - Standard Bars
알파트로스 2021. 7. 17. 02:31In order to apply ML algorithms on your unstructured data, we need to parse it, extract valuable information from it, and store those extractions in a regularized format.
2.3.1 Standard Bars
The purpose of these method is to transform a series of observations that arrive at irregular frequency (often referred to as 'inhomogeneous series') into a homogeneous series dereived from regular sampling
2.3.1.1 Time Bars
- sampling information at fixed time intervals
- most popular but they should be avoided
- markets do not process information at a constant time interval
> the hour following the open is much more active than the hour around noon
> oversample information during low-activity periods - exhibit poor statistical properties, like serial correlation, heteroscedasticity and non-normality of returns
코스피200 Time Bars 예시
2.3.1.2 Tick Bars
- extracted each time pre-defined number of transactions take place. this allows us to synchronize sampling with a proxy of information arrival
- many studies have confirmed that sampling as a function of trading activity allows us to achieve returns closer to IID Normal : This is important, because many statistical methods rely on the assumption that obsevations are drawn from an IID Gaussian process. Intuitively, we can only draw inference from a random variable that is invariant
- when constructing tick bars, need to be aware of outliers. Many exchanges carry out an auction at the open and an auction at the close
2.3.1.3 Volume Bars
- sampling every time a pre definded amount of the security's units have been exchanged
- volume achieved even better statistical properties than sampling by tick bars
- several market microstructure theories study the interaction between prices and volumes
2.3.1.4 Dollar Bars
- sampling an observation every time a pre-definded market value is exchanged
- robust in the face of corporate actions
# 틱 바 볼륨바 달러바의 평균 갯수 그려보기 정리하기