Spaces:
Running
Running
Create config.py
Browse files
config.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
RISK_LEVELS = {
|
2 |
+
"Low": {"stop_loss": 0.01, "take_profit": 0.03},
|
3 |
+
"Medium": {"stop_loss": 0.02, "take_profit": 0.05},
|
4 |
+
"High": {"stop_loss": 0.05, "take_profit": 0.10}
|
5 |
+
}
|
6 |
+
DATA_PATHS = {
|
7 |
+
"historical": "data/forex_data_with_indicators.csv",
|
8 |
+
"sentiment": "data/merged_data_with_sentiment.csv"
|
9 |
+
}
|