Update app.py
Browse files
app.py
CHANGED
|
@@ -48,7 +48,7 @@ def predict_all(symbol):
|
|
| 48 |
entry_price = float(round(df["Close"].iloc[-1], 2))
|
| 49 |
sl = float(round(entry_price * 0.985, 2))
|
| 50 |
target = float(round(entry_price * 1.02, 2))
|
| 51 |
-
now_time = datetime.now().strftime("%I:%M%p").lower()
|
| 52 |
confidence_str = f"{float(trend['confidence'])}%"
|
| 53 |
|
| 54 |
# Explanation map
|
|
|
|
| 48 |
entry_price = float(round(df["Close"].iloc[-1], 2))
|
| 49 |
sl = float(round(entry_price * 0.985, 2))
|
| 50 |
target = float(round(entry_price * 1.02, 2))
|
| 51 |
+
now_time = datetime.now().strftime("%Y-%m-%d %I:%M%p").lower()
|
| 52 |
confidence_str = f"{float(trend['confidence'])}%"
|
| 53 |
|
| 54 |
# Explanation map
|