플러그인 아키텍처 : extend, don't fork.
StratCraft 플러그인은 깔끔한 인터페이스 계약을 따릅니다. 표준 플러그인 인터페이스를 구현하여 새 데이터 소스, 최적화 알고리즘 또는 실행 어댑터 추가, 코어 엔진은 변경되지 않음.
거래소 연결, 고급 최적화 및 시스템틱 퀀트 패턴으로 StratCraft 확장: 코어 엔진을 건드리지 않고.
Exchange connectivity through the CCXT library.
Use CCXT-supported venue adapters where the installed plugin and venue capabilities permit. Availability does not imply live deployment approval.
포트폴리오 가중치를 위한 볼록 최적화.
The FrankWolfe algorithm supports constrained convex optimization research. Its outputs remain candidates for evaluation, not production portfolio approval.
르네상스에서 영감받은 시스템틱 퀀트 패턴.
Explore systematic research patterns such as signal normalization, correlation filtering, ensemble weighting, and regime-aware position sizing.
StratCraft 플러그인은 깔끔한 인터페이스 계약을 따릅니다. 표준 플러그인 인터페이스를 구현하여 새 데이터 소스, 최적화 알고리즘 또는 실행 어댑터 추가, 코어 엔진은 변경되지 않음.
타입화된 Plugin 프로토콜에 대해 하나의 Python 클래스를 구현하세요. 코어가 시작 시 이를 등록하고, Network 그래프에서 슬롯을 무료로 얻을 수 있습니다.
# Implement one class. Register it. Done. from stratcraft.plugin import Plugin, PluginKind, Bars, Signal @Plugin.register(kind=PluginKind.SignalSource) class MySignal(Plugin): name = "my-signal" version = "0.1.0" def setup(self, cfg: dict) -> None: self.window = cfg.get("window", 20) def on_bar(self, bars: Bars) -> Signal | None: zscore = (bars.close[-1] - bars.close[-self.window:].mean()) return Signal(strength=zscore, ttl=bars.bar_seconds) def teardown(self) -> None: ...
모든 플러그인은 오픈소스입니다. 커뮤니티 저장소를 탐색, 기존 플러그인을 포크 또는 자체 기여. 플러그인 생태계는 모든 기여자와 함께 성장.
Polygon.io 1m/5m/1d aggregates with on-disk Parquet cache. Resilient to rate limits.
scp install polygon-aggregates설치 →Stack LightGBM + linear + simple-NN models with rolling cross-validation and per-bar refresh.
scp install ml-ensemble설치 →Drawdown-aware position sizing that scales exposure inversely to rolling 60-day equity DD.
scp install dd-aware설치 →EU broker connector for TradeRepublic with order routing and tax-lot reporting.
scp install tr-bridge설치 →Local-only sentiment scorer over Bloomberg-style headlines using a 7B distilled model.
scp install news-bias설치 →Bayesian view-merging on top of MeanVar: confidence-weighted overlays without rewriting your prior.
scp install bl-view설치 →SDK에는 타입 스텁, 로컬 레지스트리, 핫리로드 개발 서버, 모든 플러그인 종류에 대한 골든 테스트 픽스처가 포함됩니다.
무료 티어에는 C++ 백테스트 엔진, Regime 감지, YFinance + Dukascopy 데이터가 포함됩니다: 스케일로 구축을 시작하는 데 필요한 모든 것.