Skip to content

πŸ—οΈ System Architecture & Modules

当前 AlphaTwin η³»η»Ÿηš„ζ¨‘ε—εŒ–η»“ζž„ε±•η€Ίγ€‚

🧩 Module Interaction

```mermaid graph TD subgraph Data_Factory [🏭 Data Factory] A[yfinance API] -->|Raw Data| B(Data Loader) B -->|Cleaning| C(Data Processor) C -->|Parquet| D[(Data Store)] end

subgraph Strategy_Engine [🧠 Strategy Engine]
    D --> E[Backtest Engine]
    F[Strategy Logic] --> E
    E -->|Results| G[Performance Metrics]
end

subgraph Visualization [πŸ“Š Dashboard]
    G --> H[Plotly Charts]
    G --> I[Heatmap Generator]
end

style Data_Factory fill:#2d3436,stroke:#00b894,stroke-width:2px
style Strategy_Engine fill:#2d3436,stroke:#0984e3,stroke-width:2px
style Visualization fill:#2d3436,stroke:#e17055,stroke-width:2px