For a selection: With matched bets, how can I get the total stake and averaged odds for both back and lay? With unmatched bets, how to get the betType, stakes and odds? And lastly, how to cancel an unmatched bet? Thanks
Getting Matched Volume at index
Is there an easy method to get the matched volumes at index 1, 2 etc and -1, -2 etc? For example it is easy to get the odds: let LayPriceLevel (selection:Selection) index = selection.ToLay.Prices.[index].Price/selection.ToBack.Prices.[index].Price and easy to get the amount ...
Betfair SP Stake
When I place a Betfair SP bet, it only shows matched in the Market Bets window,but the stake shows 0. When the event starts, then the stake shows (as well as the odds of course). Also all the codes that I can find on showing the BSP (near far etc) don't show anything in the ...
Локатор на футбол
From MarketFeeder forum: Подскажите как убрать из лиг женские и молодежки может константа есть или все в ручную ? Bfexplorer Solution: To filter out unwanted football matches we can use whatever column data we want. In this case we need to use Event column and filter matches that does not ...
Market Depth Price/Volume Levels
With Market Depth, using Stefan's code to Place Bet At Empty Price, I have added a count variable to it so that you can check price at different Market Depth levels: https://github.com/PeterEsgate/BfexplorerTestBots/blob/master/Market%20Depth%20Levels And with the ...
Selections list from matched criteria
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 ...
Using Multiple Bot Parameters
With my bot (still in design and testing stage), when it executes I'd like it to have a different effect on different selections, so I tried something like this: | TriggerStatus.StartTradingSessionPick1 status <- TriggerStatus.StartTradingSessionPick2 let ...
Bot Trigger Building Part 4
In the final Part of this tutorial, I would like the bot to stop and give us a warning message in the console if it has had X losses in a row. Seeing as the bot runs fully automatic, if I am not in front of the computer and for whatever reason I am having a bad run, I'd like to limit my losses so ...
Bot Trigger Building Part 3
Now that we have a working bot, I'd like to monitor the odds of my selection if matched, so that if it looks like my trade is not going good, I'd like to limit my losses. To this effect I would like to have a trigger that if my selection has a lay trade that was matched due to the previous triggers ...
Bot Trigger Building Part 2
Now that the selection has been identified (in Part 1, a horse in lane x in a race with more than x selections), I'd like some triggers to be met before initiating a trade. Firstly, for this example, I'd like to place a lay bet only when the horse has odds in range 10 to 20 when the following 2 ...