Have searched without success.
Mainly using on T20 games, I want to lay both Team 1 and Team 2 @1.90 and @1.80, both offset with greening @2.0. No problem setting that with global settings.
However, once I have greened up, I want the process to begin again ie: place lay bets again @1.90 and @1.80 offset with greening @2.0. How do I achieve that using automation??
Cheers Bob
Recycling bets once greened
- ShaunWhite
- Posts: 10560
- Joined: Sat Sep 03, 2016 3:42 am
I think there's a rule type mentioned in the user guide called Checkpoint or Reset or something like that.bobalski wrote: ↑Tue Dec 24, 2024 4:02 amHave searched without success.
Mainly using on T20 games, I want to lay both Team 1 and Team 2 @1.90 and @1.80, both offset with greening @2.0. No problem setting that with global settings.
However, once I have greened up, I want the process to begin again ie: place lay bets again @1.90 and @1.80 offset with greening @2.0. How do I achieve that using automation??
Cheers Bob
if you need the entire logic you can do something like this:
set stored value cycleComplete = 1 for market by default
lay 1.90 if cycleComplete = 1, set cycleComplete = 0 as bet fires, also store matched lay bet volume at 1.90 on that selection
lay 1.80 if cycleComplete = 1, set cycleComplete = 0 as bet fires, also store matched lay bet volume at 1.80 on that selection
monitor for 1.90 to be >x% matched (if matched be volume at price = initial store plus x% stake size)→ set stored value team1MostlyMatched = 1
offer green stake @ 2.0 -or- monitor selection price >2.0 then green
monitor for 1.80 to be >x% matched (repeat above but for other selection) → set stored value team2MostlyMatched = 1
offer green stake @ 2.0 -or- monitor selection price >2.0 then green
repeat inital bet offer monitoring process for completed green, set stored value team1Greened & team2Greened = 1 accordingly
monitor for team1Greened & team2Greened both = 1, then set cycleComplete for market = 1, also clear all other stored values ready for next cycle
feel free to add additional conditions or cancels for your lays/hedges to execute based on your T20 expertise as well to improve EV as this alone won't make money if your orders are just sat in the market waiting (you'll mostly just get matched when prices go through you), assuming you are betting in-play
set stored value cycleComplete = 1 for market by default
lay 1.90 if cycleComplete = 1, set cycleComplete = 0 as bet fires, also store matched lay bet volume at 1.90 on that selection
lay 1.80 if cycleComplete = 1, set cycleComplete = 0 as bet fires, also store matched lay bet volume at 1.80 on that selection
monitor for 1.90 to be >x% matched (if matched be volume at price = initial store plus x% stake size)→ set stored value team1MostlyMatched = 1
offer green stake @ 2.0 -or- monitor selection price >2.0 then green
monitor for 1.80 to be >x% matched (repeat above but for other selection) → set stored value team2MostlyMatched = 1
offer green stake @ 2.0 -or- monitor selection price >2.0 then green
repeat inital bet offer monitoring process for completed green, set stored value team1Greened & team2Greened = 1 accordingly
monitor for team1Greened & team2Greened both = 1, then set cycleComplete for market = 1, also clear all other stored values ready for next cycle
feel free to add additional conditions or cancels for your lays/hedges to execute based on your T20 expertise as well to improve EV as this alone won't make money if your orders are just sat in the market waiting (you'll mostly just get matched when prices go through you), assuming you are betting in-play
Thx Shaun. There is a 'Checkpoint Matched Bets' rule in the user guide which looks promising. Cheers for that.ShaunWhite wrote: ↑Tue Dec 24, 2024 4:34 am
I think there's a rule type mentioned in the user guide called Checkpoint or Reset or something like that.
Thx 8bo.eightbo wrote: ↑Tue Dec 24, 2024 4:40 amif you need the entire logic you can do something like this:
set stored value cycleComplete = 1 for market by default
lay 1.90 if cycleComplete = 1, set cycleComplete = 0 as bet fires, also store matched lay bet volume at 1.90 on that selection
lay 1.80 if cycleComplete = 1, set cycleComplete = 0 as bet fires, also store matched lay bet volume at 1.80 on that selection
monitor for 1.90 to be >x% matched (if matched be volume at price = initial store plus x% stake size)→ set stored value team1MostlyMatched = 1
offer green stake @ 2.0 -or- monitor selection price >2.0 then green
monitor for 1.80 to be >x% matched (repeat above but for other selection) → set stored value team2MostlyMatched = 1
offer green stake @ 2.0 -or- monitor selection price >2.0 then green
repeat inital bet offer monitoring process for completed green, set stored value team1Greened & team2Greened = 1 accordingly
monitor for team1Greened & team2Greened both = 1, then set cycleComplete for market = 1, also clear all other stored values ready for next cycle
feel free to add additional conditions or cancels for your lays/hedges to execute based on your T20 expertise as well to improve EV as this alone won't make money if your orders are just sat in the market waiting (you'll mostly just get matched when prices go through you), assuming you are betting in-play
As an Aussie you'd be aware of the total pain in the ass our inplay rules are. I have a main 'before the off' strategy I use on the T20. Very successful last BBL season, although no success in the IPL with the exact same strategy. Showing a profit so far this BBL season.
I've taken to opening a secondary BA screen in practice mode to work on some in play strategies. So far I have been able to just manually trade by watching the games each night, but as I'll be at my kids place in Sydney for a few days coming over Xmas, just been tinkering to see if I can automate the strategies while I'm away. It's practice mode, so no biggie, plenty more games to practice.
The end game is to investigate using a VPN to circumvent the restrictions if the strategies prove successful.
Cheers