File size: 309 Bytes
9e261bd
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
RISK_LEVELS = {
    "Low": {"stop_loss": 0.01, "take_profit": 0.03},
    "Medium": {"stop_loss": 0.02, "take_profit": 0.05},
    "High": {"stop_loss": 0.05, "take_profit": 0.10}
}
DATA_PATHS = {
    "historical": "data/forex_data_with_indicators.csv",
    "sentiment": "data/merged_data_with_sentiment.csv"
}