u/DoomsdayMcDoom ·
Reddit — r/algotrading
· 2026년 5월 21일, 23:12
· ⬆ 16 포인트
· 💬 41 개 댓글
| Reddit에서 보기 ↗
AI 요약
=== 요약 ===
- 이 게시물은 GCP를 사용한 알고리즘 트레이딩 시스템 설계를 설명하며, 모든 시간대에 걸쳐 20년간의 과거 데이터를 저장하고 수백 개의 피처 테이블을 구축합니다.
- 저자는 파이프라인 효율성과 비용에 중점을 두고 있으며, 특정 거래 아이디어나 시장 방향에 대해서는 언급하지 않습니다.
- 품질 평가: 이는 투자 분석이나 실사가 아닌 기술 인프라 논의입니다. 거래 관점에서 노이즈에 해당합니다.
=== 심리 ===
중립
=== 거래 아이디어 ===
이 게시물에는 실행 가능한 거래 아이디어가 없습니다.
점수16
댓글41
추천 %84%
▶ 전체 게시글 텍스트
Anyone care to share some tips on system design?
I finally went to GCP with 20 years of historic data across all time frames from 1 second to 1 quarter. I loaded the raw data to a storage bucket for my data lake.
For another layer I have hundreds of feature tables across all time frames joined on the key ticker/contract, timeframe, window start, window close, and date.
I then built a massively wide feature table across all timeframes. For realtime data I’m using dataflow/apache beam orchestrated with airflow.
I’m using this data to locate repeatable signals across timeframes and a combination of features. Once a repeatable signal is found I build it into the neural network for regime detection but if it’s repeatable between multiple timeframes I have a separate neural network on those time frames.
My issue is building the features and gold layer is taking forever. I mean multiple days using cloud run and it’s costing quite a bit. I tried loading the data into bigquery and building the gold layer there but it’s a lot more expensive than cloud run.
I’m open to suggestions on how to improve my pipeline and I’m curious as to what system design many of you are using?