Spaces:
Running
Running
Update config.py
Browse files
config.py
CHANGED
@@ -1,9 +1,7 @@
|
|
|
|
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 |
-
|
7 |
-
"historical": "data/forex_data_with_indicators.csv",
|
8 |
-
"sentiment": "data/merged_data_with_sentiment.csv"
|
9 |
-
}
|
|
|
1 |
+
# Configurations for risk levels
|
2 |
RISK_LEVELS = {
|
3 |
"Low": {"stop_loss": 0.01, "take_profit": 0.03},
|
4 |
"Medium": {"stop_loss": 0.02, "take_profit": 0.05},
|
5 |
"High": {"stop_loss": 0.05, "take_profit": 0.10}
|
6 |
}
|
7 |
+
|
|
|
|
|
|