-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcraps_sim.py
276 lines (233 loc) · 13.2 KB
/
craps_sim.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import random, numpy, craps_plot, craps_v2, csv
def crapsTestSim_v2(numRolls):
"""Plays numRolls consecutive shooter_rolls for testing purposes"""
minimum_bet = 5 # Minimium bet to place on the Pass/Don't Pass & Come/Don't Come lines
odds_bet = 10 # Odds bet to place behind the Pass/Don't Pass & Come/Don't Come lines
starting_pot = 300 # Starting amount with which to bet
right_way = True # True = bet "Do"/Pass/Come side; False = bet "Don't" Pass/Come side
print_results = True # Print results of each roll; good to use while testing
c = craps_v2.CrapsGame(minimum_bet, odds_bet, starting_pot, print_results)
for t in range(numRolls):
c.shooter_rolls(right_way)
def crapsTestSim_v3(numSessions):
"""Play numSessions sessions. Each session consists of x shooter rolls until either the pot_low or pot_high amount is reached"""
minimum_bet = 5 # Minimium bet to place on the Pass/Don't Pass & Come/Don't Come lines
odds_bet = 10 # Odds bet to place behind the Pass/Don't Pass & Come/Don't Come lines
starting_pot = 300 # Starting amount with which to bet
right_way = False # True = bet "Do"/Pass/Come side; False = bet "Don't" Pass/Come side
print_results = True # Print results of each roll; good to use while testing
walk_away_pot_low = 150 # Pot amount under which walk away from table, i.e. end of session
walk_away_pot_high = 450 # Pot amount above which walk away from table, i.e. end of session
for t in range(numSessions):
num_shooters = 0
c = craps_v2.CrapsGame(minimum_bet, odds_bet, starting_pot, print_results)
pot_tracker = []
roll_tracker = []
while c.potamountleft() > walk_away_pot_low and c.potamountleft() < walk_away_pot_high:
"""
Ensure that finish a shooter turn to completion, i.e. craps out, before evaluating pot_amount
So that there are no Come or Don't Come Bets left on the table
"""
while c.get_point_crapped() == False and c.potamountleft() > walk_away_pot_low and c.potamountleft() < walk_away_pot_high:
c.shooter_rolls(right_way)
c.reset_point_crapped()
num_shooters += 1
print('Session #{}: # Shooters = {}, Ending Pot Amount = ${}'.format(t+1, num_shooters, c.potamountleft()))
def crapsSessionSim_v2(numSessions):
"""Play numSessions sessions. Each session consists of x shooter rolls until either the pot_low or pot_high amount is reached"""
games_won, games_lost = [], []
pot_when_win, pot_when_lose = [], []
shooters_when_win, shooters_when_lose = [], []
num_come_bets_left, amount_come_bets_left = [], []
shooter_pot_values = [] # a list containing each session's (list of) ending pot values (stored in pot_tracker below) - the y values for plotting
shooter_roll_values = [] # a list containing each session's (list of) rolls - the x values for plotting
minimum_bet = 5 # Minimium bet to place on the Pass/Don't Pass & Come/Don't Come lines
odds_bet = 10 # Odds bet to place behind the Pass/Don't Pass & Come/Don't Come lines
starting_pot = 300 # Starting amount with which to bet
right_way = True # True = bet "Do"/Pass/Come side; False = bet "Don't" Pass/Come side
print_results = False # Print results of each roll; good to use while testing
plot_results = True # Plot results of each session in pylab
walk_away_pot_low = 150 # Pot amount under which walk away from table, i.e. end of session
walk_away_pot_high = 450 # Pot amount above which walk away from table, i.e. end of session
num_wins = 0
for t in range(numSessions):
num_shooters = 0
c = craps_v2.CrapsGame(minimum_bet, odds_bet, starting_pot, print_results)
pot_tracker = []
roll_tracker = []
while c.potamountleft() > walk_away_pot_low and c.potamountleft() < walk_away_pot_high:
"""
Ensure that finish a shooter turn to completion, i.e. craps out, before evaluating pot_amount
So that there are no Come or Don't Come Bets left on the table
"""
while c.get_point_crapped() == False and c.potamountleft() > walk_away_pot_low and c.potamountleft() < walk_away_pot_high:
c.shooter_rolls(right_way)
c.reset_point_crapped()
num_shooters += 1
if plot_results:
pot_tracker.append(c.potamountleft())
roll_tracker.append(num_shooters)
# print ('Session #: {} completed..'.format(t+1))
if c.potamountleft() >= walk_away_pot_high:
num_wins += 1
shooters_when_win.append(num_shooters)
games_won.append(c)
else:
shooters_when_lose.append(num_shooters)
games_lost.append(c)
if plot_results:
shooter_pot_values.append(pot_tracker)
shooter_roll_values.append(roll_tracker)
"""Generate ending pot statistics for each session"""
for g in games_won:
pot_when_win.append(g.potamountleft())
for g in games_lost:
pot_when_lose.append(g.potamountleft())
winning_perc = str(round(100*num_wins/numSessions, 2)) + '%'
if num_wins != 0:
avg_num_shooters_win = str(round(sum(shooters_when_win)/num_wins, 1))
avg_pot_when_win = str(round(sum(pot_when_win)/num_wins, 2))
else:
avg_num_shooters_win = str(0)
avg_pot_when_win = str(0)
avg_num_shooters_lose = str(round(sum(shooters_when_lose)/(numSessions-num_wins), 1))
avg_pot_when_lose = str(round(sum(pot_when_lose)/(numSessions-num_wins), 2))
# avg_come_bets_left = str(round(sum(num_come_bets_left)/len(num_come_bets_left), 1))
# avg_come_bets_amounts = str(round(sum(amount_come_bets_left)/len(amount_come_bets_left), 2))
# avg_times_points_thrown = str(round(100*len(num_come_bets_left)/(sum(shooters_when_win)+sum(shooters_when_lose)), 1)) + '%'
if plot_results:
max_pot = max(pot_when_win)
# min_pot = min(pot_when_lose)
min_pot = 0
max_rolls = max(max(shooters_when_win), max(shooters_when_lose))
craps_plot.plot_sessions(shooter_pot_values, shooter_roll_values, max_pot, min_pot, max_rolls)
print ('Out of', str(numSessions), 'Craps sessions played:')
print ('With a starting pot of $', str(starting_pot),' Betting Do/Pass line: ', str(right_way))
print ('And a walk-away pot between $', str(walk_away_pot_low), ' and $', str(walk_away_pot_high))
print (' Winning percentage is : {} # Wins: {} # Losses: {}'.format(winning_perc, num_wins, numSessions-num_wins))
print (' Average number of shooters per game (when win) is: ', avg_num_shooters_win, ' Avg pot after win = $', avg_pot_when_win)
print (' Average number of shooters per game (when lose) is: ', avg_num_shooters_lose, ' Avg pot after loss = $', avg_pot_when_lose)
# print (' Average Come bets left after point thrown is: ', avg_come_bets_left, 'Avg Come bets $$ after point thrown = $', avg_come_bets_amounts)
# print (' Avg shooter rolls that point is thrown is: ', avg_times_points_thrown)
def crapsRoiSim_v2(numSessions):
"""Play numShooters sessions. Each session ends when a Shooter craps out, i.e. rolls 7, after having established a point"""
ROIPerShooter = []
EndingPotAmount = []
NumberShooters = []
minimum_bet = 5 # Minimium bet to place on the Pass/Don't Pass & Come/Don't Come lines
odds_bet = 10 # Odds bet to place behind the Pass/Don't Pass & Come/Don't Come lines
starting_pot = 300 # Starting amount with which to bet
right_way = True # True = bet "Do"/Pass/Come side; False = bet "Don't" Pass/Come side
print_results = False # Print results of each roll; good to use while testing
num_points_crapped = 5 # The number of crap out events a player stays at the table
for t in range(numSessions):
num_shooters = 0
c = craps_v2.CrapsGame(minimum_bet, odds_bet, starting_pot, print_results)
for u in range(num_points_crapped):
while c.get_point_crapped() == False:
c.shooter_rolls(right_way)
num_shooters += 1
# print ('Shooter_rolls event #:{}'.format(num_shooters))
c.reset_point_crapped()
ROIPerShooter.append((c.potamountleft()-starting_pot)/starting_pot)
EndingPotAmount.append(c.potamountleft())
NumberShooters.append(num_shooters)
# print ('Pot Amount at end of Shooter #{} session: ${} # shooter_rolls: {}'.format(t+1, c.potamountleft(), num_shooters))
meanROI = str(round(100*numpy.average(ROIPerShooter), 4)) + '%'
ROI_sigma = str(round(100*numpy.std(ROIPerShooter), 4)) + '%'
meanEndingPotAmount = str(round(numpy.average(EndingPotAmount), 2))
EndingPotAmount_sigma = str(round(numpy.std(EndingPotAmount), 2))
AvgNumberShooters = str(round(numpy.average(NumberShooters),1))
print('For {} Sessions, Average Ending Pot Amount = ${} Pot Amount Std. Dev. = ${}'.format(numSessions, meanEndingPotAmount, EndingPotAmount_sigma))
print(' Mean ROI = {} ROI Std. Dev. = {}'.format(meanROI, ROI_sigma))
print(' Average # shooters per session = {}'.format(AvgNumberShooters))
def crapsRoiSim_v3(numSimulations):
"""Based on a set number of Simulations, run an increasing # of sessions* and determine STD of ending pot amount"""
""" *session ends when a Shooter craps out after having established a point """
AvgEndingPotAmount = []
HighEndingPotAmount = [] # 2 standard deviations above average, i.e. upper bound of 95%
LowEndingPotAmount = [] # 2 standard deviations below average, i.e. lower bound of 95%
NumberSessions = [] # Number of sessions played, x-axis
minimum_bet = 5 # Minimium bet to place on the Pass/Don't Pass & Come/Don't Come lines
odds_bet = 10 # Odds bet to place behind the Pass/Don't Pass & Come/Don't Come lines
starting_pot = 300 # Starting amount with which to bet
right_way = True # True = bet "Do"/Pass/Come side; False = bet "Don't" Pass/Come side
print_results = False # Print results of each roll; good to use while testing
for y in range(5, 50, 5):
NumberSessions.append(y)
EndingPotAmount = []
for x in range(numSimulations):
for t in range(y):
c = craps_v2.CrapsGame(minimum_bet, odds_bet, starting_pot, print_results)
while c.get_point_crapped() == False:
c.shooter_rolls(right_way)
EndingPotAmount.append(c.potamountleft())
AvgPotAmount = round(numpy.average(EndingPotAmount),2)
AvgEndingPotAmount.append(AvgPotAmount)
HighEndingPotAmount.append(round(AvgPotAmount + 2 * numpy.std(EndingPotAmount), 2))
LowEndingPotAmount.append(round(AvgPotAmount - 2 * numpy.std(EndingPotAmount), 2))
print(AvgEndingPotAmount)
print(HighEndingPotAmount)
print(LowEndingPotAmount)
print(NumberSessions)
def crapsWinProbabilities(numSessions):
"""Play numSessions sessions. Each session consists of x shooter rolls until either the pot_low or pot_high amount is reached"""
"""Collect win % for various win thresholds above swtartig_pot """
"""CrapsGame class parameters"""
minimum_bet = 5 # Minimium bet to place on the Pass/Don't Pass & Come/Don't Come lines
odds_bet = 10 # Odds bet to place behind the Pass/Don't Pass & Come/Don't Come lines
starting_pot = 300 # Starting amount with which to bet
print_results = False # Print results of each roll; good to use while testing
"""CrapsGame.shooter_rolls function parameter"""
right_way = True # True = bet "Do"/Pass/Come side; False = bet "Don't" Pass/Come side
"""crapsWinProbabilities function parameters"""
walk_away_pot_low = 150 # Pot amount under which walk away from table, i.e. end of session
walk_away_pot_high_start = 25 # Low amount above starting_pot at which walk away from table, i.e. end of session
walk_away_pot_high_end = 250 # High amount above starting_pot at which walk away from table, i.e. end of session
walk_away_pot_high_step = 25 # Step amount above starting_pot at which walk away from table, i.e. end of session
plot_results = True # Plot results of each session in pylab
export_file = False # Prompt for name and export file
win_percentage = {} # List to track overall win percentage after each simulation (consisting of numSessions)
for w in range(walk_away_pot_high_start, walk_away_pot_high_end+walk_away_pot_high_step, walk_away_pot_high_step):
num_wins = 0
walk_away_pot_high = starting_pot + w
for t in range(numSessions):
c = craps_v2.CrapsGame(minimum_bet, odds_bet, starting_pot, print_results)
while c.potamountleft() > walk_away_pot_low and c.potamountleft() < walk_away_pot_high:
"""
Ensure that finish a shooter turn to completion, i.e. crap out, before evaluating pot_amount
So that there are no Come or Don't Come Bets left on the table
"""
while c.get_point_crapped() == False and c.potamountleft() > walk_away_pot_low and c.potamountleft() < walk_away_pot_high:
c.shooter_rolls(right_way)
c.reset_point_crapped()
"""
Determine whether Seesion was a winning one and increment num_wins counter
"""
if c.potamountleft() >= walk_away_pot_high:
num_wins += 1
# winning_perc = str(round(100*num_wins/numSessions, 2)) + '%'
winning_perc = round(100*num_wins/numSessions, 2)
print ('Win Threshold ${} completed.. Win % = {}'.format(w, winning_perc))
win_percentage[w]=winning_perc
"""
Create plot of values
"""
if plot_results:
craps_plot.plot_winpercentage(win_percentage)
"""
Output win_percentage dict to csv file
"""
if export_file:
with open('test_file1.csv', 'w', newline='') as f:
out = csv.writer(f)
out.writerows(win_percentage.items())
####################################################################################################
# Uncomment module that should be executed when 'python craps_sim.py' is run from the command line #
####################################################################################################
# crapsTestSim_v2(3)
# crapsTestSim_v3(1)
# crapsSessionSim_v2(100)
# crapsRoiSim_v2(1000)
# crapsRoiSim_v3(10)
crapsWinProbabilities(5000)