-
Can you describe this image and explain
If you have a problem using bfexplorer, just create a screenshot and ask an AI like Grok to describe its functionality:
Detailed Description of the Image
The image is a screenshot of a software interface titled "My Strategies to Execute", which appears to be part of a trading or betting platform, ...
19.4.2025 15:13:02
-
Football Next Goal Strategy
Strat is as follows, at min 79 of a game, I place a lay bet on the next goal market for a max period of 5 mins, then take the profit offered or if a goal is scored then the trades ends.
The criteria are as follows.
Odds at minute 79 of the game must be between 1.7 & 3.0 on the next goal ...
17.4.2025 15:49:29
-
I want to build ML model
Building a model for horse racing betting involves several steps. Here's a structured approach to get you started:
1. **Understand Horse Racing**: Familiarize yourself with the rules of horse racing, types of races, and the factors that influence race outcomes (e.g., horse form, jockey performance, ...
9.4.2025 17:07:21
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