From 51ebdc1d748f06f30b8872f73e814291a132d4bb Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Thu, 13 Feb 2025 12:40:01 -0800 Subject: [PATCH] fix: Correct indentation in trading system page input fields --- src/pages/trading/trading_system_page.py | 30 ++++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) 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)