You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes after stop-loss sell order is closed the buy grid is not reset properly and new buy order is opened using next grid trade parameters while previous grid trades don't exist anymore.
To Reproduce
It happend two times for me yet but I have no specific reproduction steps except both times it happend right after the stop-loss sell order has been closed..
Expected Behaviours
It should always clear buy grid after stop-loss sell order and then start a new trade.
Screenshots
Additional context
This is the only issue I have after deterministic queue implemented. As the symbol processing is strictly serialized now I suspect there is some code running out of the queue or there is missing await keyword somewhere on timing critical database operation causing the write is performed after a new buy order action is determined. 🤔
Edit: It's probably caused by Temporary disable for buying (minutes) set to zero. There should be lowest limit of at least one second to wait before new buy order is opened.
The text was updated successfully, but these errors were encountered:
Version
v0.0.96 - development
Description
Sometimes after stop-loss sell order is closed the buy grid is not reset properly and new buy order is opened using next grid trade parameters while previous grid trades don't exist anymore.
To Reproduce
It happend two times for me yet but I have no specific reproduction steps except both times it happend right after the stop-loss sell order has been closed..
Expected Behaviours
It should always clear buy grid after stop-loss sell order and then start a new trade.
Screenshots
Additional context
This is the only issue I have after deterministic queue implemented. As the symbol processing is strictly serialized now I suspect there is some code running out of the queue or there is missing
await
keyword somewhere on timing critical database operation causing the write is performed after a new buy order action is determined. 🤔Edit: It's probably caused by
Temporary disable for buying (minutes)
set to zero. There should be lowest limit of at least one second to wait before new buy order is opened.The text was updated successfully, but these errors were encountered: