fix: Correct indentation in trading system page input fields
This commit is contained in:
parent
5398d683b9
commit
51ebdc1d74
@ -13,21 +13,21 @@ def trading_system_page():
|
||||
col1, col2 = st.columns(2)
|
||||
with col1:
|
||||
account_size = st.number_input("Account Size ($)",
|
||||
min_value=0.0,
|
||||
value=default_account_size,
|
||||
step=1000.0)
|
||||
risk_percentage = st.number_input("Risk Percentage (%)",
|
||||
min_value=0.1,
|
||||
max_value=100.0,
|
||||
value=1.0,
|
||||
step=0.1)
|
||||
stop_loss_percentage = st.number_input("Stop Loss Percentage (%)",
|
||||
min_value=0.1,
|
||||
max_value=100.0,
|
||||
value=7.0,
|
||||
step=0.1)
|
||||
min_value=0.0,
|
||||
value=default_account_size,
|
||||
step=1000.0)
|
||||
risk_percentage = st.number_input("Risk Percentage (%)",
|
||||
min_value=0.1,
|
||||
max_value=100.0,
|
||||
value=1.0,
|
||||
step=0.1)
|
||||
stop_loss_percentage = st.number_input("Stop Loss Percentage (%)",
|
||||
min_value=0.1,
|
||||
max_value=100.0,
|
||||
value=7.0,
|
||||
step=0.1)
|
||||
|
||||
with col2:
|
||||
with col2:
|
||||
entry_price = st.number_input("Entry Price ($)", min_value=0.01, step=0.01)
|
||||
target_price = st.number_input("Target Price ($)", min_value=0.01, step=0.01)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user