diff --git a/frontend/components/directional_trading_general_inputs.py b/frontend/components/directional_trading_general_inputs.py index 4742ddb..0667718 100644 --- a/frontend/components/directional_trading_general_inputs.py +++ b/frontend/components/directional_trading_general_inputs.py @@ -5,9 +5,9 @@ def get_directional_trading_general_inputs(): with st.expander("General Settings", expanded=True): c1, c2, c3, c4, c5, c6, c7 = st.columns(7) with c1: - connector_name = st.text_input("Connector", value="binance_perpetual", + connector_name = st.text_input("Connector", value="kucoin", help="Enter the name of the exchange to trade on (e.g., binance_perpetual).") - candles_connector_name = st.text_input("Candles Connector", value="binance_perpetual", + candles_connector_name = st.text_input("Candles Connector", value="kucoin", help="Enter the name of the exchange to get candles from (e.g., binance_perpetual).") with c2: trading_pair = st.text_input("Trading Pair", value="WLD-USDT", @@ -17,7 +17,7 @@ def get_directional_trading_general_inputs(): with c3: leverage = st.number_input("Leverage", value=20, help="Set the leverage to use for trading (e.g., 20 for 20x leverage). Set it to 1 for spot trading.") - interval = st.selectbox("Candles Interval", ("1m", "5m", "15m", "1h", "4h", "1d"), index=3, + interval = st.selectbox("Candles Interval", ("1m", "3m", "5m", "15m", "1h", "4h", "1d"), index=3, help="Enter the interval for candles (e.g., 1m).") with c4: total_amount_quote = st.number_input("Total amount of quote", value=1000, @@ -26,7 +26,7 @@ def get_directional_trading_general_inputs(): max_executors_per_side = st.number_input("Max Executors Per Side", value=5, help="Enter the maximum number of executors per side (e.g., 5).") with c6: - cooldown_time = st.number_input("Cooldown Time (minutes)", value=60, + cooldown_time = st.number_input("Cooldown Time (minutes)", value=15, help="Specify the cooldown time in minutes (e.g., 60).") * 60 with c7: position_mode = st.selectbox("Position Mode", ("HEDGE", "ONEWAY"), index=0, diff --git a/frontend/components/market_making_general_inputs.py b/frontend/components/market_making_general_inputs.py index 3e65942..970ca8a 100644 --- a/frontend/components/market_making_general_inputs.py +++ b/frontend/components/market_making_general_inputs.py @@ -5,7 +5,7 @@ def get_market_making_general_inputs(): with st.expander("General Settings", expanded=True): c1, c2, c3, c4, c5, c6, c7 = st.columns(7) with c1: - connector_name = st.text_input("Connector", value="binance_perpetual", + connector_name = st.text_input("Connector", value="kucoin", help="Enter the name of the exchange to trade on (e.g., binance_perpetual).") with c2: trading_pair = st.text_input("Trading Pair", value="WLD-USDT",