-
A kinf of Lay the Draw at (around) Halftime
Hi,
I’m a new member here. I've spent some days watching a number of videos, reading community and blog articles, and testing the software in Practice Mode, and I must say it’s really awesome.
There are still many details I don't know, but to date I've managed to set up a sort of Lay ...
27.3.2026 9:13:29
-
Bfexplorer Latest Release
Version 5.07.0322
The cumulative Betfair AI Trading, Create Strategy Settings LLM support. Install from Bfexplorer Preview version.
Version 4.11.0214
The cumulative Betfair AI Trading. Install from Bfexplorer Preview version.
Version 4.10.1227
The cumulative ...
23.3.2026 17:38:27
-
Machine Learning vs. AI Agents in Sports Betting: A Paradigm Shift
In a previous post, we talked about how difficult it can be to build a standard Machine Learning (ML) system for Betfair from scratch. It requires a lot of work, including handling data, coding live pipelines, and managing databases. But now, a new method is changing everything: AI Agents using ...
30.1.2026 15:20:00
Comments ( 1 )
Betfair Bot
One of TriggerResult discriminated unions entry is:
TriggerResult.OpenAssociatedMarkets of string[] * (DataResult<Market list> -> unit)
Allowing requesting associated markets to the market you are running your bot on.
Every market is open as bet event on betfair, and you have got access to this information:
market.MarketInfo.BetEvent
So bfexplorer when you request TriggerResult.OpenAssociatedMarkets knows for which bet event id the associated markets should be queried.
Please have a look at on this bot trigger script:
HorseRacingWinToBePlacedData.fsx
Basically your bot has access to all betfair api methods:
myBfexplorer.BfexplorerService.BetfairServiceProvider
So you could be able to write any code against betfair api. The question is, is this approach practical?
Your bot is executed on exact type of market, for instance on horse racing win market, so what markets would you like to open in Bet Event view? Tennis match odds market, or football match odds market?
In any such scenario common sense dictates that you want to open associated market for bet event on which your bot is running, for instance place horse racing market, when your bot runs on win horse racing market and so on.
If you want to build your bespoke app on bfexplorer app, you can do so like I present in this article:
Bfexplorer Plugin Support