Hi Stefan. I have 1 last coding question that I am stuck on, that hopefully you have a generic one coded already. I'd like a list of mySelections generated from criteria matched from 2 other lists. For example, List1 has all selections sorted in order of profit, and list2 has all selections with unmatched lay bets, so I would like to generate a list3 that has all selections that are have profit > 0 and have unmatched lay bets. Could you please share how to do this?
Community Articles
- Popular
- Recent
- Comments
-
Hello. Since yesterday I have a delayed API on my BF Explorer trading software. I had no bots running when this happened and now I am also unable to trade as all stakes in the markets keep flashing all over the ladders on random odds, being absolutely impossible to figure out what was the last price ...
9.5.2020 16:19:41 -
I tried BFexplorer, having used 3-4 different software applications beforehand. The 2 days utilising the software, I managed to get a feel for the product and like the modern display on the black background. Bets placed were very responsive with no lagging experienced from other products. A few ...
25.3.2015 17:55:00 -
Version 3.23.1126 Cumulative updates to the Bfexplorer Preview version (.net 9.0) Version 3.22.0821 Cumulative updates to the Bfexplorer Preview version Version 3.10.0721 Cumulative updates to the Bfexplorer Preview version (.net 8.0) Version 3.9.0425 Cumulative ...
26.11.2024 10:54:45
-
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 -
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 -
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
- by : adska
- by : adska
- by : Betfair Bot
- by : Betfair Bot
- by : Betfair Bot
- by : TheWood
Comments ( 1 )
Betfair Bot
I do not know why you need two other lists to make your new list having only selections with profit and unmatched lay bets.
Any information you need are in Selection object. I created short console script where you can see how to make different filter functions:
ShowSelectionsWithProfitAndUnmatchedBets.fsx
Basically you should orchestrate bot strategy(ies) execution in your trigger code, so the same way you can query for running bots, and running bot on a selection is still indication that your trading session, or bet placing is not yet finished.
Another hint, please really use Visual Studio InteliSense support, as typing . (dot) in the name of object variable gives you all properties or methods you can use on the object. I mean what I created you could figure out as well.