trigger bet after certain time has lapsed
-
- Posts: 5
- Joined: Thu May 30, 2019 9:01 pm
I am relatively new. I want to trigger a bet once the amount of money waiting to be matched at best price drops by a certain percentage over a number of seconds. Any suggestions?
Create a rule that stores the money waiting at the desired price every "number of seconds" (call it moneyWaiting). Store the best price every "number of seconds" (call it bestPrice).gimmeshelter wrote: ↑Mon Mar 02, 2020 11:53 amI am relatively new. I want to trigger a bet once the amount of money waiting to be matched at best price drops by a certain percentage over a number of seconds. Any suggestions?
Then another rule with stored value condition
Money available at bestPrice < x% * moneyWaiting
Trouble is the best price will vary so you may need some additional conditions to help point to the price you want.
-
- Posts: 5
- Joined: Thu May 30, 2019 9:01 pm
yesgimmeshelter wrote: ↑Mon Mar 02, 2020 2:19 pmThanks for your reply. Which rule type do I choose for this? Set/Modify a stored value only?