niyaa commited on
Commit
40e2563
1 Parent(s): 7195026

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -72,9 +72,9 @@ if tickerSymbol:
72
  st.write(df)
73
 
74
  if (Df["Close"][0] > Df["Open"][0] ):
75
- st.write(NSE has uptrend on +date_str )
76
  if (Df["Close"][0] < Df["Open"][0] ):
77
- st.write(NSE has downdtrend on +date_str )
78
 
79
 
80
 
 
72
  st.write(df)
73
 
74
  if (Df["Close"][0] > Df["Open"][0] ):
75
+ st.write("NSE has uptrend on " +date_str )
76
  if (Df["Close"][0] < Df["Open"][0] ):
77
+ st.write(" NSE has downdtrend on " +date_str )
78
 
79
 
80