Thanks for this. Suggestion: put the bid on the left, ask on the right.
Also, it is quite feasible to have AutoIt run tasks in parallel, or rather to simulate running them in parallel. You put each task in its own subroutine. Then you call all the tasks from a master dispatcher loop. Each task checks its own timer and executes if it's time to execute, and otherwise just returns. This is a "round-robin non-pre-emptive task scheduler". (My experience writing bots to play Evony finally pays off!)