Is it possible to execute bot on closed market? because I am testing a strategy tand want to check who is the winner and looks like bot stops after market close
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 -
Subscribe for BF Explorer Community Subscription Plan.
Hello Can I please subscribe for bfexplorer community subscription plan ? Thanks
22.5.2020 0:28:44
-
In the new year I will release the new version of bfexplorer. If you want to test the preview version, please download it from my dropbox: https://www.dropbox.com/s/ewmbdcgqf75ak3t/Bfexplorer.msi?dl=0
18.11.2022 11:05:33 -
Version 2.0.8174 Cumulative updates. Version 2.0.8117 Adding GoalBeingScored parameter to Football bot. Version 2.0.8113 Adding StopBotExecutionOnMarketVersionChange parameter to all selection bots. Version 2.0.8077 Betfair API update for 1 GBP minimal stake and Data Context Browser ...
4.8.2022 10:03:48 -
Não consigo acessar o aplicativo Bfexplorer...pede o codigo de subscrição, ja coloquei o que tem no forum, mas nao dar certo, o que faço?
18.5.2022 8:34:52
Comments ( 1 )
Stefan
You cannot execute betfair bot on a closed market. On the other hand you can run a bot on an open market and override EndExecution method, where you can check whether the market is really closed and then do whatever you want to.
The EndExecution method is call as well when market is stopped or bot execution is finished, therefore you need to check: if market.MarketStatus = MarketStatus.Closed
https://github.com/StefanBelo/Bfexplorer-BOT-SDK/blob/master/MyFsharpBot/ReportWinnerBot.fs
My bot example is in F#, but you can write your bot code in any .net programming language. Use LINQ to implement similar code like I used in my F# code.