Hi,
Here are a couple of examples.
=IF(AND($E$2="In Play",$F$2="",$A5<>"",RIGHT($A5,1)<>")"),"LAY-F5","")
Above Trigger checks for non runners and will after the market has turned in play fire a lay bet which if not matched in 5 seconds will be cancelled.
The Bet Reference cell now contains CANCELLED thus stopping further bets on that selection.
All the conditions enclosed in the AND statement must be true for the trigger to fire.
Add your new conditions separated by commas.
The next trigger example does all of the above but now will only fire if the lay odds are greater than 3 and less than or equal to 10.
=IF(AND($E$2="In Play",$F$2="",$A5<>"",RIGHT($A5,1)<>")",$H5>3,$H5<=10),"LAY-F5","")
Hope that's of some help.
PS Do test your triggers extensively though before relying on them with real money
