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?
-
Add Your Comment
+Please login to your bfexplorer account, if you want to add a comment to this article.
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
-
Bet Event Window - Link to Betfair error
I'm logged with the Italian account, when clicking on the link to Betfair icon of teh Bet Event window it redirect to the following link https://www.betfair.com/exchange/calcio/event?id=34043880 instead of redirecting to the Italian ...
3.3.2025 21:26:05 -
I'm continuously hgettin a script error in the Web Browser window of bfexplorer, URL https://www.googletagmanager.com/gtag/js?id=G-641XZ3TTGT&cx=c&_slc=1
3.3.2025 21:16:18 -
Bfexplorer latest official version
I downloaded the Bfexplorer from the official download page and it contains only 39 bot strategies. In the forum all people disscuss about a lot of bot strategies ( tennis data to spreadsheet for example), but those aren't included in the site official download. Where is the latest version of ...
26.1.2025 13:34:22
-
Any method to redirect at a specific Country/area location in orddr to avoid this issue?
by : Mentore - by : Betfair Bot
- by : Mentore
-
I have no idea what original web page you want to open in web browser view.
by : Betfair Bot -
That is the way betfair works with localized version of web site.
by : Betfair Bot - by : Mentore
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.