71
Triggered betting / Re: Limiting number of markets open
« Last post by MarkV on 16 May 2023, 14:44 »Hi
According to your description it should be less than min_price OR higher than max_price
but your conditions are "and"
AND
Selections lay price is less than min_price
and Selections lay price is greater than max_price
should be:
or Selections lay price is greater than max_price
could also use instead of above:
and selections lay price is outside min_price and max_price
regarding deleting settled markets add a condition:
or markets status is settled
please test in test mode until you're confident it works as you want it to
According to your description it should be less than min_price OR higher than max_price
but your conditions are "and"
AND
Selections lay price is less than min_price
and Selections lay price is greater than max_price
should be:
or Selections lay price is greater than max_price
could also use instead of above:
and selections lay price is outside min_price and max_price
regarding deleting settled markets add a condition:
or markets status is settled
please test in test mode until you're confident it works as you want it to