-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmontecarlo11.py
240 lines (199 loc) · 6.61 KB
/
montecarlo11.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
import random
import matplotlib
import matplotlib.pyplot as plt
import time
## MUST BEAT these!
'''
The question is, can we find a simple variable change where there is both
lower risk, and higher profit... and soon, is this the case accross an average
of 1 million samples.
'''
lower_bust = 31.235
higher_profit = 63.208
# back to 1,000
sampleSize = 1000
startingFunds = 10000
wagerSize = 100
wagerCount = 100
def rollDice():
roll = random.randint(1,100)
if roll == 100:
return False
elif roll <= 50:
return False
elif 100 > roll >= 50:
return True
def multiple_bettor(funds,initial_wager,wager_count):#,color):
#add
global multiple_busts
global multiple_profits
value = funds
wager = initial_wager
wX = []
vY = []
currentWager = 1
previousWager = 'win'
previousWagerAmount = initial_wager
while currentWager <= wager_count:
if previousWager == 'win':
if rollDice():
value += wager
wX.append(currentWager)
vY.append(value)
else:
value -= wager
previousWager = 'loss'
previousWagerAmount = wager
wX.append(currentWager)
vY.append(value)
if value <= 0:
multiple_busts += 1
break
elif previousWager == 'loss':
if rollDice():
#### must change the multiple ####
wager = previousWagerAmount * random_multiple
if (value - wager) <= 0:
wager = value
value += wager
wager = initial_wager
previousWager = 'win'
wX.append(currentWager)
vY.append(value)
else:
wager = previousWagerAmount * random_multiple
if (value - wager) <= 0:
wager = value
value -= wager
previousWager = 'loss'
previousWagerAmount = wager
wX.append(currentWager)
vY.append(value)
if value <= 0:
#change
multiple_busts += 1
break
currentWager += 1
#plt.plot(wX,vY)
#####################
if value > funds:
#change
multiple_profits+=1
def doubler_bettor(funds,initial_wager,wager_count,color):
global doubler_busts
global doubler_profits
value = funds
wager = initial_wager
wX = []
vY = []
currentWager = 1
previousWager = 'win'
previousWagerAmount = initial_wager
while currentWager <= wager_count:
if previousWager == 'win':
if rollDice():
value += wager
wX.append(currentWager)
vY.append(value)
else:
value -= wager
previousWager = 'loss'
previousWagerAmount = wager
wX.append(currentWager)
vY.append(value)
if value < 0:
currentWager += 10000000000000000
doubler_busts += 1
elif previousWager == 'loss':
if rollDice():
wager = previousWagerAmount * 2
if (value - wager) < 0:
wager = value
value += wager
wager = initial_wager
previousWager = 'win'
wX.append(currentWager)
vY.append(value)
else:
wager = previousWagerAmount * 2
if (value - wager) < 0:
wager = value
value -= wager
previousWager = 'loss'
previousWagerAmount = wager
wX.append(currentWager)
vY.append(value)
if value <= 0:
currentWager += 10000000000000000
doubler_busts += 1
currentWager += 1
#plt.plot(wX,vY,color)
#####################
if value > funds:
doubler_profits+=1
def simple_bettor(funds,initial_wager,wager_count,color):
global simple_busts
global simple_profits
value = funds
wager = initial_wager
wX = []
vY = []
currentWager = 1
while currentWager <= wager_count:
if rollDice():
value += wager
wX.append(currentWager)
vY.append(value)
else:
value -= wager
wX.append(currentWager)
vY.append(value)
if value <= 0:
currentWager += 10000000000000000
simple_busts +=1
currentWager += 1
plt.plot(wX,vY,color)
if value > funds:
simple_profits+=1
x = 0
#Doubler Bettor Bust Chances: 84.1457... so anything less than this... aaaand
#Doubler Bettor Profit Chances: 15.6355 ... aaaand better than this.
while x < 10:
print(x)
######## move this stuff in here for the maths.
multiple_busts = 0.0
multiple_profits = 0.0
# now we're wanting to do 100 attempts to get a good sample #
multipleSampSize = 100000
currentSample = 1
random_multiple = random.uniform(0.1,10.0)
#random_multiple = 2.00
#print((random_multiple
# adding this....
while currentSample <= multipleSampSize:
multiple_bettor(startingFunds,wagerSize,wagerCount)
#add one to sample
currentSample += 1
if ((multiple_busts/multipleSampSize)*100.00 < lower_bust) and ((multiple_profits/multipleSampSize)*100.00 > higher_profit):
print(('#################################################'))
print(('found a winner, the multiple was:',random_multiple))
print(('Lower Bust Rate Than:',lower_bust))
print(('Higher profit rate than:',higher_profit))
print(('Bust Rate:',(multiple_busts/multipleSampSize)*100.00))
print(('Profit Rate:',(multiple_profits/multipleSampSize)*100.00))
print(('#################################################'))
#time.sleep(5)
#plt.show()
else:
pass
## print(('####################################'))
## print(('To beat:'))
## print(('Lower Bust Rate Than:',lower_bust))
## print(('Higher profit rate than:',higher_profit))
## print(('Bust Rate:',(multiple_busts/multipleSampSize)*100.00))
## print(('Profit Rate:',(multiple_profits/multipleSampSize)*100.00))
## print(('####################################'))
##
## #clears the figure
## plt.clf()
x+=1