Skip to content

Commit

Permalink
del write component
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuttlas90 committed Jul 24, 2024
1 parent 39bc68d commit e827aa3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pages/helper/ta_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ def add_ta_metrics(stock_data_history, data,metric_label, col, place, num, ind):
elif ind == "UO":
smas = TA.UO(stock_data_history)
sma_df = pd.DataFrame(smas)
st.write(sma_df.iloc[-1][col])
place.metric(label=metric_label, value = int(sma_df.iloc[-1][col]), delta = int(sma_df.iloc[-1][col]-sma_df.iloc[-2][col]))
_update_guage(num, sma_df.iloc[-1][col], stock_data_history.iloc[-1]['close'], ind)
return num
Expand Down

0 comments on commit e827aa3

Please sign in to comment.