Spaces:
Sleeping
Sleeping
Coder
commited on
Commit
·
ade225c
1
Parent(s):
a3a7ba2
initial commit
Browse files
app.py
CHANGED
@@ -90,13 +90,13 @@ def main():
|
|
90 |
|
91 |
if sentiment == 'Positive':
|
92 |
st.success(f"**Prediction: ₹{latest_forecast['yhat']:.2f}/-** ...valid for {forecast_horizon.lower()} time frame")
|
93 |
-
st.success(f"**Stoploss: ₹{latest_forecast['yhat_lower']:.2f}
|
94 |
elif sentiment == 'Negative':
|
95 |
st.error(f"**Prediction: ₹{latest_forecast['yhat']:.2f}/-** ...valid for {forecast_horizon.lower()} time frame")
|
96 |
-
st.error(f"**Stoploss: ₹{latest_forecast['yhat_lower']:.2f}
|
97 |
else:
|
98 |
st.info(f"**Prediction: ₹{latest_forecast['yhat']:.2f}/-** ...valid for {forecast_horizon.lower()} time frame")
|
99 |
-
st.info(f"**Stoploss: ₹{latest_forecast['yhat_lower']:.2f}
|
100 |
|
101 |
st.markdown(f"""
|
102 |
**Find below the prediction Data for the {forecast_horizon.lower()}:**
|
|
|
90 |
|
91 |
if sentiment == 'Positive':
|
92 |
st.success(f"**Prediction: ₹{latest_forecast['yhat']:.2f}/-** ...valid for {forecast_horizon.lower()} time frame")
|
93 |
+
st.success(f"**Stoploss: ₹{latest_forecast['yhat_lower']:.2f} Traget: {latest_forecast['yhat_upper']:.2f}.**")
|
94 |
elif sentiment == 'Negative':
|
95 |
st.error(f"**Prediction: ₹{latest_forecast['yhat']:.2f}/-** ...valid for {forecast_horizon.lower()} time frame")
|
96 |
+
st.error(f"**Stoploss: ₹{latest_forecast['yhat_lower']:.2f} Traget: {latest_forecast['yhat_upper']:.2f}.**")
|
97 |
else:
|
98 |
st.info(f"**Prediction: ₹{latest_forecast['yhat']:.2f}/-** ...valid for {forecast_horizon.lower()} time frame")
|
99 |
+
st.info(f"**Stoploss: ₹{latest_forecast['yhat_lower']:.2f} Traget: {latest_forecast['yhat_upper']:.2f}.**")
|
100 |
|
101 |
st.markdown(f"""
|
102 |
**Find below the prediction Data for the {forecast_horizon.lower()}:**
|