-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to understand if the bot is working? #15
Comments
Hi! 0 buy and 0 sell orders it's malfunction state. Normal operational status is same order (min 1) for grid side and one TP. For short time after start or restart cycle only grid orders are possible, this is the grid shift mode. |
Thank you. Why might there be such an error? main.account_name: Demo - Binance
|
Hi! First - try clear start, without
next -
The strategy is focused for use on cheap VPS with limited memory and before start cycle tested availability memory, if used_memory > 70% of total - don't start. |
Thanks, solved the problem. I tried to run on the main account, but a new error occurs: main.account_name: Binance Why might there be such an error? Index pointed - 1 |
Hi! Reason is incomplete account setup, it's two part:
The account name must be identically for account. I update readme and add handler for this error some later. Thank's, Jerry. |
Hi! It's normal. Amount first grid order depend from step_size (trade rules for exchange/account/pair and may be different for test and real place - compare it) and some another parameters: if not additional_grid and not grid_update and not GRID_ONLY and PROFIT_MAX < 100:
k_m = 1 - PROFIT_MAX / 100
amount_first_grid = max(amount_min, (step_size * base_price / ((1 / k_m) - 1)) / base_price) For what? It is important for the TP order to meet the specified maximum price step, no more PROFIT_MAX, the smaller the volume of the first order, the greater the price spread for the TP sale. Trading rules for the pair are requested from the exchange when the strategy is initiated. |
And what is noted in the figures is not the purchase price, but the order volume in the second currency. |
Hi! For free Q&A you can use discussion area in this rep. |
I can't figure out whether the bot is working successfully or not. The bot works for several hours, but there are no purchases and sales. What could be the problem?
The text was updated successfully, but these errors were encountered: