Devendra21 commited on
Commit
2674d8c
·
verified ·
1 Parent(s): 3f20544

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +2 -4
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
- DATA_PATHS = {
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
+