How can I apply staking plans? BetFair betting bot - MarketFeeder Pro - triggered automated betting software
- FAQ
- How to make a trigger start 45 sec after or before the off?
- After I started MF Pro and opened 'Triggers', I can't see the triggers I added last time
- How do I stop it betting when my balance reaches certain level?
- My triggers are not working. What to do?
- How to calculate the amount I want to back to win £100?
- How can I apply staking plans?
- How can I cancel a trigger if another trigger has worked?
- How do I compare the current price with that 1 hour ago?
- How to bet a percent of the total bank
- How to bet on a selection based on its position in the list, and not its price
- How to make a trigger bet the default betting amounts specified for the market
- How to check or uncheck all selections in the market
- How to bet to a fixed liability/payout
- How to bet on the selection with the specific BetFair order
- How to cancel all unmatched bets if at least one was matched
- How to cancel unmatched bets and post them at the best price before the start of the event
- How to Dutch Selections Chosen By Specific Conditions
- How to bet in races with a specific number of runners?
- How to stop betting after x wins/losses in a row?
- How to back at lay odds and lay at back odds?
- How to eliminate the loss on possible winners In-Play?
- How to apply triggers to specific markets
- How to apply various stop-loss methods
- How to determine whether the previous event affected by a trigger has finished
- How to apply the 'Fill or kill' rule?
- Betting on selections whose IDs are given in Excel
- How to bet in horse races with specific distance
- Maximum Number of Markets - Some Notes
- Do I need to have MS Excel installed to run MarketFeeder Pro?
- Can MarketFeeder Pro trade in different currencies?
- Is it limited in bet size?
- Does it support multiple markets?
- What does Triggered Betting mean?
- Can I run my own macros in the spreadsheet connected to MarketFeeder Pro?
- How can it help me to earn money?
- Do I have to pay extra-fee for using BetFair API?
- I don't see a suitable trigger in the Trigger Examples
- What can I do if I connect MarketFeeder Pro to Excel?
- What is Auto-Greenup?
- How many triggers can I maintain at the same time?
- Can I connect external spreadsheets to MarketFeeder Pro?
- Will I be able to use the software at my home AND at my work?
- What markets can I trade in?
- Can I set up a trigger that watches or bets on several runners?
- Can MarketFeeder Pro bet in In-play markets?
- Can I check an event's state (for example Suspended or In-play) in my triggers?
- What happens to my Dutching bets when one or more runners are withdrawn?
- What options can I set for Auto-Dutching?
- How would I set up a trigger that allowed me to dutch the top four runners?
- I have 2 Betfair accounts and run 2 systems I'd like to work on both Betfair accounts using your software - one from my pc and one from my laptop. Is that possible?
- Can I save and recall defined triggers, pass them to another user?
- Can I sell triggers?
- Is it safe to use MarketFeeder Pro?
- Can I test my staking plans with MarketFeeder Pro?
- Starting MF pro causes unexpected closing. Why?
- Excel Cell References
- Cell Addressing
- Text and Values in One Cell
- How To Use Excel IF Function
- Functions
- How to Determine whether VBA is Enabled
- Adjusting formulas to your Regional Settings
- Excel AND Function
- Excel Date and Time Format
- How to optimize the load on computer resources
- Choosing your own winners when testing a system
- How to apply triggers to specific selections
- How to make staking plans work for my trigger
- Working with User Variables. Lesson 1
- Working with User Variables. Lesson 2
- Using Command Line to start the program
- Limiting the liability of a bet
- Dutching in place markets (markets with multiple winners)
- Transferring funds between main and Australian wallets
- Addressing win and place markets through variables. Lesson 1.
- How to know which trigger is working at the moment?
- Bets below the minimum - important information
- Controlling the number of betting transactions
- Betting at Starting Price (SP)
- Addressing win and place markets through variables. Lesson 2.
- Choosing the favourite among imported selections
- Tips for Programmers
- Tips based on the results of the first Trigger Battle
- ASK YOUR OWN QUESTION
- English
- Switch per la lingua italiana
New staking plans examples are available for version 6.0.
Using the "Win/Lose Trigger Variables" you can utilise various staking plans in MF Pro's triggers.
Here are several examples.
1. Backing or laying £10 and recouping losses in the next bets. Then returning to the original bet size as soon as the bet won.
Amount: IF(last_lost=0, 10, 10+last_lost)
2. Laying to the liability of £10 and recouping losses in the next bets. Then returning to the original bet size as soon as the bet won.
Amount: IF(last_lost=0, 10/(lay_price-1), 10/(lay_price-1)+last_lost)
3. Backing £10, and if the bet lost, adding £10 to every next bet until it wins, then reverting to the original bet size. For example, 10, 20, 30, 40, etc.
Amount: IF(last_lost=0, 10, 10+hist_1_backa)
For laying:
Amount: IF(last_lost=0, 10, 10+hist_1_laya)
4. Laying £10 and doubling bet size after every 2 losing events, till the bet wins. Then stopping. Example: 10, 10, 20, 20, 40, 40
Amount: IF(last_won=0, 10, IF(AND(last_lost>0, losses%2=0), hist_1_laya*2, hist_1_laya))
Condition to add to the trigger:
Total Won Amount is equal or less than 0
5. Add winnings from a back bet to the next bet size. Reset the bet amount to the original value if a bet loses. Example: 10@1.4 (won), 14@2.2 (won), 16.8@4.5 (lost), 10
Amount: IF(last_won>0, 10 + hist_1_pl, 10)
You can modify this to stop after a certain number of consecutive wins. For example, to reset the bet size to the initial £10 after 3 wins in a row, change the "Amount" field to:
Amount: IF(AND(last_won>0, wins<3), 10 + hist_1_pl, 10)
6. Backing to the profit of £10, then if the bet lost recouping the losses plus 50% of the initial profit target. I.e.: £25@1.4 (lost), £33.33@2.2 (lost), £20.95@4.5 (won), £10 etc.
Amount: IF(last_lost=0, 10/(back_price-1), (10+last_lost + 5)/(back_price-1))
7. Doubling bet size after each loss, i.e. 10, 20, 40, 80 etc.
For backing:
Amount: IF(losses=0, 10, hist_1_backa*2)
For laying:
Amount: IF(losses=0, 10, hist_1_laya*2)
8. Backing/laying according to Fibonacci staking plan
For backing:
Amount: IF(losses<2, 2, hist_1_backa+hist_2_backa)
For laying:
Amount: IF(losses<2, 2, hist_1_laya+hist_2_laya)
9. Backing to the profit of £10, then recoup the losses in the next game so as to win the target £10 and recover the previously lost amount. I.e. £6.67@2.5 (lost), £20.84@1.8 (lost), £31.26@2.2 (lost), £102.64@1.67 (won), £5.0@3.0 etc.
Amount: (10 + last_lost) / (back_price-1)
10. Laying on a selection, then recouping the loss according to the following plan (commission not included).
Add 1/4 of the loss to the next four bets. If all of them won, revert to the original lay amount. If at least one of them lost, then adding 1/4 of that loss to the next four bets and so on. Example: £10@2.5 (lost £15), £13.75@5.0 (won £13.75), £13.75@3.35 (won £13.75), £13.75@1.9 (lost £12.38), £13.09@4.8 (won £13.09), £13.09@2.0 (won £13.09), £13.09@2.6 (won £13.09), £13.09@2.8 (won £13.09), revert to £10. Overall P/L: £52.48
Amount: IF(last_lost>0, X+last_lost/4, IF(OR(wins>3, wins=0), X, hist_1_laya))
Replace X with the initial amount of your stake, for example 10.
11. Laying to a fixed liability, then increasing it by 10% after each loss and reverting to the original amount after a win. Example: £125@1.8 (lost £100), £91.67@2.2 (lost £110), £161.33@1.75 and so on.
Amount: IF(losses=0, 100, last_lost*1.1)/(lay_price-1)
a pig in a poke
of the software in PDF
FORUM
like you
Read this first
of MarketFeeder Pro

