Added batch set file back test for strategy tester MT5

This commit is contained in:
unknown
2026-04-12 19:19:32 +10:00
parent 3b1f90ffa8
commit 0d5746c89a
2 changed files with 629 additions and 2 deletions
+7 -2
View File
@@ -142,8 +142,8 @@ with st.sidebar:
st.markdown("---")
page = option_menu(
menu_title = None,
options = ["Trade Analysis", "Trade Compare", "EA Comparator", "Settings"],
icons = ["bar-chart-line", "arrow-left-right", "sliders", "gear"],
options = ["Trade Analysis", "Trade Compare", "EA Comparator", "Batch Backtest", "Settings"],
icons = ["bar-chart-line", "arrow-left-right", "sliders", "cpu", "gear"],
default_index = 0,
styles = {
"container" : {"background-color": "transparent", "padding": "0"},
@@ -180,6 +180,11 @@ elif page == "EA Comparator":
importlib.reload(p)
p.render()
elif page == "Batch Backtest":
import view_batch_backtest as p
importlib.reload(p)
p.render()
elif page == "Settings":
import view_settings as p
importlib.reload(p)