mirror of
https://github.com/aljazceru/hummingbot-dashboard.git
synced 2026-01-10 17:04:23 +01:00
(feat) unify create and modify tabs
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user