Added batch set file back test for strategy tester MT5
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user