Comments

  • Tony
    6.10.2021 20:10:14

    Earlier you said:

    "All live score data used by betfair are provided by third parties as well, so if score does not work, you must blame data provider not my app or betfair." 

    This is trully disappointing.

  • Graf
    6.10.2021 19:52:41

    My bots can't work like this

  • M0ss@d
    6.10.2021 19:43:36

    I never said what you stated is not true. What I say is that having only 2 livescores for 36 inplay matches is terrible.

  • M0ss@d
    6.10.2021 19:37:52

    Betfair has 36 inplay matches at this very momment...and there are only 2 (!!!) livescores working ! 

  • Stefan
    6.10.2021 18:56:21

    I have attached video from my test. You can both see that Football Live Score tool works fine for all matches betfair showing live scores as well. Not for all matches betfair web page shows live score, you can see that as well in my video.

    So what I said is true, if betfair web page shows live score my tool shows that score as well, for matches not covered by betfair my tool does not show score, as tool uses the same source of the live score feed.

    Mossad, I would expect apologies from you for what you said: “Not working also for me since yesterday. This Livescore is terrible and those arguments are ridiculous.”

  • Graf
    6.10.2021 13:47:53

    All japanese and thai matches that started at 11h and 12h with 0' and 0-0 score ? Sorry, but this is not Betfair problem.

  • Graf
    6.10.2021 13:43:03

    Problem persists. Tired of losing money because never know when livescores are working or not...

  • M0ss@d
    6.10.2021 13:25:32

    Not working also for me since yesterday. This Livescore is terrible and those arguments are ridiculous. :(

  • Tony
    6.10.2021 13:21:33

    So please check now, because it's still not working for me and for everyone else, so it's not "my problem". 

  • Stefan
    6.10.2021 10:33:07

    Sir, bfexplorer app uses undocumented betfair api to retrieve football scores. If you have got any problems with that feed then the problem is on your side or on betfair one. Betfair uses cloudflare to block misuse of their data. I hope it is not your case.

    Anytime you report problems I check it on my computer and all works fine for me.

  • Tony
    6.10.2021 2:05:32

    https://ibb.co/BLFKN9y

  • Tony
    6.10.2021 0:24:13

    Please Check:

    https://ibb.co/LnXFRrP

  • Stefan
    18.7.2021 17:41:17

    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.  

  • Stefan
    17.7.2021 13:06:18

    1)

    By using BetfairServiceProvider:

    https://github.com/StefanBelo/Bfexplorer-BOT-SDK/blob/master/TestScripts/TestBetfairServiceProvider.fsx

    By using BfexplorerService:

    https://github.com/StefanBelo/Bfexplorer-BOT-SDK/blob/master/TestScripts/TestBfexplorerService.fsx

    By using IBfexplorerService in Betfair Bot:

    https://github.com/StefanBelo/Bfexplorer-BOT-SDK/blob/master/MyFsharpBot/ShowMyAccountFundsBot.fs

    2)

    Bfexplorer offers bot named: "Place SP Bet", so using this bot you setup its criteria, name it, and then you are ready to use it in any bot trigger.

    Yes, you can find PlaceBet/s method/s on BetfairServiceProvider or  BfexplorerService, but in such case you need to know what you want to do exactly, so first please read betfair api documentation:

    https://docs.developer.betfair.com/display/1smk3cen4v3lu3yomq5qye0ni/placeOrders

  • Tony
    15.7.2021 20:32:01

    Yes, it was down only last night. It's working fine again. Thanks

  • M0ss@d
    15.7.2021 13:32:39

    Finally ! There was no football live scores data feed during all night. thank you.

  • Stefan
    15.7.2021 11:40:41

    I have checked football live score and football bot, and on all currently live matches there is score feed available.

  • M0ss@d
    15.7.2021 3:06:28

    All my bots also stopped working because of football live scores data feed. What is happening ???

  • adska
    12.7.2021 17:16:42

    Thanks, works perfect!

  • Stefan
    12.7.2021 17:12:53

    Trigger bot script is executed by bot named: "Execute Trigger Bot" and there is quite a lot of post about this bot on the bfexplorer forum.

    You cannot debug bot trigger script when the script is in .fsx file, because such script is built by bfexplorer so you have no access to the assembly.

    The bot trigger script can build in project assembly, just rename the bot script to .fs and add it to your bot assembly project. You must remove #r and #I directives, and because of IBotTrigger initialization by bfexplorer such bot script must be the only IBotTrigger object in your assembly.

    Again there are some posts on the bfexplorer forum showing how I debug bot trigger scripts without adding it to separate assembly, just search for IBotTrigger. Well yes, it was not true debugging in Visual studio, but I was able to use Visual Code as IDE for writing bot trigger code, and with all support of Intellisense and error checking when writing the bot trigger code in Visual Code.