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 5.14.0830 The cumulative updates. Install from Bfexplorer Preview version. Version 5.13.0818 The cumulative updates. Install from Bfexplorer Preview version. Version 5.07.0322 The cumulative updates: Betfair AI Trading, Create Strategy Settings LLM ...
30.8.2026 11:42:48
-
Bfexplorer - Betfair Strategy Builder
The Bfexplorer Betfair trading application offers a wide range of pre-built strategies. These can be categorized into three main groups: 1. General Strategies: Basic actions for placing bets.2. Trading Strategies: Complex maneuvers that execute both an opening bet and a closing action ...
2.9.2026 13:56:00 -
A bfexplorer user took the time to create the following Bfexplorer Reference Guide for us all. You can download it from following links: Bfexplorer New User Guide Bfexplorer Reference Guide Bfexplorer Strategy Builder Reference TOS Bfexplorer Bridge Implementation Guide
30.8.2026 18:37:01 -
Version 5.14.0830 The cumulative updates. Install from Bfexplorer Preview version. Version 5.13.0818 The cumulative updates. Install from Bfexplorer Preview version. Version 5.07.0322 The cumulative updates: Betfair AI Trading, Create Strategy Settings LLM ...
30.8.2026 11:42:48
- by : layteruk10
- by : Stefan
- by : Nixc0rdant
- by : Stefan
- by : layteruk10
- by : layteruk10
Comments ( 1 )
Stefan
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.