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
-
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 -
Let’s say we are in the processing of testing ML strategy. We run the strategy automatically each day on horse racing win markets using Strategy Bot Executor tool. The tool reports profit/loss results for each market and total profit. In the Output view we can see all messages the strategy ...
16.2.2022 18:21:32
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.