Devendra21 commited on
Commit
9e261bd
·
verified ·
1 Parent(s): 9e54cd3

Create config.py

Browse files
Files changed (1) hide show
  1. config.py +9 -0
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
+ }