u/Hornstinger ·
Reddit — r/algotrading
· 2026년 6월 19일, 09:27
· ⬆ 15 포인트
· 💬 55 개 댓글
| Reddit에서 보기 ↗
AI 요약
=== 요약 ===
- 저자가 개인 알고리즘 트레이딩 인프라를 설명: VPS, 터미널 멀티플렉서, 프로세스 매니저, OCaml 프로그래밍 언어.
- 시장 테제, 전략 세부사항 또는 특정 거래 아이디어는 제시되지 않음.
- 이는 소음—투자 분석 없이 순수 기술 설정 논의.
=== 시장 심리 ===
중립
=== 거래 아이디어 ===
이 게시물에는 실행 가능한 거래 아이디어가 없음.
점수15
댓글55
추천 %82%
▶ 전체 게시글 텍스트
Interested to hear other people's tech stacks.
​
Here's mine:
​
\- VPS using Rocky Linux 4GB RAM and 2vCPUs. Approx $20-30/month cost.
​
Note: I found my VPS terminal to use 256 colours/8-bit so I must make sure any app doesn't use "true colour/24-bit" otherwise the app will crash so I must default everything to 256 colours.
​
\- byobu which is a tmux wrapper and easier to use than directly using tmux IMO. I use this so my instances don't go down when I close the VPS https://byobu.org/
​
\- process-compose to launch all of my instances (I have one instance per symbol so one symbol crashing doesn't take down multiple symbols) and all built into one's own process-compose YAML file with auto-crash restart, log rotation and more: https://github.com/F1bonacc1/process-compose
​
Note: I launch byobu and inside it run process-compose
​
\- algo programming language: OCaml (+ OxCaml)
​
\- Internally rate limit price updates to every 500ms. I don't need high frequency price updates which would unnecessarily increase CPU/memory usage for no extra benefit.
​
That's basically it. CPU and memory usage are very stable and more than enough headway to manage spikes.