PMM - Binance Connector not working as it should - stuck after few hours
Describe the bug
Hello, i have an issue on PMM. Tested multiple times with mirror changes, but everytime bot will end with stucked orders without cancelling them by timelimit or so. Error log says not enought budget to open position, but bot is started with 5% reserve on both sides and it has amount needed to maintain initial number of orders.
Config: buy_amounts_pct:
- 0.25
- 0.25
- 0.25 buy_spreads:
- 0.0006
- 0.0009
- 0.0012 candles_config: [] connector_name: binance controller_name: pmm_simple controller_type: market_making cooldown_time: 300.0 executor_refresh_time: 180.0 id: BTC1_0.1 leverage: 1 manual_kill_switch: null position_mode: HEDGE sell_amounts_pct:
- 0.25
- 0.25
- 0.25 sell_spreads:
- 0.0006
- 0.0009
- 0.0012 stop_loss: 0.008 take_profit: 0.0004 take_profit_order_type: 2 time_limit: 300 total_amount_quote: 4800 trading_pair: BTC-USDT trailing_stop: activation_price: 0.018 trailing_delta: 0.002
Steps to reproduce bug
- Set PMM with low spread (3+3 / 4+4 per side)
- Let it run and wait few hours, or till some big movements.
hi @PKBO im running a bot with almost same setup and will try to reproduce. Would it be possible to share any of your log files as well to help investigate? thank you
Ran a bot for 2hrs 30mins using the attached config (modified since i dont have that much amount to use 😅 )
- Orders created and cancelled ok
early_stop - Orders filled, opened executor
- Created TP limit order, some got filled
take_profit - Some got cancelled due to time_limit (300s) therefore market order created
time_limit
- Created TP limit order, some got filled
- Started with balance of 220
- Set total_amount_quote to 50, (i think i have more than enough reserved balance, thts why i cant reproduce the
not enough budget to open position) - Script to create 2 order levels
- Set total_amount_quote to 50, (i think i have more than enough reserved balance, thts why i cant reproduce the
config:
candles_config: []
connector_name: binance
controller_name: pmm_simple
controller_type: market_making
cooldown_time: 300.0
executor_refresh_time: 180.0
id: test_issue162
leverage: 1
manual_kill_switch: null
position_mode: HEDGE
buy_amounts_pct:
- 0.25
- 0.25
buy_spreads:
- 0.0006
- 0.0009
sell_amounts_pct:
- 0.25
- 0.25
sell_spreads:
- 0.0006
- 0.0009
stop_loss: 0.008
take_profit: 0.0004
take_profit_order_type: 2
time_limit: 300
total_amount_quote: 50
trading_pair: NOT-USDT
trailing_stop:
activation_price: 0.018
trailing_delta: 0.002
Log file: 07192024.zip
On my side, it is able to run even 10 hours, but when market volatility becomes higher, than it will happen. Even if it has 6 orders on place and some free budget on both sides.. Try to run it for longer period :-)
Thanks for the reply, I tried to run same controller config and connector but with different market pair over the weekend not able to reproduce this issue. Ill be using the same market as your config and will see any diff overnight 🙏🏼
See attached logs for config and log file: 0719-0722.zip
Test update:
- Setup same config but with 2 order levels, reduced total amount in quote and with same market pair
- Run for more than 24hours and got 1779 trades
- The bot seem to be creating orders well and not able to reproduce issue with stuck on
Not enough budget to open position07262024.zip
However I think its not related to connector but the controller config itself, I have around 20% of reserve to tests it with few more hours. Also found a bug which might be the cause of the issue to imbalance the assets found here perhaps we can close this ticket and proceed with https://github.com/hummingbot/hummingbot/issues/7140 thank you
Hi, i tried it with folowing config with exactly same result, but way faster (tried to use order type 3).. Not enought budget error after few minutes. Timelimit not applied, as one TP (limit maker) is on place 20minutes together with partialy filled limit.
Dashboard - Instances also shows only 2 trades and 0 placed liquidity, even when a lot of trades were done.
Started with 900 USDT distributed 50/50.
buy_amounts_pct:
- 0.24875621890547267
- 0.2512437810945274 buy_spreads:
- 0.0005
- 0.001 candles_config: [] connector_name: binance controller_name: pmm_simple controller_type: market_making cooldown_time: 600.0 executor_refresh_time: 60.0 id: BIFI_0.1 leverage: 1 manual_kill_switch: null position_mode: HEDGE sell_amounts_pct:
- 0.24875621890547267
- 0.2512437810945274 sell_spreads:
- 0.0005
- 0.001 stop_loss: 0.05 take_profit: 0.0005 take_profit_order_type: 3
time_limit: 300 total_amount_quote: 800 trading_pair: BIFI-USDT trailing_stop: activation_price: 0.018 trailing_delta: 0.002
2024-07-28 19:13:07 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:07 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e5388d757c6fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722193986.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e5388d757c6fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:10 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:10 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:10 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:10 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e538905c701fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722193988.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e538905c701fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:12 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:12 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:12 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:12 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e5389278a08fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722193991.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e5389278a08fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:14 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:14 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:14 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:14 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e538943abaffb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722193993.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e538943abaffb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:16 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:19 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:19 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:19 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e53896b4527fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722193997.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e53896b4527fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:21 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:21 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:21 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:21 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e5389ac1079fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722194000.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e5389ac1079fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:23 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:23 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:23 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:23 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e5389cb1c85fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722194002.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e5389cb1c85fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:25 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:28 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:28 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:28 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e5389f30851fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722194006.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e5389f30851fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:30 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:30 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:30 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:30 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e538a336622fb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722194009.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e538a336622fb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:13:32 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT sell order: price: 326.5762500000000000067914425 amount: 0.6154612433562511303815762591.
2024-07-28 19:13:32 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting sell LIMIT order to Binance for 0.61500000 BIFI-USDT 326.50000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:13:32 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit SELL order to Binance. Check API key and network connection.
2024-07-28 19:13:32 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXSBIUT61e538a521e4cfb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722194011.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBIUT61e538a521e4cfb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:14:07 - hummingbot.connector.client_order_tracker: The SELL order x-XEKWYICXSBIUT61e5388572550fb01 amounting to 0.23000000/0.60900000 BIFI has been filled.
2024-07-28 19:14:15 - hummingbot.connector.client_order_tracker: The SELL order x-XEKWYICXSBIUT61e5388572550fb01 amounting to 0.53600000/0.60900000 BIFI has been filled.
2024-07-28 19:14:17 - hummingbot.connector.client_order_tracker: The SELL order x-XEKWYICXSBIUT61e5388572550fb01 amounting to 0.60900000/0.60900000 BIFI has been filled.
2024-07-28 19:14:17 - hummingbot.connector.client_order_tracker: SELL order x-XEKWYICXSBIUT61e5388572550fb01 completely filled.
2024-07-28 19:14:17 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT buy order: price: 326.1868249999999999966032379 amount: 0.6100950739637572689302674785.
2024-07-28 19:14:17 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT buy order: price: 326.0236499999999999932064759 amount: 0.6165044311221652423885333200.
2024-07-28 19:14:17 - hummingbot.connector.client_order_tracker: Created LIMIT BUY order x-XEKWYICXBBIUT61e538d0a9b19fb01 for 0.61000000 BIFI-USDT.
2024-07-28 19:14:20 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting buy LIMIT order to Binance for 0.61600000 BIFI-USDT 326.00000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
2024-07-28 19:14:20 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Failed to submit BUY order to Binance. Check API key and network connection.
2024-07-28 19:14:20 - hummingbot.connector.client_order_tracker: Order x-XEKWYICXBBIUT61e538d0a9fcefb01 has failed. Order Update: OrderUpdate(trading_pair='BIFI-USDT', update_timestamp=1722194059.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBIUT61e538d0a9fcefb01', exchange_order_id=None, misc_updates=None)
2024-07-28 19:14:23 - hummingbot.strategy.script_strategy_base: Creating BIFI-USDT buy order: price: 326.0236499999999999932064759 amount: 0.6165044311221652423885333200.
2024-07-28 19:14:23 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange: Error submitting buy LIMIT order to Binance for 0.61600000 BIFI-USDT 326.00000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."}
Issue is still same for me, tested also without dashboard on two VPS, two bosts, two pairs, one is docker without dashboard, second one is from source.
It leaves unfilled orders on book after time limit passes and starts givving issue about missing funds.
But bot have to be running some time, first hour is usualy without issues (missing funds under 100 during that period) But after 3-4 hours, there is alsmost 99% chance that it will ends in missing funds forever.
Logs attached, last one (logs_conf_v2_with_controllers_1 with BTC_USDT config is latest combination, whitch failes really quckly, after 5 minutes.
id: GpUEYQMYPM1wLJLMeWvsBCRYsnpCaCNPxQqebJkXSuJt controller_name: pmm_simple controller_type: market_making total_amount_quote: 6800 manual_kill_switch: null candles_config: [] connector_name: binance trading_pair: BTC-USDT buy_spreads:
- 0.0001
- 0.0003
- 0.0006
- 0.0009 sell_spreads:
- 0.0002
- 0.0003
- 0.0006
- 0.0009 buy_amounts_pct: null sell_amounts_pct: null executor_refresh_time: 180 cooldown_time: 20 leverage: 1 position_mode: HEDGE stop_loss: 0.03 take_profit: 0.0001 time_limit: 600 take_profit_order_type: 3 trailing_stop: activation_price: 0.015 trailing_delta: 0.003
Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:45:31,195 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:45:31,204 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 3/10 2024-10-24 08:45:31,207 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759522.0, "order_id": "x-XEKWYICXBBCUT62535023220b87ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:45:31,208 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535023220b87ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759522.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535023220b87ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:45:31,555 - 15 - hummingbot.connector.exchange.binance.binance_api_user_stream_data_source.BinanceAPIUserStreamDataSource - INFO - Successfully obtained listen key wlNzShsSuHixf07oVoqC3EjbRyaQhQRlQ4sXQ84zlscw0tdUmzsL9ERadi22 2024-10-24 08:45:31,641 - 15 - hummingbot.core.data_type.order_book_tracker - INFO - Initialized order book for BTC-USDT. 1/1 completed. 2024-10-24 08:45:31,723 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01267000 BTC-USDT 67043.34000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:45:31,724 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:45:31,724 - 15 - hummingbot.connector.client_order_tracker - INFO - Created LIMIT BUY order x-XEKWYICXBBCUT625350367e5777ff0 for 0.01268000 BTC-USDT at 67029.93000000. 2024-10-24 08:45:31,724 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759522.0, "type": "OrderType.LIMIT", "trading_pair": "BTC-USDT", "amount": "0.01268000", "price": "67029.93000000", "order_id": "x-XEKWYICXBBCUT625350367e5777ff0", "creation_timestamp": 1729759471.0, "exchange_order_id": "31589548732", "leverage": 1, "position": "NIL", "event_name": "BuyOrderCreatedEvent", "event_source": "binance"} 2024-10-24 08:45:31,731 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 2/10 2024-10-24 08:45:31,733 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759522.0, "order_id": "x-XEKWYICXBBCUT625350367e4747ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:45:31,733 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT625350367e4747ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759522.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT625350367e4747ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:45:42,101 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 66996.79000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:45:42,101 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:45:42,114 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 3/10 2024-10-24 08:45:42,115 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759532.0, "order_id": "x-XEKWYICXBBCUT625350402b7d97ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:45:42,116 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT625350402b7d97ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759532.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT625350402b7d97ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:45:51,662 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01267000 BTC-USDT 67043.34000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:45:51,663 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:45:51,663 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 67016.91000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:45:51,664 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:45:51,676 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 4/10 2024-10-24 08:45:51,678 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT62535070dcbc67ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:45:51,678 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535070dcbc67ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759542.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535070dcbc67ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:45:51,678 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 7/10 2024-10-24 08:45:51,680 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT62535070dcaff7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:45:51,680 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535070dcaff7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759542.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535070dcaff7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:45:51,680 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT625350367e5777ff0 amounting to 0.01268000/0.01268000 BTC has been filled at 67029.93000000 USDT. 2024-10-24 08:45:51,680 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT625350367e5777ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "67029.93000000", "amount": "0.01268000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956982778", "exchange_order_id": "31589548732", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:45:51,795 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT62534f9d704447ff0 amounting to 0.00009000/0.01268000 BTC has been filled at 67030.73000000 USDT. 2024-10-24 08:45:51,796 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT62534f9d704447ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "67030.73000000", "amount": "0.00009000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956980777", "exchange_order_id": "31589484474", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:45:51,813 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT62534f9d704447ff0 amounting to 0.00056000/0.01268000 BTC has been filled at 67030.73000000 USDT. 2024-10-24 08:45:51,814 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT62534f9d704447ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "67030.73000000", "amount": "0.00047000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956980779", "exchange_order_id": "31589484474", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:45:51,829 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT62534f9d704447ff0 amounting to 0.00755000/0.01268000 BTC has been filled at 67030.73000000 USDT. 2024-10-24 08:45:51,829 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT62534f9d704447ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "67030.73000000", "amount": "0.00699000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956980780", "exchange_order_id": "31589484474", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:45:51,844 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT62534f9d704447ff0 amounting to 0.00968000/0.01268000 BTC has been filled at 67030.73000000 USDT. 2024-10-24 08:45:51,844 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT62534f9d704447ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "67030.73000000", "amount": "0.00213000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956980781", "exchange_order_id": "31589484474", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:45:51,861 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT62534f9d704447ff0 amounting to 0.01268000/0.01268000 BTC has been filled at 67030.73000000 USDT. 2024-10-24 08:45:51,862 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT62534f9d704447ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "67030.73000000", "amount": "0.00300000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956980782", "exchange_order_id": "31589484474", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:45:51,880 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759542.0, "order_id": "x-XEKWYICXBBCUT625350367e5777ff0", "base_asset": "BTC", "quote_asset": "USDT", "base_asset_amount": "0.01268000", "quote_asset_amount": "849.9395124000000000", "order_type": "OrderType.LIMIT", "exchange_order_id": "31589548732", "event_name": "BuyOrderCompletedEvent", "event_source": "binance"} 2024-10-24 08:45:51,887 - 15 - hummingbot.connector.client_order_tracker - INFO - BUY order x-XEKWYICXBBCUT625350367e5777ff0 completely filled. 2024-10-24 08:46:01,831 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 66996.79000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:46:01,831 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:46:01,852 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 6/10 2024-10-24 08:46:01,854 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759552.0, "order_id": "x-XEKWYICXBBCUT62535079fb9647ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:01,854 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535079fb9647ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759552.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535079fb9647ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:11,235 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 67016.91000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:46:11,236 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:46:11,248 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 9/10 2024-10-24 08:46:11,250 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759562.0, "order_id": "x-XEKWYICXBBCUT62535083af0787ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:11,250 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535083af0787ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759562.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535083af0787ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:11,685 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 66996.79000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:46:11,685 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:46:11,686 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 8/10 2024-10-24 08:46:11,688 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759562.0, "order_id": "x-XEKWYICXBBCUT6253508ca5c087ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:11,688 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT6253508ca5c087ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759562.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT6253508ca5c087ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:40,917 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01266000 BTC-USDT 67096.32000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:46:40,917 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:46:40,921 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67076.21000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:46:40,922 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:46:40,922 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67056.10000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:46:40,922 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:46:40,933 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67049.40000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:46:40,933 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:46:40,934 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT_MAKER order to Binance for 0.01268000 BTC-USDT 67036.63000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:46:40,934 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:46:40,945 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 4/10 2024-10-24 08:46:40,948 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759592.0, "order_id": "x-XEKWYICXSBCUT6253507a31e457ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:40,948 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT6253507a31e457ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759592.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT6253507a31e457ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:40,949 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 5/10 2024-10-24 08:46:40,951 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759592.0, "order_id": "x-XEKWYICXSBCUT6253507a31db17ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:40,952 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT6253507a31db17ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759592.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT6253507a31db17ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:40,952 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 6/10 2024-10-24 08:46:40,954 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759592.0, "order_id": "x-XEKWYICXSBCUT6253507a31d127ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:40,954 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT6253507a31d127ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759592.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT6253507a31d127ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:40,958 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 7/10 2024-10-24 08:46:40,960 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759592.0, "order_id": "x-XEKWYICXSBCUT6253507a31c127ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:40,960 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT6253507a31c127ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759592.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT6253507a31c127ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:40,960 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Take profit order failed. Retrying 13/10 2024-10-24 08:46:40,962 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759592.0, "order_id": "x-XEKWYICXSBCUT62535083af2a57ff0", "order_type": "OrderType.LIMIT_MAKER", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:40,962 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT62535083af2a57ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759592.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT62535083af2a57ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:50,886 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 66996.79000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:46:50,887 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:46:50,887 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 67016.91000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:46:50,887 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:46:50,906 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759601.0, "order_id": "x-XEKWYICXBBCUT625350964a1747ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:50,906 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT625350964a1747ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759601.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT625350964a1747ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:46:50,908 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759601.0, "order_id": "x-XEKWYICXBBCUT6253509649f737ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:46:50,908 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT6253509649f737ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759601.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT6253509649f737ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:47:01,087 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01267000 BTC-USDT 67043.34000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."} 2024-10-24 08:47:01,088 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:47:01,112 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759611.0, "order_id": "x-XEKWYICXBBCUT62535083af13d7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:47:01,112 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535083af13d7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759611.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535083af13d7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:47:01,112 - 15 - hummingbot.connector.client_order_tracker - INFO - Created LIMIT_MAKER SELL order x-XEKWYICXSBCUT625350b2770137ff0 for 0.01268000 BTC-USDT at 67036.63000000. 2024-10-24 08:47:01,120 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759611.0, "type": "OrderType.LIMIT_MAKER", "trading_pair": "BTC-USDT", "amount": "0.01268000", "price": "67036.63000000", "order_id": "x-XEKWYICXSBCUT625350b2770137ff0", "creation_timestamp": 1729759601.0, "exchange_order_id": "31589594579", "leverage": 1, "position": "NIL", "event_name": "SellOrderCreatedEvent", "event_source": "binance"} 2024-10-24 08:47:11,429 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:11,430 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:11,431 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:11,431 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:21,632 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:21,633 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:21,633 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:21,633 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:31,307 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:31,308 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:31,308 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:31,308 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:41,384 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:41,384 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:41,384 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:41,384 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:51,374 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67049.40000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:47:51,374 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:47:51,375 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67076.21000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:47:51,375 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:47:51,376 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67056.10000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:47:51,376 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:47:51,377 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01266000 BTC-USDT 67096.32000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:47:51,377 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:47:51,395 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759662.0, "order_id": "x-XEKWYICXSBCUT625350b2771147ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:47:51,395 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350b2771147ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759662.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350b2771147ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:47:51,397 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759662.0, "order_id": "x-XEKWYICXSBCUT625350b2771e67ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:47:51,397 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350b2771e67ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759662.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350b2771e67ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:47:51,399 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759662.0, "order_id": "x-XEKWYICXSBCUT625350b2771837ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:47:51,399 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350b2771837ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759662.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350b2771837ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:47:51,402 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759662.0, "order_id": "x-XEKWYICXSBCUT625350b2772417ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:47:51,402 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350b2772417ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759662.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350b2772417ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:47:51,495 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:51,497 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:51,497 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:51,497 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:47:51,678 - 15 - hummingbot.connector.client_order_tracker - INFO - The SELL order x-XEKWYICXSBCUT625350cfc85ad7ff0 amounting to 0.01268000/0.01268000 BTC has been filled at 67000.91000000 USDT. 2024-10-24 08:47:51,678 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759662.0, "order_id": "x-XEKWYICXSBCUT625350cfc85ad7ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.SELL", "order_type": "OrderType.LIMIT", "price": "67000.91000000", "amount": "0.01268000", "trade_fee": {"percent": "0", "percent_token": "USDT", "flat_fees": [{"token": "USDT", "amount": "0.21239288"}]}, "exchange_trade_id": "3956994168", "exchange_order_id": "31589632932", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:47:51,700 - 15 - hummingbot.connector.client_order_tracker - INFO - Created LIMIT SELL order x-XEKWYICXSBCUT625350cfc85ad7ff0 for 0.01268000 BTC-USDT at 66982.68000000. 2024-10-24 08:47:51,707 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759662.0, "type": "OrderType.LIMIT", "trading_pair": "BTC-USDT", "amount": "0.01268000", "price": "66982.68000000", "order_id": "x-XEKWYICXSBCUT625350cfc85ad7ff0", "creation_timestamp": 1729759632.0, "exchange_order_id": "31589632932", "leverage": 1, "position": "NIL", "event_name": "SellOrderCreatedEvent", "event_source": "binance"} 2024-10-24 08:47:51,707 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759662.0, "order_id": "x-XEKWYICXSBCUT625350cfc85ad7ff0", "base_asset": "BTC", "quote_asset": "USDT", "base_asset_amount": "0.01268000", "quote_asset_amount": "849.5715388000000000", "order_type": "OrderType.LIMIT", "exchange_order_id": "31589632932", "event_name": "SellOrderCompletedEvent", "event_source": "binance"} 2024-10-24 08:47:51,712 - 15 - hummingbot.connector.client_order_tracker - INFO - SELL order x-XEKWYICXSBCUT625350cfc85ad7ff0 completely filled. 2024-10-24 08:47:52,005 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67029.56000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:47:52,006 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:47:52,007 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66989.38000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:47:52,007 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:48:01,362 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 5/10 2024-10-24 08:48:01,368 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759672.0, "order_id": "x-XEKWYICXSBCUT625350cfc88547ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:48:01,368 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350cfc88547ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759662.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350cfc88547ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:48:01,373 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 6/10 2024-10-24 08:48:01,373 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759672.0, "order_id": "x-XEKWYICXSBCUT625350cfc86e67ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:48:01,373 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350cfc86e67ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759662.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350cfc86e67ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:48:01,754 - 15 - hummingbot.connector.client_order_tracker - INFO - Created LIMIT_MAKER BUY order x-XEKWYICXBBCUT625350f5c51687ff0 for 0.01268000 BTC-USDT at 66994.20000000. 2024-10-24 08:48:01,755 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759672.0, "type": "OrderType.LIMIT_MAKER", "trading_pair": "BTC-USDT", "amount": "0.01268000", "price": "66994.20000000", "order_id": "x-XEKWYICXBBCUT625350f5c51687ff0", "creation_timestamp": 1729759672.0, "exchange_order_id": "31589635857", "leverage": 1, "position": "NIL", "event_name": "BuyOrderCreatedEvent", "event_source": "binance"} 2024-10-24 08:48:01,863 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66989.38000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:48:01,864 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:48:01,867 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 7/10 2024-10-24 08:48:01,867 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759672.0, "order_id": "x-XEKWYICXSBCUT625350f5c52507ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:48:01,867 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350f5c52507ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759672.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350f5c52507ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:48:01,869 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67029.56000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:48:01,870 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:48:01,870 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 8/10 2024-10-24 08:48:01,872 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759672.0, "order_id": "x-XEKWYICXSBCUT625350f5c52bd7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:48:01,872 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350f5c52bd7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759672.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350f5c52bd7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:48:11,265 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT625350f5c51687ff0 amounting to 0.00030000/0.01268000 BTC has been filled at 66994.20000000 USDT. 2024-10-24 08:48:11,266 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759682.0, "order_id": "x-XEKWYICXBBCUT625350f5c51687ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT_MAKER", "price": "66994.20000000", "amount": "0.00030000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956995294", "exchange_order_id": "31589635857", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:48:11,293 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT625350f5c51687ff0 amounting to 0.00146000/0.01268000 BTC has been filled at 66994.20000000 USDT. 2024-10-24 08:48:11,294 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759682.0, "order_id": "x-XEKWYICXBBCUT625350f5c51687ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT_MAKER", "price": "66994.20000000", "amount": "0.00116000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956995297", "exchange_order_id": "31589635857", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:48:11,312 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT625350f5c51687ff0 amounting to 0.01268000/0.01268000 BTC has been filled at 66994.20000000 USDT. 2024-10-24 08:48:11,313 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759682.0, "order_id": "x-XEKWYICXBBCUT625350f5c51687ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT_MAKER", "price": "66994.20000000", "amount": "0.01122000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956995298", "exchange_order_id": "31589635857", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:48:11,421 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759682.0, "order_id": "x-XEKWYICXBBCUT625350f5c51687ff0", "base_asset": "BTC", "quote_asset": "USDT", "base_asset_amount": "0.01268000", "quote_asset_amount": "849.4864560000000000", "order_type": "OrderType.LIMIT_MAKER", "exchange_order_id": "31589635857", "event_name": "BuyOrderCompletedEvent", "event_source": "binance"} 2024-10-24 08:48:11,430 - 15 - hummingbot.connector.client_order_tracker - INFO - BUY order x-XEKWYICXBBCUT625350f5c51687ff0 completely filled. 2024-10-24 08:48:11,834 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67009.47000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."} 2024-10-24 08:48:11,834 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:48:11,835 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 9/10 2024-10-24 08:48:11,837 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759682.0, "order_id": "x-XEKWYICXSBCUT625350cfc87987ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:48:11,837 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350cfc87987ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759682.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350cfc87987ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:48:11,839 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Error fetching status update for the active order x-XEKWYICXBBCUT62534f9d704447ff0: Error executing request GET https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."}. 2024-10-24 08:48:31,063 - 15 - hummingbot.connector.client_order_tracker - INFO - Created LIMIT SELL order x-XEKWYICXSBCUT625350ff1959b7ff0 for 0.01268000 BTC-USDT at 67029.56000000. 2024-10-24 08:48:31,072 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759702.0, "type": "OrderType.LIMIT", "trading_pair": "BTC-USDT", "amount": "0.01268000", "price": "67029.56000000", "order_id": "x-XEKWYICXSBCUT625350ff1959b7ff0", "creation_timestamp": 1729759682.0, "exchange_order_id": "31589655778", "leverage": 1, "position": "NIL", "event_name": "SellOrderCreatedEvent", "event_source": "binance"} 2024-10-24 08:49:00,160 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67009.47000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:49:00,161 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:49:00,161 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66997.40000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:49:00,161 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:49:00,162 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 66994.21000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."} 2024-10-24 08:49:00,162 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:49:00,163 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66940.61000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."} 2024-10-24 08:49:00,163 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:49:00,172 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 10/10 2024-10-24 08:49:00,174 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759731.0, "order_id": "x-XEKWYICXSBCUT625351095da597ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:49:00,174 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351095da597ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759731.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351095da597ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:49:00,174 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 2/10 2024-10-24 08:49:00,176 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759731.0, "order_id": "x-XEKWYICXSBCUT6253510973ea47ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:49:00,176 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT6253510973ea47ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759731.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT6253510973ea47ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:49:00,178 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 6/10 2024-10-24 08:49:00,179 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759731.0, "order_id": "x-XEKWYICXBBCUT625350f5df4257ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:49:00,179 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT625350f5df4257ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759731.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT625350f5df4257ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:49:00,179 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 7/10 2024-10-24 08:49:00,181 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759731.0, "order_id": "x-XEKWYICXBBCUT625350f5df6c77ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:49:00,181 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT625350f5df6c77ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759731.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT625350f5df6c77ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:49:20,941 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66989.38000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."} 2024-10-24 08:49:20,941 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:49:20,942 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66980.81000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."} 2024-10-24 08:49:20,942 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:49:20,943 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66960.71000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."} 2024-10-24 08:49:20,943 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:49:20,957 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759751.0, "order_id": "x-XEKWYICXSBCUT625350ff194bf7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:49:20,957 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625350ff194bf7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759751.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625350ff194bf7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:49:20,958 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 9/10 2024-10-24 08:49:20,960 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759751.0, "order_id": "x-XEKWYICXBBCUT625350f5df54d7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:49:20,961 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT625350f5df54d7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759751.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT625350f5df54d7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:49:20,961 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 10/10 2024-10-24 08:49:20,963 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759751.0, "order_id": "x-XEKWYICXBBCUT625350f5df6067ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:49:20,963 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT625350f5df6067ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759751.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT625350f5df6067ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:49:20,964 - 15 - hummingbot.connector.client_order_tracker - INFO - The SELL order x-XEKWYICXSBCUT625350ff1959b7ff0 amounting to 0.01268000/0.01268000 BTC has been filled at 67029.56000000 USDT. 2024-10-24 08:49:20,964 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759751.0, "order_id": "x-XEKWYICXSBCUT625350ff1959b7ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.SELL", "order_type": "OrderType.LIMIT", "price": "67029.56000000", "amount": "0.01268000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3956998358", "exchange_order_id": "31589655778", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:49:21,081 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759751.0, "order_id": "x-XEKWYICXSBCUT625350ff1959b7ff0", "base_asset": "BTC", "quote_asset": "USDT", "base_asset_amount": "0.01268000", "quote_asset_amount": "849.9348208000000000", "order_type": "OrderType.LIMIT", "exchange_order_id": "31589655778", "event_name": "SellOrderCompletedEvent", "event_source": "binance"} 2024-10-24 08:49:21,089 - 15 - hummingbot.connector.client_order_tracker - INFO - SELL order x-XEKWYICXSBCUT625350ff1959b7ff0 completely filled. 2024-10-24 08:49:21,090 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:21,090 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:21,091 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:31,458 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:31,459 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:31,459 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:41,393 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:41,394 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:41,394 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:51,647 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:51,647 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:51,648 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:49:51,765 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Error fetching status update for the active order x-XEKWYICXSBCUT62534f9d705aa7ff0: Error executing request GET https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."}. 2024-10-24 08:50:02,334 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:02,334 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:02,334 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:12,262 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:12,262 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:12,263 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:12,659 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 66994.21000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:50:12,660 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:50:12,660 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 11/10 2024-10-24 08:50:12,663 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759803.0, "order_id": "x-XEKWYICXBBCUT62535137de90c7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:12,663 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535137de90c7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759803.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535137de90c7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:12,945 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66940.61000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:50:12,946 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:50:12,946 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 12/10 2024-10-24 08:50:12,949 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759803.0, "order_id": "x-XEKWYICXBBCUT62535137de9b77ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:12,949 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT62535137de9b77ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759803.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT62535137de9b77ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:12,951 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67009.47000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:50:12,951 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:50:12,952 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66980.81000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:50:12,952 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:50:12,953 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66997.40000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:50:12,953 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:50:12,955 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759803.0, "order_id": "x-XEKWYICXSBCUT62535137de7d67ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:12,955 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT62535137de7d67ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759803.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT62535137de7d67ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:12,956 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 14/10 2024-10-24 08:50:12,957 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759803.0, "order_id": "x-XEKWYICXBBCUT6253514b8195b7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:12,957 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT6253514b8195b7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759803.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT6253514b8195b7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:12,958 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 12/10 2024-10-24 08:50:12,959 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759803.0, "order_id": "x-XEKWYICXSBCUT62535137dea167ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:12,959 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT62535137dea167ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759803.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT62535137dea167ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:13,039 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66960.71000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 927, in _api_request raise last_exception File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-1021,"msg":"Timestamp for this request was 1000ms ahead of the server's time."} 2024-10-24 08:50:13,040 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:50:13,040 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 16/10 2024-10-24 08:50:13,042 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759803.0, "order_id": "x-XEKWYICXBBCUT6253514b81a2f7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:13,042 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT6253514b81a2f7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759803.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT6253514b81a2f7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:22,676 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - INFO - Network status has changed to NetworkStatus.CONNECTED. Starting networking... 2024-10-24 08:50:22,774 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:22,774 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:22,774 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:50:32,657 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66960.71000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:50:32,658 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:50:32,658 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01269000 BTC-USDT 66940.61000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:50:32,659 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:50:32,659 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting buy LIMIT order to Binance for 0.01268000 BTC-USDT 66994.21000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:50:32,660 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit BUY order to Binance. Check API key and network connection. 2024-10-24 08:50:42,662 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759823.0, "order_id": "x-XEKWYICXBBCUT6253517c6eaf27ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:42,662 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT6253517c6eaf27ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759823.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT6253517c6eaf27ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:42,663 - 15 - hummingbot.connector.client_order_tracker - INFO - Created LIMIT BUY order x-XEKWYICXBBCUT6253517c6ea537ff0 for 0.01269000 BTC-USDT at 66980.81000000. 2024-10-24 08:50:42,663 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759823.0, "type": "OrderType.LIMIT", "trading_pair": "BTC-USDT", "amount": "0.01269000", "price": "66980.81000000", "order_id": "x-XEKWYICXBBCUT6253517c6ea537ff0", "creation_timestamp": 1729759813.0, "exchange_order_id": "31589693781", "leverage": 1, "position": "NIL", "event_name": "BuyOrderCreatedEvent", "event_source": "binance"} 2024-10-24 08:50:42,671 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759823.0, "order_id": "x-XEKWYICXBBCUT6253517c6eb6f7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:42,671 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT6253517c6eb6f7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759823.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT6253517c6eb6f7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:42,673 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759823.0, "order_id": "x-XEKWYICXBBCUT6253517c6e8a57ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:50:42,673 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXBBCUT6253517c6e8a57ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759823.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXBBCUT6253517c6e8a57ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:50:52,701 - 15 - hummingbot.connector.exchange.binance.binance_api_order_book_data_source.BinanceAPIOrderBookDataSource - INFO - Subscribed to public order book and trade channels... 2024-10-24 08:50:52,788 - 15 - hummingbot.connector.exchange.binance.binance_api_user_stream_data_source.BinanceAPIUserStreamDataSource - INFO - Successfully obtained listen key wlNzShsSuHixf07oVoqC3EjbRyaQhQRlQ4sXQ84zlscw0tdUmzsL9ERadi22 2024-10-24 08:50:52,793 - 15 - hummingbot.core.data_type.order_book_tracker - INFO - Initialized order book for BTC-USDT. 1/1 completed. 2024-10-24 08:51:12,680 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - INFO - Network status has changed to NetworkStatus.CONNECTED. Starting networking... 2024-10-24 08:51:12,765 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT6253517c6ea537ff0 amounting to 0.00050000/0.01269000 BTC has been filled at 66980.81000000 USDT. 2024-10-24 08:51:12,766 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759863.0, "order_id": "x-XEKWYICXBBCUT6253517c6ea537ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "66980.81000000", "amount": "0.00050000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3957003235", "exchange_order_id": "31589693781", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:51:12,787 - 15 - hummingbot.connector.client_order_tracker - INFO - The BUY order x-XEKWYICXBBCUT6253517c6ea537ff0 amounting to 0.01269000/0.01269000 BTC has been filled at 66980.81000000 USDT. 2024-10-24 08:51:12,787 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759863.0, "order_id": "x-XEKWYICXBBCUT6253517c6ea537ff0", "trading_pair": "BTC-USDT", "trade_type": "TradeType.BUY", "order_type": "OrderType.LIMIT", "price": "66980.81000000", "amount": "0.01219000", "trade_fee": {"percent": "0", "percent_token": "BNB", "flat_fees": [{"token": "BNB", "amount": "0E-8"}]}, "exchange_trade_id": "3957003237", "exchange_order_id": "31589693781", "leverage": 1, "position": "NIL", "event_name": "OrderFilledEvent", "event_source": "binance"} 2024-10-24 08:51:12,807 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:12,807 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:12,807 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:12,808 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:12,896 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759863.0, "order_id": "x-XEKWYICXBBCUT6253517c6ea537ff0", "base_asset": "BTC", "quote_asset": "USDT", "base_asset_amount": "0.01269000", "quote_asset_amount": "849.9864789000000000", "order_type": "OrderType.LIMIT", "exchange_order_id": "31589693781", "event_name": "BuyOrderCompletedEvent", "event_source": "binance"} 2024-10-24 08:51:12,904 - 15 - hummingbot.connector.client_order_tracker - INFO - BUY order x-XEKWYICXBBCUT6253517c6ea537ff0 completely filled. 2024-10-24 08:51:22,010 - 15 - hummingbot.connector.client_order_tracker - INFO - Created LIMIT SELL order x-XEKWYICXSBCUT6253517c6ebe67ff0 for 0.01268000 BTC-USDT at 66997.40000000. 2024-10-24 08:51:22,017 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759873.0, "type": "OrderType.LIMIT", "trading_pair": "BTC-USDT", "amount": "0.01268000", "price": "66997.40000000", "order_id": "x-XEKWYICXSBCUT6253517c6ebe67ff0", "creation_timestamp": 1729759813.0, "exchange_order_id": "31589719480", "leverage": 1, "position": "NIL", "event_name": "SellOrderCreatedEvent", "event_source": "binance"} 2024-10-24 08:51:22,175 - 15 - hummingbot.core.data_type.order_book_tracker - INFO - Initialized order book for BTC-USDT. 1/1 completed. 2024-10-24 08:51:22,480 - 15 - hummingbot.connector.exchange.binance.binance_api_order_book_data_source.BinanceAPIOrderBookDataSource - INFO - Subscribed to public order book and trade channels... 2024-10-24 08:51:22,847 - 15 - hummingbot.connector.exchange.binance.binance_api_user_stream_data_source.BinanceAPIUserStreamDataSource - INFO - Successfully obtained listen key wlNzShsSuHixf07oVoqC3EjbRyaQhQRlQ4sXQ84zlscw0tdUmzsL9ERadi22 2024-10-24 08:51:42,812 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:42,813 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:42,813 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:42,813 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:52,425 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:52,425 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:52,425 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:51:52,426 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:02,515 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66997.54000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:02,516 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:02,517 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67044.43000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:02,517 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:02,520 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67004.24000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:02,520 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:02,520 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67024.33000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:02,521 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:02,532 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 1/10 2024-10-24 08:52:02,534 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759913.0, "order_id": "x-XEKWYICXSBCUT625351ac3f6767ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:02,535 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351ac3f6767ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759913.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351ac3f6767ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:02,535 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 2/10 2024-10-24 08:52:02,537 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759913.0, "order_id": "x-XEKWYICXSBCUT625351ac3f8f77ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:02,537 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351ac3f8f77ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759913.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351ac3f8f77ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:02,537 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 3/10 2024-10-24 08:52:02,539 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759913.0, "order_id": "x-XEKWYICXSBCUT625351ac3f7ac7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:02,540 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351ac3f7ac7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759913.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351ac3f7ac7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:02,540 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 4/10 2024-10-24 08:52:02,543 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759913.0, "order_id": "x-XEKWYICXSBCUT625351ac3f8577ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:02,543 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351ac3f8577ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759913.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351ac3f8577ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:02,649 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:02,651 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:02,651 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:02,651 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:13,260 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:13,260 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:13,261 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:13,261 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:13,598 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - INFO - Network status has changed to NetworkStatus.CONNECTED. Starting networking... 2024-10-24 08:52:13,698 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67044.43000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:13,698 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:13,699 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66997.54000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:13,699 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:13,699 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67024.33000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:13,700 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:13,700 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67004.24000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:13,700 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:13,701 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 5/10 2024-10-24 08:52:13,704 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759923.0, "order_id": "x-XEKWYICXSBCUT625351e5c8e537ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:13,704 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351e5c8e537ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759923.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351e5c8e537ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:13,705 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 6/10 2024-10-24 08:52:13,707 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759923.0, "order_id": "x-XEKWYICXSBCUT625351e5c8c6a7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:13,707 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351e5c8c6a7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759923.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351e5c8c6a7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:13,707 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 7/10 2024-10-24 08:52:13,709 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759923.0, "order_id": "x-XEKWYICXSBCUT625351e5c8df87ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:13,709 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351e5c8df87ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759923.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351e5c8df87ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:13,710 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 8/10 2024-10-24 08:52:13,711 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759923.0, "order_id": "x-XEKWYICXSBCUT625351e5c8d6d7ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:13,712 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351e5c8d6d7ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759923.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351e5c8d6d7ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:13,974 - 15 - hummingbot.core.data_type.order_book_tracker - INFO - Initialized order book for BTC-USDT. 1/1 completed. 2024-10-24 08:52:23,830 - 15 - hummingbot.connector.exchange.binance.binance_api_order_book_data_source.BinanceAPIOrderBookDataSource - INFO - Subscribed to public order book and trade channels... 2024-10-24 08:52:33,568 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66997.54000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:33,569 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:33,569 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67024.33000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:33,569 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:33,569 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67044.43000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:33,570 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:33,570 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67004.24000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:33,570 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:33,575 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 9/10 2024-10-24 08:52:33,577 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759944.0, "order_id": "x-XEKWYICXSBCUT625351effb0e67ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:33,577 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351effb0e67ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759944.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351effb0e67ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:33,577 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 10/10 2024-10-24 08:52:33,579 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759944.0, "order_id": "x-XEKWYICXSBCUT625351effb2a67ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:33,579 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351effb2a67ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759944.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351effb2a67ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:33,579 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 11/10 2024-10-24 08:52:33,581 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759944.0, "order_id": "x-XEKWYICXSBCUT625351effb3037ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:33,581 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351effb3037ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759944.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351effb3037ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:33,581 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Open order failed. Retrying 12/10 2024-10-24 08:52:33,583 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759944.0, "order_id": "x-XEKWYICXSBCUT625351effb2327ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:33,583 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT625351effb2327ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759944.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT625351effb2327ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:33,908 - 15 - hummingbot.connector.exchange.binance.binance_api_user_stream_data_source.BinanceAPIUserStreamDataSource - INFO - Successfully obtained listen key wlNzShsSuHixf07oVoqC3EjbRyaQhQRlQ4sXQ84zlscw0tdUmzsL9ERadi22 2024-10-24 08:52:43,934 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67004.24000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:43,934 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:43,937 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759954.0, "order_id": "x-XEKWYICXSBCUT62535202ba9607ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:43,937 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT62535202ba9607ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759954.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT62535202ba9607ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:43,938 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 66997.54000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:43,939 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:43,941 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759954.0, "order_id": "x-XEKWYICXSBCUT62535202ba8787ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:43,941 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT62535202ba8787ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759954.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT62535202ba8787ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:44,026 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01267000 BTC-USDT 67044.43000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:44,026 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:44,027 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - NETWORK - Error submitting sell LIMIT order to Binance for 0.01268000 BTC-USDT 67024.33000000. Traceback (most recent call last): File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 452, in _create_order await self._place_order_and_process_update(order=order, **kwargs,) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 469, in _place_order_and_process_update exchange_order_id, update_timestamp = await self._place_order( File "/home/hummingbot/hummingbot/connector/exchange/binance/binance_exchange.py", line 198, in _place_order order_result = await self._api_post( File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 867, in _api_post return await self._api_request(*args, **kwargs) File "/home/hummingbot/hummingbot/connector/exchange_py_base.py", line 906, in _api_request request_result = await rest_assistant.execute_request( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 47, in execute_request response = await self.execute_request_and_get_response( File "/home/hummingbot/hummingbot/core/web_assistant/rest_assistant.py", line 100, in execute_request_and_get_response raise IOError(f"Error executing request {method.name} {url}. HTTP status is {response.status}. " OSError: Error executing request POST https://api.binance.com/api/v3/order. HTTP status is 400. Error: {"code":-2010,"msg":"Account has insufficient balance for requested action."} 2024-10-24 08:52:44,027 - 15 - hummingbot.connector.exchange.binance.binance_exchange.BinanceExchange - WARNING - Failed to submit SELL order to Binance. Check API key and network connection. 2024-10-24 08:52:53,955 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759964.0, "order_id": "x-XEKWYICXSBCUT62535202baa237ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:53,955 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT62535202baa237ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759954.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT62535202baa237ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:53,958 - 15 - hummingbot.core.event.event_reporter - EVENT_LOG - {"timestamp": 1729759964.0, "order_id": "x-XEKWYICXSBCUT62535202ba9c57ff0", "order_type": "OrderType.LIMIT", "event_name": "MarketOrderFailureEvent", "event_source": "binance"} 2024-10-24 08:52:53,958 - 15 - hummingbot.connector.client_order_tracker - INFO - Order x-XEKWYICXSBCUT62535202ba9c57ff0 has failed. Order Update: OrderUpdate(trading_pair='BTC-USDT', update_timestamp=1729759954.0, new_state=<OrderState.FAILED: 6>, client_order_id='x-XEKWYICXSBCUT62535202ba9c57ff0', exchange_order_id=None, misc_updates=None) 2024-10-24 08:52:54,206 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:54,206 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:54,207 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:54,207 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:54,207 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:54,207 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:54,207 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:52:54,207 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,761 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,762 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,762 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,762 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,762 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,762 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,763 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:03,763 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:13,836 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:13,837 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position. 2024-10-24 08:53:13,837 - 15 - hummingbot.strategy_v2.executors.position_executor.position_executor - ERROR - Not enough budget to open position.
This will fail faster. (cooldown time ?)
id: GpUEYQMYPM1wLJLMeWvsBCRYsnpCaCNPxQqebJkXSuJt controller_name: pmm_simple controller_type: market_making total_amount_quote: 6800 manual_kill_switch: null candles_config: [] connector_name: binance trading_pair: BTC-USDT buy_spreads:
- 0.0002
- 0.0004
- 0.0006
- 0.0009 sell_spreads:
- 0.0002
- 0.0004
- 0.0006
- 0.0009 buy_amounts_pct: null sell_amounts_pct: null executor_refresh_time: 180 cooldown_time: 1 leverage: 1 position_mode: ONEWAY stop_loss: 0.03 take_profit: 0.0001 time_limit: 600 take_profit_order_type: 3 trailing_stop: activation_price: 0.015 trailing_delta: 0.003
I think this is an issue with your configs, not the strategy nor connector:
cooldown_time: 1 - refreshing your orders every 1 sec doesn't make sense since it may take 2-3 seconds for your order to hit the exchange and come back. I recommend starting with 10s and reducing to see what the limit is reliably.take_profit: 0.0001: you're setting TP at 1 bps while your bid-ask spread btw your buy/sell orders is 4 bps. this is guaranteed to lose you money on every buy order filled!
Note that Hummingbot does have limits given that it's talking to exchanges over the Internet and various blockchains, so you should design your configs thoughtfully.
Fengtality - yes, last was set to 1 to demonstrate how to speed up testing issue. But as you can see at previous configs, i started with default 15, than tested 10 and also tested 20, issue is still same even at 20.. At video posted by Fede, its definitively not waiting 15 seconds to place order, its almost instantly. So, coold down time is not issue with all the instances instead of last one.
take_profit at 0.0001 works here at pmm with v2 as it creating take profit orders (not like old pmm), so its last_buy + 0,0001 in this strategy.
Goal is simple, make it fast and Fede demonstrated that it is possible. For me, its not working even with 20 seconds delay, whitch is something terrible, maybe it will be faster to fill orders manualy..
Even old PMM is way faster (but has different problems)
Had been monitoring our bot on binance for the last 9d and not able to reproduce orders stuck on exchange using updates from v2.7.0
- Logs does not indicate any of the reported errors on the github issue