updating backtest wording
Browse files
app.py
CHANGED
@@ -256,10 +256,10 @@ def run_backtest(api_key, from_symbol, to_symbol, interval):
|
|
256 |
|
257 |
# Determine if it's a buy or sell based on percentages
|
258 |
if win_percentage > loss_percentage:
|
259 |
-
signal = "
|
260 |
color = "green"
|
261 |
else:
|
262 |
-
signal = "
|
263 |
color = "red"
|
264 |
|
265 |
# Get trade decision information
|
|
|
256 |
|
257 |
# Determine if it's a buy or sell based on percentages
|
258 |
if win_percentage > loss_percentage:
|
259 |
+
signal = "Backtest Agrees"
|
260 |
color = "green"
|
261 |
else:
|
262 |
+
signal = "Backtest Disagress"
|
263 |
color = "red"
|
264 |
|
265 |
# Get trade decision information
|