From 1d7592aba80358258e4ef9c378170bf409e9c01d Mon Sep 17 00:00:00 2001 From: drupman Date: Mon, 4 Sep 2023 17:37:07 -0300 Subject: [PATCH] (fix) download and display all data instead of page data --- pages/strategy_performance/app.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/strategy_performance/app.py b/pages/strategy_performance/app.py index 6491ec6..28874dc 100644 --- a/pages/strategy_performance/app.py +++ b/pages/strategy_performance/app.py @@ -156,11 +156,11 @@ else: st.markdown("
", unsafe_allow_html=True) st.subheader("Tables") with st.expander("💵 Trades"): - st.write(strategy_data_filtered.trade_fill) - download_csv(strategy_data_filtered.trade_fill, "trade_fill", "download-trades") + st.write(strategy_data.trade_fill) + download_csv(strategy_data.trade_fill, "trade_fill", "download-trades") with st.expander("📩 Orders"): - st.write(strategy_data_filtered.orders) - download_csv(strategy_data_filtered.orders, "orders", "download-orders") + st.write(strategy_data.orders) + download_csv(strategy_data.orders, "orders", "download-orders") with st.expander("⌕ Order Status"): - st.write(strategy_data_filtered.order_status) - download_csv(strategy_data_filtered.order_status, "order_status", "download-order-status") + st.write(strategy_data.order_status) + download_csv(strategy_data.order_status, "order_status", "download-order-status")