Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -146,11 +146,15 @@ def calculate_entry_exit_points(symbol, target_profit_price, risk_percentage, ac
|
|
146 |
'entry': entry_point,
|
147 |
'stop_loss': stop_loss,
|
148 |
'take_profit': take_profit,
|
|
|
|
|
149 |
'position_size': position_size,
|
150 |
'profit_take_profit': profit_take_profit,
|
151 |
'profit_stop_loss': profit_stop_loss,
|
152 |
'fibonacci_levels': fibonacci_levels,
|
153 |
'closest_levels': closest_levels,
|
|
|
|
|
154 |
'buy_sell_flag': buy_sell_flag
|
155 |
}
|
156 |
|
|
|
146 |
'entry': entry_point,
|
147 |
'stop_loss': stop_loss,
|
148 |
'take_profit': take_profit,
|
149 |
+
'swing_high': swing_high,
|
150 |
+
'swing_low': swing_low,
|
151 |
'position_size': position_size,
|
152 |
'profit_take_profit': profit_take_profit,
|
153 |
'profit_stop_loss': profit_stop_loss,
|
154 |
'fibonacci_levels': fibonacci_levels,
|
155 |
'closest_levels': closest_levels,
|
156 |
+
'support_level': support_level,
|
157 |
+
'resistance_level': resistance_level,
|
158 |
'buy_sell_flag': buy_sell_flag
|
159 |
}
|
160 |
|