From 3bf274511a78f56d987c8daa7de76dd077845e35 Mon Sep 17 00:00:00 2001 From: cardosofede Date: Thu, 3 Aug 2023 18:19:11 +0200 Subject: [PATCH] (feat) unify create and modify tabs --- pages/backtest_manager/app.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pages/backtest_manager/app.py b/pages/backtest_manager/app.py index 583e0d6..a01709d 100644 --- a/pages/backtest_manager/app.py +++ b/pages/backtest_manager/app.py @@ -21,9 +21,9 @@ initialize_st_page(title="Backtest Manager", icon="⚙️") if "strategy_params" not in st.session_state: st.session_state.strategy_params = {} -create, modify, backtest, optimize, analyze = st.tabs(["Create", "Modify", "Backtest", "Optimize", "Analyze"]) +build, backtest, optimize, analyze = st.tabs(["Build", "Backtest", "Optimize", "Analyze"]) -with create: +with build: # TODO: # * Add videos explaining how to the triple barrier method works and how the backtesting is designed, # link to video of how to create a strategy, etc in a toggle. @@ -51,9 +51,6 @@ with create: path=constants.DIRECTIONAL_STRATEGIES_PATH) st.success(f"Strategy {strategy_name} saved successfully") -with modify: - pass - with backtest: # TODO: # * Add videos explaining how to the triple barrier method works and how the backtesting is designed,