From c4b6247b9379aa0bceae93b234a44f5b906e570d Mon Sep 17 00:00:00 2001 From: Bongani Bendile Date: Fri, 13 Jan 2023 16:08:58 +0200 Subject: [PATCH] Last Price Bug into Previous Close #3865 --- openbb_terminal/stocks/stocks_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbb_terminal/stocks/stocks_helper.py b/openbb_terminal/stocks/stocks_helper.py index 8824ce4c67f3..34e2f784bc2b 100644 --- a/openbb_terminal/stocks/stocks_helper.py +++ b/openbb_terminal/stocks/stocks_helper.py @@ -1071,7 +1071,7 @@ def show_quick_performance(stock_df: pd.DataFrame, ticker: str): str(round(np.mean(volumes[-12:-2]) / 1_000_000, 2)) + " M" ) - perf_df["Last Price"] = str(round(closes[-1], 2)) + perf_df["Previous Close"] = str(round(closes[-1], 2)) print_rich_table( perf_df, show_index=False,