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