Page 1 of 1

In Play Statistics logical operators

Posted: Thu Feb 25, 2021 4:11 pm
by BogdanVisan
Hi,

I was testing some strategies that hedged when some in play conditions are satisfied and realized that I don't have the possibility to check condition1 OR condition2. This should be a default behavior since it gives so much more flexibility when building strategies. If you want for example to distinguish between home team and away team for football, you'd have to create different strategies.

In my case, I would love to check if home team has more possession or if the away team has more possession, for example, and do something based on that(hedge, place bet, etc) but in the same strategy.

Will be this implemented any time soon?

Thank you!

Re: In Play Statistics logical operators

Posted: Thu Feb 25, 2021 4:28 pm
by BfBotManager
At Hedge->Market conditions tab you can add football in play statistics rules, so that hedge gets triggered when those rules are satisfied.

Re: In Play Statistics logical operators

Posted: Thu Feb 25, 2021 5:55 pm
by BogdanVisan
I think I haven't made my self clear with what is the actual problem.

let me put it this way. How can I achieve this:
hedge when any team gets a red card OR hedge when home team has 60% possession OR away team has 60% possession AND total shots on target is 6

How it works right now(or at least that's my understanding) is that all the conditions must be matched in order to hedge and what I want is to hedge when some of them are satisfied.

Now it hedges when:
ConditionA
AND
ConditionB
AND
ConditionC

What I want:
ConditionA
AND
ConditionB
OR
ConditionC

Is this possible?

Re: In Play Statistics logical operators

Posted: Thu Feb 25, 2021 6:15 pm
by BfBotManager
Just add two Hedge rules, one for conditions A and B, and second one for condition C.

Only one hedge rule will execute.

Pleas test it in simulation mode.

Re: In Play Statistics logical operators

Posted: Thu Feb 25, 2021 10:25 pm
by BogdanVisan
Thank you, that might solve my problem.