(feat) unify create and modify tabs

This commit is contained in:
cardosofede
2023-08-03 18:19:11 +02:00
parent 94cee86967
commit 3bf274511a

View File

@@ -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,