Nazhar commited on
Commit
e287d3c
·
verified ·
1 Parent(s): 8f0d57e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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> {trade_recs['Price'][0]}</span>', unsafe_allow_html=True)
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.'