forked from yosintv/xauusd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.html
More file actions
757 lines (688 loc) Β· 44 KB
/
Copy pathbasic.html
File metadata and controls
757 lines (688 loc) Β· 44 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
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>XAU/USD Gold Candlestick Pattern Bible β’ 2026 Edition</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', system-ui, sans-serif;
background-color: #0a0e17;
color: #e2e8f0;
}
.mono {
font-family: 'JetBrains Mono', monospace;
}
.gold {
color: #fbbf24;
}
.gold-border {
border-color: #d97706;
}
.bull {
background: linear-gradient(to bottom, #22c55e, #16a34a);
}
.bear {
background: linear-gradient(to bottom, #ef4444, #dc2626);
}
.candle-container {
display: flex;
align-items: flex-end;
gap: 6px;
height: 80px;
}
.candle-body {
width: 14px;
border-radius: 3px;
position: relative;
}
.wick {
position: absolute;
width: 2px;
background: #94a3b8;
left: 50%;
transform: translateX(-50%);
}
.pattern-card:hover {
border-color: #fbbf24;
box-shadow: 0 0 25px rgba(251, 191, 36, 0.12);
transform: translateY(-2px);
}
.highlight-box {
background: rgba(251, 191, 36, 0.06);
border: 1px solid rgba(251, 191, 36, 0.18);
}
.table-row-alt:nth-child(even) {
background-color: rgba(71, 85, 105, 0.2);
}
@keyframes slideIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-slide {
animation: slideIn 0.6s ease-out;
}
</style>
</head>
<body class="min-h-screen pb-16">
<!-- Header -->
<header class="border-b border-slate-800 bg-slate-950/60 backdrop-blur-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-6 py-5 flex items-center justify-between">
<div>
<h1 class="text-2xl md:text-3xl font-extrabold tracking-tight">
XAU/USD <span class="gold">Candlestick Pattern Bible</span>
</h1>
<p class="text-slate-400 text-sm mt-1">High-probability setups for Gold trading β’ 2026 Edition</p>
</div>
<div class="hidden md:block">
<span class="px-4 py-1.5 bg-yellow-600/20 text-yellow-400 rounded-full text-xs font-bold border border-yellow-600/30">
PRO TRADING REFERENCE
</span>
</div>
</div>
</header>
<main class="max-w-7xl mx-auto px-6 pt-10">
<!-- Introduction & Golden Rule -->
<section class="mb-16 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-4">The Golden Rule of Gold Candlesticks</h2>
<p class="text-slate-300 leading-relaxed mb-4">
Candlestick patterns <strong>alone are not trade signals</strong>. For XAU/USD, success rate dramatically increases only when the pattern appears at a <strong>high-probability context</strong>:
</p>
<ul class="grid md:grid-cols-2 gap-3 text-sm text-slate-300">
<li>β’ Daily / Weekly S/R zones</li>
<li>β’ Previous day high/low</li>
<li>β’ Psychological levels ($1900, $2000, $2100, $2200...)</li>
<li>β’ Fibonacci 50%/61.8%/78.6%</li>
<li>β’ Order blocks / liquidity pools</li>
<li>β’ Major news reaction (NFP, CPI, FOMC)</li>
</ul>
<p class="mt-5 text-slate-400 italic text-sm">
A Shooting Star in the middle of a range = noise.<br>
A Shooting Star at $2080 (multi-year high) = potential fortune.
</p>
</section>
<!-- Patterns Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Bullish Engulfing -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-emerald-400 font-bold text-xl">Bullish Engulfing</h3>
<div class="candle-container">
<div class="candle-body bear h-10"></div>
<div class="candle-body bull h-24"></div>
</div>
</div>
<p class="text-slate-300 mb-4">
Large bullish candle completely engulfs the body of the previous bearish candle.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>Support zone β’ After impulsive leg down β’ London/NY session open</p>
<p class="mt-3 italic text-slate-400">"$2015 holds β massive green H1 candle closes above $2022 β strong reversal"</p>
</div>
</div>
<!-- Shooting Star -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-rose-400 font-bold text-xl">Shooting Star</h3>
<div class="candle-container">
<div class="candle-body bear h-5 mt-10">
<div class="wick h-20 -top-14"></div>
</div>
</div>
</div>
<p class="text-slate-300 mb-4">
Small body near lows + very long upper shadow (β₯2.5β3Γ body). Strong rejection.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>Resistance β’ After parabolic move β’ News spike failure</p>
<p class="mt-3 italic text-slate-400">"$2080 CPI spike rejected β long wick β distribution begins"</p>
</div>
</div>
<!-- Morning Star -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-emerald-400 font-bold text-xl">Morning Star</h3>
<div class="candle-container gap-2">
<div class="candle-body bear h-20"></div>
<div class="w-3 h-3 bg-slate-500 rounded-full self-center"></div>
<div class="candle-body bull h-20"></div>
</div>
</div>
<p class="text-slate-300 mb-4">
3-candle reversal: strong bear β’ small indecision (gap down) β’ strong bull closing >50% into 1st candle.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>Major low β’ Exhaustion β’ Asian range β London reversal</p>
</div>
</div>
<!-- Evening Star -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-rose-400 font-bold text-xl">Evening Star</h3>
<div class="candle-container gap-2">
<div class="candle-body bull h-20"></div>
<div class="w-3 h-3 bg-slate-500 rounded-full self-center"></div>
<div class="candle-body bear h-20"></div>
</div>
</div>
<p class="text-slate-300 mb-4">
3-candle reversal: strong bull β’ small indecision (gap up) β’ strong bear closing <50% into 1st candle.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>Major high β’ Momentum exhaustion β’ Potential short entry</p>
</div>
</div>
<!-- Bearish Engulfing -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-rose-400 font-bold text-xl">Bearish Engulfing</h3>
<div class="candle-container">
<div class="candle-body bull h-10"></div>
<div class="candle-body bear h-24"></div>
</div>
</div>
<p class="text-slate-300 mb-4">
Large bearish candle completely engulfs the body of the previous bullish candle.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>Resistance zone β’ After impulsive leg up β’ Distribution signal</p>
<p class="mt-3 italic text-slate-400">"$2085 rejected β massive red H1 candle closes below $2075 β reversal"</p>
</div>
</div>
<!-- Marubozu -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-white font-bold text-xl">Marubozu</h3>
<div class="candle-container">
<div class="candle-body bull h-24 w-5"></div>
</div>
</div>
<p class="text-slate-300 mb-4">
Full-bodied candle with almost no shadows β complete dominance by buyers or sellers.
</p>
<div class="highlight-box p-4 rounded-lg text-sm text-amber-300">
<strong>Do NOT fade</strong> Marubozu after news (NFP, rate decision, geopolitics).
</div>
</div>
<!-- Doji Family -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-amber-300 font-bold text-xl">Doji Family</h3>
<div class="candle-container">
<div class="relative w-5 h-1 bg-white">
<div class="wick h-20 -top-10"></div>
<div class="wick h-20 -top-10"></div>
</div>
</div>
</div>
<p class="text-slate-300 mb-3">
Open β Close. Market equilibrium / indecision.
</p>
<div class="text-xs grid grid-cols-2 gap-2 mt-2">
<div>β’ Dragonfly β bullish reversal potential</div>
<div>β’ Gravestone β bearish reversal potential</div>
<div>β’ Long-legged β high volatility</div>
</div>
<p class="mt-3 italic text-slate-400 text-xs">
Very common 15β60 min before FOMC / NFP β wait for breakout.
</p>
</div>
<!-- Tweezer Bottom -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-emerald-400 font-bold text-xl">Tweezer Bottom</h3>
<div class="candle-container">
<div class="candle-body bear h-6">
<div class="wick h-16 -top-4"></div>
</div>
<div class="candle-body bull h-6">
<div class="wick h-16 -top-4"></div>
</div>
</div>
</div>
<p class="text-slate-300 mb-4">
Two or more candles with matching (or nearly identical) lows β strong support found.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold">Precision matters</p>
<p>Best when lows match within 0.10β0.30 USD on Gold</p>
</div>
</div>
<!-- Tweezer Top -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-rose-400 font-bold text-xl">Tweezer Top</h3>
<div class="candle-container">
<div class="candle-body bull h-6">
<div class="wick h-16 -top-4"></div>
</div>
<div class="candle-body bear h-6">
<div class="wick h-16 -top-4"></div>
</div>
</div>
</div>
<p class="text-slate-300 mb-4">
Two or more candles with matching (or nearly identical) highs β strong resistance found.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold">High probability reversal</p>
<p>Often marks exhaustion at key resistance levels</p>
</div>
</div>
<!-- Hammer -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-emerald-400 font-bold text-xl">Hammer</h3>
<div class="candle-container">
<div class="candle-body bull h-5">
<div class="wick h-20 -top-10"></div>
</div>
</div>
</div>
<p class="text-slate-300 mb-4">
Small body near top + long lower shadow (β₯2.5Γ body). Bulls defend support.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>Support zone β’ Reversal from downtrend β’ High wick rejection</p>
</div>
</div>
<!-- Hanging Man -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-rose-400 font-bold text-xl">Hanging Man</h3>
<div class="candle-container">
<div class="candle-body bear h-5">
<div class="wick h-20 -top-10"></div>
</div>
</div>
</div>
<p class="text-slate-300 mb-4">
Small body near top + long lower shadow. Appears after uptrend β potential top formation.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>After strong uptrend β’ Resistance zone β’ Warning of reversal</p>
</div>
</div>
<!-- Harami -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-amber-300 font-bold text-xl">Harami</h3>
<div class="candle-container">
<div class="candle-body bull h-20"></div>
<div class="candle-body bear h-8"></div>
</div>
</div>
<p class="text-slate-300 mb-4">
Small candle body completely contained within the previous larger candle β momentum loss.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Signal</p>
<p>Potential trend reversal or consolidation</p>
</div>
</div>
<!-- Piercing Line -->
<div class="bg-slate-900/60 border border-slate-800 rounded-xl p-6 pattern-card transition-all duration-300 animate-slide">
<div class="flex justify-between items-start mb-5">
<h3 class="text-emerald-400 font-bold text-xl">Piercing Line</h3>
<div class="candle-container">
<div class="candle-body bear h-20"></div>
<div class="candle-body bull h-20"></div>
</div>
</div>
<p class="text-slate-300 mb-4">
Bearish candle followed by bullish candle that closes >50% into the bearish body.
</p>
<div class="highlight-box p-4 rounded-lg text-sm">
<p class="text-yellow-300 font-semibold mb-1">Typical context</p>
<p>Support test β’ Strong reversal signal β’ Buy confirmation</p>
</div>
</div>
</div>
<!-- Quick Reference Table -->
<section class="mt-20">
<h2 class="text-2xl font-bold mb-6 gold">Quick Reference β Reliability Ranking (XAU/USD Context)</h2>
<div class="overflow-x-auto">
<table class="w-full text-sm text-left text-slate-300 border-collapse">
<thead>
<tr class="bg-slate-800/70">
<th class="p-4 font-semibold">Pattern</th>
<th class="p-4 font-semibold">Type</th>
<th class="p-4 font-semibold">Strength (1β10)</th>
<th class="p-4 font-semibold">Best Timeframe</th>
<th class="p-4 font-semibold">Key Confirmation</th>
</tr>
</thead>
<tbody class="divide-y divide-slate-800">
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Morning Star</td><td>Bull Reversal</td><td class="text-emerald-400 font-bold">9</td><td>H4 / D1</td><td>Close > 50% of 1st candle</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Evening Star</td><td>Bear Reversal</td><td class="text-emerald-400 font-bold">9</td><td>H4 / D1</td><td>Strong bear close</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Marubozu</td><td>Continuation</td><td class="text-emerald-400 font-bold">9</td><td>M15βH1</td><td>News / momentum</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Bullish Engulfing</td><td>Bull Reversal</td><td class="text-yellow-400">8.5</td><td>H1βH4</td><td>Volume + break of high</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Shooting Star</td><td>Bear Reversal</td><td class="text-yellow-400">8.5</td><td>H1βH4</td><td>Rejection at round number</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Bearish Engulfing</td><td>Bear Reversal</td><td class="text-yellow-400">8</td><td>H1βH4</td><td>Break of engulfing low</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Hammer</td><td>Bull Reversal</td><td class="text-yellow-400">8</td><td>H1βH4</td><td>Break above body</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Piercing Line</td><td>Bull Reversal</td><td class="text-yellow-400">8</td><td>H1βH4</td><td>Close > 50% penetration</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Tweezer Bottom/Top</td><td>Reversal</td><td class="text-orange-400">7.5</td><td>M15βH1</td><td>Exact level match</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Harami</td><td>Reversal/Consolidation</td><td class="text-orange-400">7</td><td>H1βH4</td><td>Next candle confirmation</td></tr>
<tr class="table-row-alt hover:bg-slate-700/30"><td class="p-4">Doji (context dependent)</td><td>Indecision</td><td class="text-orange-400">6β9</td><td>All</td><td>Break of range</td></tr>
</tbody>
</table>
</div>
</section>
<!-- Advanced Strategies Section -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Advanced Trading Strategies & Context Rules</h2>
<div class="grid md:grid-cols-2 gap-6">
<div>
<h3 class="text-lg font-bold text-emerald-400 mb-3">β Higher Probability Setups</h3>
<ul class="text-slate-300 text-sm space-y-2">
<li><strong>Pattern + S/R Zone:</strong> Bullish Engulfing at $2000 support = 85% win rate</li>
<li><strong>Pattern + News:</strong> Marubozu after NFP = strong momentum continuation</li>
<li><strong>Multi-timeframe Confirmation:</strong> H4 Morning Star + D1 support = high-probability long</li>
<li><strong>Liquidity Clusters:</strong> Patterns at round numbers ($2050, $2100) are stronger</li>
<li><strong>Session Open Patterns:</strong> London open (H1 candlestick) more reliable than Asia</li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold text-rose-400 mb-3">β Avoid These Traps</h3>
<ul class="text-slate-300 text-sm space-y-2">
<li><strong>Pattern in the middle of range:</strong> Noise. Wait for structure.</li>
<li><strong>Doji before major news:</strong> Don't trade β volatility expansion will happen</li>
<li><strong>Reversal pattern vs. strong trend:</strong> Hammers fail in downtrends β use with caution</li>
<li><strong>Trading into news without plan:</strong> Spreads widen, slippage increases 3β5x</li>
<li><strong>Ignoring risk/reward:</strong> Even 90% win-rate pattern loses money with bad R:R</li>
</ul>
</div>
</div>
<div class="mt-6 border-t border-slate-600 pt-6">
<h3 class="text-lg font-bold text-amber-300 mb-3">π― Real Example: Shooting Star at $2080</h3>
<div class="bg-slate-800/50 p-4 rounded-lg text-sm text-slate-300 space-y-2">
<p><strong>Setup:</strong> H4 chart, $2080 is a 2-year resistance. CPI data released β price spikes to $2085.</p>
<p><strong>Pattern:</strong> Long wick rejection (Shooting Star) closes at $2075.</p>
<p><strong>Context:</strong> Daily chart shows failed breakout, order block 10 pips below.</p>
<p><strong>Trade:</strong> Short from $2078, stop at $2088, target $2050 order block. Risk:Reward = 1:3.</p>
<p class="text-yellow-300"><strong>Result:</strong> Pattern alone = 50% odds. Pattern + S/R + daily confirmation = 80%+ odds.</p>
</div>
</div>
</section>
<!-- Risk Management Section -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Risk Management Rules for Gold Candlesticks</h2>
<div class="space-y-4 text-slate-300">
<div class="flex gap-4">
<div class="text-2xl font-bold text-emerald-400 flex-shrink-0">1</div>
<div>
<p class="font-semibold">Stop Loss Placement</p>
<p class="text-sm mt-1">Place SL 5β10 pips beyond the pattern's high/low, not exactly at it. Wicks can trigger stops before reversal.</p>
</div>
</div>
<div class="flex gap-4">
<div class="text-2xl font-bold text-emerald-400 flex-shrink-0">2</div>
<div>
<p class="font-semibold">Risk:Reward Minimum 1:2</p>
<p class="text-sm mt-1">Never take a trade unless your profit target is at least 2x your risk. Candlestick patterns alone don't guarantee wins.</p>
</div>
</div>
<div class="flex gap-4">
<div class="text-2xl font-bold text-emerald-400 flex-shrink-0">3</div>
<div>
<p class="font-semibold">Position Sizing</p>
<p class="text-sm mt-1">Risk no more than 1-2% of your account on a single trade. Use micro lots or adjust shares accordingly.</p>
</div>
</div>
<div class="flex gap-4">
<div class="text-2xl font-bold text-emerald-400 flex-shrink-0">4</div>
<div>
<p class="font-semibold">Avoid Overtrading Near News</p>
<p class="text-sm mt-1">30 minutes before/after major economic data, volatility spikes and patterns fail. Skip these windows.</p>
</div>
</div>
<div class="flex gap-4">
<div class="text-2xl font-bold text-emerald-400 flex-shrink-0">5</div>
<div>
<p class="font-semibold">Confirm with Volume / Price Action</p>
<p class="text-sm mt-1">A pattern is stronger if accompanied by higher volume and follow-through. Wait for next candle confirmation.</p>
</div>
</div>
</div>
</section>
<!-- Trading Psychology Section -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Trading Psychology & Common Mistakes</h2>
<div class="grid md:grid-cols-2 gap-6">
<div class="bg-slate-800/50 p-4 rounded-lg">
<h3 class="text-amber-300 font-bold mb-3">β Mistake #1: "Perfect" Pattern Hunting</h3>
<p class="text-sm text-slate-300">Waiting for the "textbook perfect" Morning Star costs you 10 setups. Real trading patterns are 80% textbook, not 100%. Accept "good enough" patterns at strong structure.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h3 class="text-amber-300 font-bold mb-3">β Mistake #2: Pattern Chasing</h3>
<p class="text-sm text-slate-300">Seeing a pattern that already reversed and trying to enter late. Always enter at pattern completion, not at profit-taking stage.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h3 class="text-amber-300 font-bold mb-3">β Mistake #3: Revenge Trading</h3>
<p class="text-sm text-slate-300">Losing on a Shooting Star short, then immediately taking a Bullish Engulfing long without proper plan. Emotions + patterns = account wipeout.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h3 class="text-amber-300 font-bold mb-3">β Mistake #4: Ignoring Confluence</h3>
<p class="text-sm text-slate-300">Taking an isolated Doji formation without checking daily S/R. The stronger the confluence, the higher the edge. Always zoom out.</p>
</div>
</div>
</section>
<!-- Session-Specific Guide -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Session-Specific Candlestick Guide (Best Patterns by Session)</h2>
<div class="grid md:grid-cols-3 gap-4">
<div class="bg-slate-800/50 p-4 rounded-lg">
<h3 class="font-bold text-blue-400 mb-2">π Asian Session (22:00β07:00 UTC)</h3>
<ul class="text-xs text-slate-300 space-y-1">
<li>β’ Lower volatility, fewer patterns form</li>
<li>β’ Doji very common (consolidation before London)</li>
<li>β’ Avoid Marubozu fades β no follow-through</li>
<li>β’ Best: Patience, wait for London open</li>
</ul>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h3 class="font-bold text-emerald-400 mb-2">π London Session (08:00β16:00 UTC)</h3>
<ul class="text-xs text-slate-300 space-y-1">
<li>β’ Highest volatility β clearest patterns</li>
<li>β’ Engulfing patterns most reliable</li>
<li>β’ Shooting Stars at resistance highly accurate</li>
<li>β’ Best: Take aggressive positions here</li>
</ul>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h3 class="font-bold text-yellow-400 mb-2">π½ NY Session (12:30β21:00 UTC)</h3>
<ul class="text-xs text-slate-300 space-y-1">
<li>β’ High volatility overlaps with London</li>
<li>β’ News catalysts (NFP, CPI) = Marubozu</li>
<li>β’ Evening Star rejections at key levels common</li>
<li>β’ Best: Trade news breakouts, not pullbacks</li>
</ul>
</div>
</div>
</section>
<!-- Key Economic Events -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">How Gold Responds to Major Economic Events</h2>
<div class="space-y-3">
<div class="flex gap-4 bg-slate-800/50 p-4 rounded-lg">
<div class="text-xl font-bold text-red-400 flex-shrink-0">π</div>
<div>
<p class="font-semibold text-slate-200">NFP (Non-Farm Payroll) - 1st Friday of Month</p>
<p class="text-sm text-slate-300 mt-1">Gold spikes on weak data (usually down), reverses sharply on strong data. Expect Marubozu or Shooting Stars. Volatility often 50+ pips in 10 minutes.</p>
</div>
</div>
<div class="flex gap-4 bg-slate-800/50 p-4 rounded-lg">
<div class="text-xl font-bold text-blue-400 flex-shrink-0">π</div>
<div>
<p class="font-semibold text-slate-200">CPI (Inflation Data) - Monthly</p>
<p class="text-sm text-slate-300 mt-1">Higher inflation = Gold rallies. Lower inflation = Gold dumps. Watch for reversal patterns at psychological levels post-release.</p>
</div>
</div>
<div class="flex gap-4 bg-slate-800/50 p-4 rounded-lg">
<div class="text-xl font-bold text-green-400 flex-shrink-0">π</div>
<div>
<p class="font-semibold text-slate-200">FOMC Rate Decision - Every 6 weeks</p>
<p class="text-sm text-slate-300 mt-1">Doji patterns 1 hour before announcement common. On decision: strong Marubozu (direction depends on hawkish/dovish tone). Don't fight the Marubozu momentum.</p>
</div>
</div>
<div class="flex gap-4 bg-slate-800/50 p-4 rounded-lg">
<div class="text-xl font-bold text-amber-400 flex-shrink-0">π</div>
<div>
<p class="font-semibold text-slate-200">Fed Chair Speech / Geopolitical News</p>
<p class="text-sm text-slate-300 mt-1">Unpredictable direction, but always creates sharp Marubozu moves. Risk/reward on these event patterns is usually poor unless you predict the direction correctly.</p>
</div>
</div>
</div>
</section>
<!-- Quick Checklists -->
<section class="mt-20 grid md:grid-cols-2 gap-6">
<div class="highlight-box p-6 rounded-2xl animate-slide">
<h3 class="text-xl font-bold gold mb-4">β
Pre-Trade Checklist (Before You Enter)</h3>
<ul class="text-sm text-slate-300 space-y-2">
<li>β Pattern formed at identified S/R zone (not random)</li>
<li>β Confirmed with previous candlestick & wick shapes</li>
<li>β Daily chart shows supporting structure (trend, levels)</li>
<li>β Stop loss is 10+ pips away from pattern low/high</li>
<li>β Profit target is 2x+ risk (R:R minimum 1:2)</li>
<li>β Position size = 1-2% account risk</li>
<li>β No major news within next 2 hours</li>
<li>β Current session is favorable for pattern type</li>
</ul>
</div>
<div class="highlight-box p-6 rounded-2xl animate-slide">
<h3 class="text-xl font-bold gold mb-4">π Post-Trade Analysis (After You Exit)</h3>
<ul class="text-sm text-slate-300 space-y-2">
<li>β Did pattern form at multi-timeframe confluence?</li>
<li>β Was the entry/exit optimal (within 2-3 pips)?</li>
<li>β Did price follow expected target or get stopped out?</li>
<li>β Log the pattern type, session, and result (W/L)</li>
<li>β Calculate win rate by pattern over 30+ trades</li>
<li>β Identify your best-performing patterns</li>
<li>β Adjust strategy: focus on high-probability setups</li>
<li>β Review chart again to spot what you missed</li>
</ul>
</div>
</section>
<!-- Timeframe Guide -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Timeframe Strategies: Which Pattern Works Best Where</h2>
<div class="space-y-4">
<div class="grid md:grid-cols-2 gap-4">
<div class="bg-slate-800/50 p-4 rounded-lg">
<h4 class="font-bold text-emerald-400 mb-2">M15 / M30 (Scalping)</h4>
<p class="text-xs text-slate-300 mb-2">Best patterns: Hammer, Shooting Star, Doji</p>
<p class="text-xs text-slate-300">Focus on tight stops (3-5 pips), quick profits (10-20 pips). Patterns form faster but fail faster. Requires constant chart watching.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h4 class="font-bold text-amber-400 mb-2">H1 (Swing/Intraday)</h4>
<p class="text-xs text-slate-300 mb-2">Best patterns: Engulfing, Morning Star, Marubozu</p>
<p class="text-xs text-slate-300">Sweet spot for beginners. Clear patterns, reliable S/R zones. Targets 40-100+ pips. Can trade 2-3 times per day.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h4 class="font-bold text-blue-400 mb-2">H4 (Swing/Intermediate)</h4>
<p class="text-xs text-slate-300 mb-2">Best patterns: Morning/Evening Star, 3-day patterns</p>
<p class="text-xs text-slate-300">High accuracy patterns. Targets 100-300+ pips. Trade 1-2 times per week. Requires patience between setups.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<h4 class="font-bold text-cyan-400 mb-2">D1 (Long-term/Position)</h4>
<p class="text-xs text-slate-300 mb-2">Best patterns: Morning/Evening Star, Engulfing</p>
<p class="text-xs text-slate-300">Highest win rate but slowest. Targets 200-800+ pips. Trade 2-4 times per month. Fits busy schedules.</p>
</div>
</div>
</div>
</section>
<!-- Common Pattern Combinations -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Powerful Pattern Combinations (Setup on Setup)</h2>
<div class="space-y-3">
<div class="bg-slate-800/50 p-4 rounded-lg">
<p class="font-bold text-emerald-400 mb-1">π― Bullish Combo: Hammer + Bullish Engulfing</p>
<p class="text-sm text-slate-300">Hammer forms at support β next candle is Bullish Engulfing. Extremely high probability reversal. Target 2-3x risk.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<p class="font-bold text-rose-400 mb-1">π― Bearish Combo: Shooting Star + Bearish Engulfing</p>
<p class="text-sm text-slate-300">Shooting Star at resistance β next candle is Bearish Engulfing. Strong distribution. Target support 50-100+ pips down.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<p class="font-bold text-amber-400 mb-1">π― Reversal Combo: Tweezer Bottom + Piercing Line</p>
<p class="text-sm text-slate-300">Two candles test same low (Tweezer) β third candle closes 50%+ above first candle (Piercing Line). Very reliable bounce pattern.</p>
</div>
<div class="bg-slate-800/50 p-4 rounded-lg">
<p class="font-bold text-blue-400 mb-1">π― Continuation Combo: Doji + Marubozu</p>
<p class="text-sm text-slate-300">Doji shows indecision β next candle is strong Marubozu. Breakout direction is confirmed. Trade the Marubozu's direction.</p>
</div>
</div>
</section>
<!-- Tools and Resources -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Recommended Tools & Resources for Gold Trading</h2>
<div class="grid md:grid-cols-2 gap-4">
<div>
<h3 class="text-emerald-400 font-bold mb-3">π± Charting & Analysis</h3>
<ul class="text-sm text-slate-300 space-y-1">
<li>β’ TradingView (Best for pattern analysis & alerts)</li>
<li>β’ MT4/MT5 (Industry standard for gold brokers)</li>
<li>β’ Thinkorswim (Advanced charting, free)</li>
<li>β’ Forex.com / OANDA (Live gold charts)</li>
</ul>
</div>
<div>
<h3 class="text-amber-300 font-bold mb-3">π Economic Calendar</h3>
<ul class="text-sm text-slate-300 space-y-1">
<li>β’ Investing.com Economic Calendar</li>
<li>β’ ForexFactory.com</li>
<li>β’ Tradingeconomics.com</li>
<li>β’ Bloomberg Terminal (Institutional)</li>
</ul>
</div>
</div>
<div class="mt-4 bg-slate-800/50 p-4 rounded-lg">
<p class="text-sm text-slate-300"><strong>β Pro Tip:</strong> Set alerts on TradingView for specific patterns (Engulfing, Morning Star) at key S/R zones. Let the chart notify you instead of staring at screens all day.</p>
</div>
</section>
<!-- Final Summary -->
<section class="mt-20 highlight-box p-8 rounded-2xl animate-slide">
<h2 class="text-2xl font-bold gold mb-6">Your 30-Day Action Plan</h2>
<div class="space-y-3">
<div class="flex gap-3">
<div class="text-lg font-bold text-emerald-400">Week 1:</div>
<div class="text-sm text-slate-300">Study all 12 patterns. Identify them on past charts (no live trading). Learn their formations & context.</div>
</div>
<div class="flex gap-3">
<div class="text-lg font-bold text-emerald-400">Week 2:</div>
<div class="text-sm text-slate-300">Paper trade (demo account) 10-15 patterns at major S/R zones. Record entry/exit reasons. Build confidence.</div>
</div>
<div class="flex gap-3">
<div class="text-lg font-bold text-emerald-400">Week 3:</div>
<div class="text-sm text-slate-300">Start live trading with 0.1 micro lots. Focus on H1 timeframe only. Risk 0.5% per trade max. Log every trade.</div>
</div>
<div class="flex gap-3">
<div class="text-lg font-bold text-emerald-400">Week 4:</div>
<div class="text-sm text-slate-300">Review 30+ live trades. Calculate win rate by pattern. Double down on your best patterns. Eliminate losers.</div>
</div>
</div>
<div class="mt-6 border-t border-slate-600 pt-6">
<p class="text-slate-300"><strong class="gold">Remember:</strong> Candlestick patterns are tools, not guarantees. Success comes from combining patterns with price structure (S/R), risk management, and emotional discipline. Master one pattern type first. Then expand. Quick profits come from fast execution; big profits come from patience and confluence.</p>
</div>
</section>
</main>
<!-- Footer -->
<footer class="mt-20 border-t border-slate-800 pt-10 pb-8 text-center text-slate-500 text-sm">
<p class="font-semibold text-slate-400 mb-2">XAU/USD Candlestick Pattern Bible 2026</p>
<p>Created as trading reference β’ Not financial advice β’ Always combine with structure & risk management</p>
<p class="mt-3 text-xs">This guide is for educational purposes only. Gold trading involves substantial risk. Always use proper risk management and never risk more than you can afford to lose.</p>
<p class="mt-3">Last updated β’ January 2026 β’ Β© Trading Education</p>
</footer>
</body>
</html>