diff --git a/src/pages/trading/trading_system_page.py b/src/pages/trading/trading_system_page.py index 94f72a1..d0adfde 100644 --- a/src/pages/trading/trading_system_page.py +++ b/src/pages/trading/trading_system_page.py @@ -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) - - with col2: + 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: 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)