-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvanced.html
More file actions
195 lines (187 loc) · 10.7 KB
/
advanced.html
File metadata and controls
195 lines (187 loc) · 10.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced Strategies</title>
<!-- Bootstrap -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Nav bar -->
<nav class="navMenu">
<div class="navLeft">
<a href="index.html" class="navbar-brand">Blackjack50</a>
</div>
<div class="navRight">
<a href="rules.html" class="navbar-option">Rules </a>
<a href="basics.html" class="navbar-option">Basics </a>
<a href="advanced.html" class="navbar-option">Advanced </a>
<div class="dot"></div>
</div>
</nav>
<!-- Nav bar end -->
<!-- main article section -->
<main>
<div class="article">
<br>
<section id="intro">
<h2 class="learnHeading">Introduction to Advanced Strategy</h2>
<p class="learnPara">
Blackjack is a game of chance and probabilities -- there's no strategy that will guarentee you victory, but there
are ways to give yourself the best possible chance of winning based on your hand. In order to adopt these strategies,
you'll have to memorize and retain as much information as you can while playing as many games of Blackjack as possible.
Eventually, it will become almost natural!
</p>
</section>
<section id="advstrat">
<h2 class="learnHeading">Strategy Charts</h2>
<p class="learnPara">
As said in basic strategy and the rules, there are multiple options for what you can do. Different games will have different rules,
but generally you will have the option to either hit, stand, or double down. In some games, you can also surrender. Depending on whether you
have a hard or soft hand, you'll take different actions. Below, the strategy charts are basedo on the dealerhitting a soft hand 17.
</p>
<p class="learnPara">
You can also utilize our built-in solver, which will tell you the best strategy based on whether you have a soft or hard hand.
</p>
</section>
<section id="hard">
<h2 class="learnHeading">Hard Hands</h2>
<p class="learnPara">
This chart should be used when you have a "hard" hand, or when the Ace is worth 1 instead of 11.
</p>
<img src="learn-images/hard-total.png" alt="Hard Total Chart" class="advanced-img">
</section>
<section id="soft">
<br>
<h2 class="learnHeading">Soft Hands</h2>
<p class="learnPara">
This chart should be used when you have a "soft" hand, or when the Ace can be counted as 11.
</p>
<img src="learn-images/soft-total.png" alt="Soft Total Chart" class="advanced-img">
</section>
<section id="pairs">
<br>
<h2 class="learnHeading">Pairs</h2>
<p class="learnPara">
To put this information to use, the player should adjust their bets according to
the true count. Specifically they should raise their bets as the true count rises
since this is when the player has the advantage. In turn, they should lower
their bets when the true count is negative or neutral and the house has the advantage
</p>
<img src="learn-images/pair-split.png" alt="Pair Split Chart" class="advanced-img">
</section>
<section id="cardcount">
<br>
<h2 class="learnHeading">Card Counting</h2>
<p class="learnPara">
Counting cards is a strategy a player can use to determine whether
the player or the dealer has an advantage on the next hand. This
gives card counters a way to overcome the house edge and win more consistently at Blackjack.
</p>
<p class="learnPara">
The hi-lo counting system that we'll be discussing was introduced in 1963 by Harvey Dubner, an electrical engineer and mathmatician. By using his
strategy in combination with memorization of the basic strategy above, it can greatly increase your change of
winning!
</p>
<p class="learnPara">
However, be careful when you card count. Although it's not illegal, many casinos will immedietly eject you if you're
caught card counting, and you won't be able to redeem your chips / money from the cashier.
</p>
</section>
<section id="step1">
<h2 class="learnHeading">Step 1:Assign a Value to Each Card</h2>
<img src="learn-images/High-Low-Card.jpg" alt="Card Counting" class="advanced-img">
<br>
<p class="learnPara"> The four steps of counting cards: </p>
<ul class="bullets">
<li class="bullets-list">Assign a value of each card</li>
<li class="bullets-list">Keep a “running count” based on the values of the dealt card</li>
<li class="bullets-list">Use this information to calculate the “true count,” or the count per deck</li>
<li class="bullets-list">Adjust bets as the true count rises</li>
</ul>
<br>
<p class="learnPara">
The most common card counting system is Hi-Lo, in which the card values are as follows:
</p>
<ul class="bullets">
<li class="bullets-list">2 - 6 = +1</li>
<li class="bullets-list">7 - 9 = 0</li>
<li class="bullets-list">10 - Ace = -1</li>
</ul>
</section>
<section id="step2">
<br>
<h2 class="learnHeading">Step 2: Keep a “Running Count”</h2>
<p class="learnPara">
Based on the card dealt, add the assigned value to the current running count
of the round. As the running count increases, the advantage shifts to the player.
Conversely, as the running count decreases, the advantage shifts to the house.
</p>
</section>
<section id="step3">
<h2 class="learnHeading">Step 3: Keep a “True Count”</h2>
<p class="learnPara">
Keeping a true count, in addition to a running count allows the player to continue
beating the house edge even when playing with multiple decks.
</p>
<p class="learnPara">
True count is important because it keeps track of not only the number
of extra high cards, but the concentration of high cards compared to the concentration
of low cards. Even with the same running count, this concentration will vary based
on how many decks are remaining in the game.
</p>
<img src="learn-images/true-count.png" alt="True Count" class="advanced-img">
<br>
<p class="learnPara">
The calculation for true count is the (running count) / (decks remaining).
</p>
<p class="learnPara">
<b>Example:</b> If the running count is 8, and there are 4 decks remaining, the true count is 2.
</p>
<p class="learnPara">
<b>Example:</b> if the running count is -5 and there are 2 decks remaining, the true count is -2.
</p>
</section>
</section>
<section id="step4">
<h2 class="learnHeading">Step 4: Change Your Bets Based on True Count</h2>
<p class="learnPara">
To put this information to use, the player should adjust their bets according to
the true count. Specifically they should raise their bets as the true count rises
since this is when the player has the advantage. In turn, they should lower
their bets when the true count is negative or neutral and the house has the advantage
</p>
</section>
</div>
<!-- side nav bar -->
<nav class="sidenav">
<ol>
<li><a href="#intro"> Introduction to Advanced Strategy</a></li>
<li><a href="#advstrat"> Strategy Charts</a></li>
<li>
<ul class="side-nav-ul">
<li class="side-nav-li"><a href="#hard"> Hard Hand </a></li>
<li class="side-nav-li"><a href="#soft"> Soft Hand </a></li>
<li class="side-nav-li"><a href="#pairs"> Pairs </a></li>
</ul>
</li>
<li><a href="#cardcount"> Card Counting</a></li>
<li>
<ul class="side-nav-ul">
<li class="side-nav-li"><a href="#step1">Step 1: Assign a Value to Each Card</a></li>
<li class="side-nav-li"><a href="#step2">Step 2: Keep a "Running Count"</a></li>
<li class="side-nav-li"><a href="#step3">Step 3: Keep a "True Count"</a></li>
<li class="side-nav-li"><a href="#step4">Step 4: Change Your Bets Based on True Count</a></li>
</ul>
</li>
</ol>
</nav>
</main>
<script language="javascript" src="main.js"> </script>
</body>
</html>