Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -634,8 +634,9 @@ with final_recs:
|
|
| 634 |
trade_recs.reset_index(inplace=True, drop=True)
|
| 635 |
genrec_container = st.container(border=False)
|
| 636 |
rec_col1, rec_col2, rec_col3 = genrec_container.columns(3, gap='medium')
|
|
|
|
| 637 |
rec_col1.write(f'<span style="font-size: large;"><b>Current Date:</b> <u>{pred_date}</u></span>', unsafe_allow_html=True)
|
| 638 |
-
rec_col2.write(f'<span style="font-size: large;"><b>Current Close Price:</b> {
|
| 639 |
rec_col3.write(f'<span style="font-size: large;"><b>Following Close Price:</b> {fp[pred_date]}</span>', unsafe_allow_html=True)
|
| 640 |
|
| 641 |
# genrec = 'Recommendation for following day will go here.'
|
|
|
|
| 634 |
trade_recs.reset_index(inplace=True, drop=True)
|
| 635 |
genrec_container = st.container(border=False)
|
| 636 |
rec_col1, rec_col2, rec_col3 = genrec_container.columns(3, gap='medium')
|
| 637 |
+
current_price = trade_recs['Price'][0]
|
| 638 |
rec_col1.write(f'<span style="font-size: large;"><b>Current Date:</b> <u>{pred_date}</u></span>', unsafe_allow_html=True)
|
| 639 |
+
rec_col2.write(f'<span style="font-size: large;"><b>Current Close Price:</b> {current_price}</span>', unsafe_allow_html=True)
|
| 640 |
rec_col3.write(f'<span style="font-size: large;"><b>Following Close Price:</b> {fp[pred_date]}</span>', unsafe_allow_html=True)
|
| 641 |
|
| 642 |
# genrec = 'Recommendation for following day will go here.'
|