(feat) add position executor download csv

This commit is contained in:
drupman
2023-11-10 19:41:24 -03:00
parent dedfbcaf9d
commit 6f03027efa

View File

@@ -250,3 +250,7 @@ if not strategy_data.market_data.empty:
with st.expander("💱 Market Data"):
st.write(strategy_data.market_data)
download_csv_button(strategy_data.market_data, "market_data", "download-market-data")
if strategy_data.position_executor is not None and not strategy_data.position_executor.empty:
with st.expander("🤖 Position executor"):
st.write(strategy_data.position_executor)
download_csv_button(strategy_data.position_executor, "position_executor", "download-position-executor")