Update projects/forex_algo_trading.md

This commit is contained in:
2024-02-18 16:21:57 +00:00
parent 0cc78ffa02
commit aeb164e680

View File

@@ -1,22 +1,25 @@
## Example
```mermaid
graph LR
A[Data Ingestion Service] --> B((Kubernetes Cluster))
B --> C{Data Storage}
B --> D[Analysis Microservice]
D --> E[Signal Generation Microservice]
E --> F[Order Execution Service]
F --> G[Brokerage API]
B --> H[Monitoring & Alerting]
graph TD
style A fill:#333,stroke:#FFCC00,stroke-width:2px
style B fill:#333,stroke:#FFCC00,stroke-width:2px
style C fill:#555,stroke:#FFCC00,stroke-width:2px
style D fill:#555,stroke:#FFCC00,stroke-width:2px
style E fill:#555,stroke:#FFCC00,stroke-width:2px
style F fill:#555,stroke:#FFCC00,stroke-width:2px
style G fill:#777,stroke:#FFCC00,stroke-width:2px
style H fill:#777,stroke:#FFCC00,stroke-width:2px
C -.-> D
style B fill:#f9f,stroke:#333,stroke-width:4px
style D fill:#bbf,stroke:#f66,stroke-width:2px,stroke-dasharray: 5, 5
style E fill:#bbf,stroke:#f66,stroke-width:2px,stroke-dasharray: 5, 5
style F fill:#bbf,stroke:#f66,stroke-width:2px,stroke-dasharray: 5, 5
style G fill:#fbb,stroke:#f66,stroke-width:2px
style H fill:#fdfd96,stroke:#333,stroke-width:4px
A[Data Ingestion Service] -->|Fetches Data| B[Kubernetes Cluster]
B -->|Stores| C[Data Storage: S3/GlusterFS]
B -->|Analysis| D[Analysis Microservice]
D -->|Generates Signals| E[Signal Generation Microservice]
E -->|Executes Orders| F[Order Execution Service]
F -->|Places Orders| G[Brokerage API: Oanda]
B -->|Monitors System| H[Monitoring & Alerting: Prometheus/Grafana]
linkStyle default interpolate basis
```
## Folder Structure