Sam41798

New Member
Joined
Apr 29, 2020
Messages
2
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hi everyone,

I need some help with a formula for an automated excel sheet I have. The formula is for a Recovery strategy called 1-4 recovery. It’s goes like this:
1x your bet amount first attempt
If that loses; 2x your bet amount
If that fails; 3x your bet amount
If that fails 4x your bet amount.
It doesn’t exceed 4x your bet amount but stays at 4x until you have fully recovered.

Has anyone used this strategy before and could help with the formula please?

thanks so much
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Welcome to the forum!

Try:

Book1
ABC
1Bet
210
3
4RoundBetResult
5110L
6220W
7310L
8420L
9530L
10640L
11740L
12840W
13910W
141010
1511 
1612 
Sheet12
Cell Formulas
RangeFormula
B5:B16B5=IF(OR(A5=1,C4="W"),A$2,IF(C4="","",MIN(A$2*4,B4+A$2)))


Put your base bet in A2. Put the formula in B5 and drag down. At the end of each round, put a W or an L in the C column. The formula on the next line should show your recommended bet for the next round.

As far as "does it work to make money"? Well, no. Given 50-50 odds, the house will still make money. In fact, I'd guess that even with better odds you'd lose money in the long run. There are multiple betting schemes, which casinos love people to use, since they don't really work. One scheme which theoretically does work is to bet 2^n+1 times the base bet if you lose, with no cap. But if you have a long losing streak, you could easily exceed your funds and the house still wins. So good luck, but don't bet too much on this!
 
Upvote 0
I was thinking about the "until fully recovered" part. Maybe this reflects better what you have in mind:

Book1
ABCD
1Bet
210
3
4RoundBetResultNet gain
5110L-10
6220W10
7310L0
8420L-20
9530L-50
10640L-90
11740L-130
12840W-90
13940W-50
141040W-10
151140W30
161210W40
171310L30
181420L10
191530W40
201610W50
21171050
2218 50
2319 50
2420 50
Sheet12
Cell Formulas
RangeFormula
B5:B24B5=IF(A5=1,A$2,IF(C4="","",IF(C4="L",MIN(A$2*4,B4+A$2),IF(D4>=0,A$2,B4))))
D5:D24D5=SUM(SUMIF(C$5:C5,{"W","L"},B$5:B5)*{1,-1})
 
Upvote 0
Thanks so much for your reply. I’m hesitant to use it as I have heard it does fail over time.
Any chance you can show me a formula for something that’s similar to 1-4 but it doesn’t stop at 4x.
It’s goes like this

bet1 1xstake = loses
Bet 2 2x stake =loses
Bet 3 3x stake = loses

this keeps on multiplying until you have made it back to profits.
If there is a win at say 6x stake, you continue going up (7x,8x etc) until you’re back to profits. Kind of like the 1-4 but it keeps going.
Thanks so much

Sam
 
Upvote 0

Forum statistics

Threads
1,214,589
Messages
6,120,416
Members
448,960
Latest member
AKSMITH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top