-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsilver.html
More file actions
956 lines (914 loc) · 62.2 KB
/
silver.html
File metadata and controls
956 lines (914 loc) · 62.2 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
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
<!-- ═══ PRIMARY SEO ═══ -->
<title>Silver Price Bangladesh Today | আজকের রুপার দাম | 1 Vori 22K Silver BD | GoldPriceBD</title>
<meta name="description" content="Today's silver price in Bangladesh. Official BAJUS rates per vori & gram for 22K, 21K, 18K silver. আজকের রুপার দাম বাংলাদেশ। Silver vs gold investment BD, best time to buy silver, silver calculation Bangladesh. Updated every 4 hours.">
<meta name="keywords" content="silver price bangladesh,silver price bd,silver rate bd,silver price today bangladesh,bajus silver price today,22k silver price bd today,bajus silver rate today,1 vori silver price in bangladesh,silver price per vori bangladesh,silver price per gram bangladesh,today silver rate dhaka,silver calculator bangladesh,silver calculation bangladesh,আজকের রুপার দাম,আজকের রুপার দাম বাংলাদেশ,রুপার দাম বাংলাদেশ,aajker rupar dam,ajker silver price,silver vs gold investment bangladesh,best time to buy silver in bangladesh,why silver price increases in bangladesh,silver price prediction bd,silver price bdt,xag bdt,silver bangladesh taka,18k silver price bangladesh,21k silver price bangladesh,traditional silver price bangladesh,silver making charge bangladesh,silver vat bangladesh,GoldPriceBD,goldpricebd">
<meta name="author" content="Niloy Kanti Paul">
<meta name="robots" content="index,follow,max-snippet:-1,max-image-preview:large,max-video-preview:-1">
<meta name="googlebot" content="index,follow,max-video-preview:-1,max-image-preview:large">
<meta name="bingbot" content="index,follow">
<!-- ═══ GEO / LOCAL SEO ═══ -->
<meta name="geo.region" content="BD">
<meta name="geo.placename" content="Bangladesh">
<meta name="geo.position" content="23.685;90.3563">
<meta name="ICBM" content="23.685, 90.3563">
<meta name="language" content="English, Bengali">
<meta name="coverage" content="Bangladesh">
<meta name="distribution" content="global">
<meta name="rating" content="general">
<meta name="revisit-after" content="4 hours">
<!-- ═══ THEME & PWA ═══ -->
<meta name="theme-color" content="#060912">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="GoldPriceBD">
<meta name="application-name" content="GoldPriceBD">
<meta name="msapplication-TileColor" content="#060912">
<meta name="msapplication-navbutton-color" content="#060912">
<!-- ═══ CANONICAL & HREFLANG ═══ -->
<link rel="canonical" href="https://goldpricebd.pro.bd/silver">
<link rel="alternate" hreflang="en-BD" href="https://goldpricebd.pro.bd/silver">
<link rel="alternate" hreflang="bn-BD" href="https://goldpricebd.pro.bd/silver?lang=bn">
<link rel="alternate" hreflang="en" href="https://goldpricebd.pro.bd/silver">
<link rel="alternate" hreflang="bn" href="https://goldpricebd.pro.bd/silver?lang=bn">
<link rel="alternate" hreflang="x-default" href="https://goldpricebd.pro.bd/silver">
<!-- ═══ VERIFIED SEO TOOLS ═══ -->
<meta name="google-site-verification" content="Lzzf7jy0V09bRgZJWnvtfy4ZmzFf_erhf3b1MSONBjU">
<meta name="msvalidate.01" content="227BF01D2BC9D42FED6873CDF5378DE3">
<meta name="yandex-verification" content="388ad5d28d959e8a">
<!-- ═══ GOOGLE ANALYTICS ═══ -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8S8ZLGZQFM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8S8ZLGZQFM');
</script>
<!-- ═══ CLARITY ═══ -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "w7txsozit8");
</script>
<!-- ═══ PRELOAD & PRECONNECT ═══ -->
<link rel="preload" href="/my-favicon/favicon-96x96.png" as="image">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://gold-api.com">
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">
<!-- ═══ OPEN GRAPH ═══ -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://goldpricebd.pro.bd/silver">
<meta property="og:title" content="Silver Price Bangladesh Today — আজকের রুপার দাম | GoldPriceBD">
<meta property="og:description" content="Official BAJUS silver prices Bangladesh per vori & gram. আজকের রুপার দাম। Silver vs gold investment BD, best time to buy silver. Updated every 4 hours.">
<meta property="og:site_name" content="GoldPriceBD">
<meta property="og:locale" content="en_BD">
<meta property="og:locale:alternate" content="bn_BD">
<meta property="og:image" content="https://goldpricebd.pro.bd/og-image-silver.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Silver Price Bangladesh Today — GoldPriceBD">
<!-- ═══ TWITTER ═══ -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@GoldPriceBD">
<meta name="twitter:creator" content="@niloykantipaul">
<meta name="twitter:title" content="Silver Price Bangladesh Today — আজকের রুপার দাম | GoldPriceBD">
<meta name="twitter:description" content="Live BAJUS silver prices Bangladesh. Per vori & gram. আজকের রুপার দাম। Silver vs gold, best time to buy silver BD.">
<meta name="twitter:image" content="https://goldpricebd.pro.bd/og-image-silver.png">
<meta name="twitter:image:alt" content="Silver Price Bangladesh Today — GoldPriceBD">
<!-- ═══ STRUCTURED DATA ═══ -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebPage",
"@id": "https://goldpricebd.pro.bd/silver",
"name": "Silver Price in Bangladesh Today — আজকের রুপার দাম | GoldPriceBD",
"alternateName": ["আজকের রুপার দাম বাংলাদেশ", "Silver Rate BD Today"],
"url": "https://goldpricebd.pro.bd/silver",
"description": "Official BAJUS silver prices Bangladesh 2026 for 22K, 21K, 18K, Traditional silver per vori and gram. আজকের রুপার দাম।",
"datePublished": "2025-01-01",
"dateModified": "2026-04-02",
"inLanguage": ["en", "bn"],
"isPartOf": {"@id": "https://goldpricebd.pro.bd/#website"},
"about": {"@id": "https://goldpricebd.pro.bd/#organization"},
"breadcrumb": {
"@id": "https://goldpricebd.pro.bd/silver#breadcrumb"
},
"primaryImageOfPage": {
"@type": "ImageObject",
"url": "https://goldpricebd.pro.bd/og-image-silver.png"
},
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": ["h1", "#silver-prices-heading"]
}
},
{
"@type": "BreadcrumbList",
"@id": "https://goldpricebd.pro.bd/silver#breadcrumb",
"itemListElement": [
{"@type":"ListItem","position":1,"name":"Home","item":"https://goldpricebd.pro.bd/"},
{"@type":"ListItem","position":2,"name":"Silver Price Bangladesh","item":"https://goldpricebd.pro.bd/silver"}
]
},
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is the silver price per vori in Bangladesh today?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The BAJUS official silver price per vori (11.664 grams) in Bangladesh is updated daily on GoldPriceBD for 22K, 21K, 18K, and Traditional silver. 22K silver is the standard rate. Prices are set by BAJUS based on international XAG spot price, USD/BDT exchange rate, and local market conditions. আজকের রুপার দাম দেখুন GoldPriceBD-তে।"
}
},
{
"@type": "Question",
"name": "What is 1 vori silver price in Bangladesh?",
"acceptedAnswer": {
"@type": "Answer",
"text": "1 Vori equals 11.664 grams. The 1 vori silver price in Bangladesh is set daily by BAJUS for each karat (22K, 21K, 18K, Traditional). 1 Vori = 1 Tola = 16 Ana = 96 Roti. Check GoldPriceBD for today's exact 1 vori silver price BD per BAJUS official rates."
}
},
{
"@type": "Question",
"name": "What is the 22K silver price in BD today?",
"acceptedAnswer": {
"@type": "Answer",
"text": "22K silver price in BD today is the official BAJUS rate for 22 karat silver per vori and per gram. 22K is 91.67% pure silver and is the most popular karat for silver jewellery in Bangladesh. GoldPriceBD updates the 22K silver price BD every 4 hours from official BAJUS sources."
}
},
{
"@type": "Question",
"name": "What is BAJUS silver rate today?",
"acceptedAnswer": {
"@type": "Answer",
"text": "BAJUS silver rate today is published daily by Bangladesh Jewellers Samity from their Dhaka office. BAJUS sets official rates for 22K, 21K, 18K, and Traditional silver per vori. GoldPriceBD displays BAJUS silver rate today with automatic updates every 4 hours."
}
},
{
"@type": "Question",
"name": "What is the gold to silver ratio in Bangladesh?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The gold to silver ratio tells you how many ounces of silver equal one ounce of gold. In 2026, the international ratio is typically 80-100:1. When this ratio is high (above 80), silver is considered historically undervalued relative to gold — potentially a buying opportunity. GoldPriceBD shows the live gold/silver ratio."
}
},
{
"@type": "Question",
"name": "আজকে রুপার দাম কত বাংলাদেশে?",
"acceptedAnswer": {
"@type": "Answer",
"text": "আজকে বাংলাদেশে রুপার দাম BAJUS (বাংলাদেশ জুয়েলার্স সমিতি) দ্বারা প্রতিদিন নির্ধারিত হয়। ২২ ক্যারেট, ২১ ক্যারেট, ১৮ ক্যারেট রুপার দাম প্রতি ভরিতে ও প্রতি গ্রামে BAJUS কর্তৃক প্রকাশিত হয়। GoldPriceBD প্রতি ৪ ঘন্টা অন্তর রুপার দাম আপডেট করে।"
}
},
{
"@type": "Question",
"name": "Why does silver price increase in Bangladesh?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Silver price increases in Bangladesh due to: (1) International XAG spot price rises, (2) USD/BDT exchange rate depreciation, (3) Industrial demand growth (electronics, solar panels, medical), (4) Silver being a byproduct of gold/copper mining — reduced mining output affects supply, (5) Import duties and VAT, (6) Local demand during festival seasons. Silver is more volatile than gold, so percentage swings are larger."
}
},
{
"@type": "Question",
"name": "When is the best time to buy silver in Bangladesh?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The best time to buy silver in Bangladesh is: (1) When the gold/silver ratio exceeds 80:1 (silver historically undervalued), (2) After major festivals when demand drops, (3) Mid-week (Tuesday-Wednesday) when BAJUS rates are typically lower, (4) When international XAG spot price dips from recent highs, (5) When USD/BDT rate stabilizes. Silver's higher volatility means bigger dips — and bigger buying opportunities."
}
},
{
"@type": "Question",
"name": "How to calculate silver jewellery price in Bangladesh?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Silver jewellery price in Bangladesh = (BAJUS silver rate per gram × weight in grams) + making charge (approximately ৳26/gram for silver) + 5% VAT on silver value. Example: 50g of 22K silver = silver value + (৳26 × 50) making + 5% VAT. Use GoldPriceBD's free silver calculator for instant calculations with today's BAJUS rates."
}
},
{
"@type": "Question",
"name": "Silver vs gold — which is better investment in Bangladesh?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Gold is better for wealth preservation (stable, high liquidity, cultural value). Silver is better for higher percentage returns (more volatile, lower entry cost per vori, industrial demand). For most BD investors: buy gold for security, silver for growth potential. When gold/silver ratio is above 80, silver may be undervalued. Both follow BAJUS official daily rates. See GoldPriceBD home page for detailed comparison."
}
}
]
},
{
"@type": "Product",
"@id": "https://goldpricebd.pro.bd/silver#product-silver-22k",
"name": "22K Silver Price Bangladesh — Per Vori",
"description": "22 Karat silver price in Bangladesh per vori and per gram — Official BAJUS rate today",
"brand": {"@type": "Brand", "name": "BAJUS"},
"offers": {
"@type": "Offer",
"url": "https://goldpricebd.pro.bd/silver",
"priceCurrency": "BDT",
"availability": "https://schema.org/InStock",
"seller": {"@id": "https://goldpricebd.pro.bd/#organization"}
}
},
{
"@type": "HowTo",
"name": "How to Calculate Silver Jewellery Price in Bangladesh",
"description": "Step-by-step guide to calculate silver jewellery cost using BAJUS official rates",
"totalTime": "PT2M",
"step": [
{"@type": "HowToStep", "position": 1, "name": "Check BAJUS silver rate", "text": "Visit GoldPriceBD silver page to check today's BAJUS silver rate for your karat (22K, 21K, 18K). Note the per-gram price.", "url": "https://goldpricebd.pro.bd/silver#calculator"},
{"@type": "HowToStep", "position": 2, "name": "Multiply by weight", "text": "Multiply the BAJUS per-gram rate by the weight of your silver in grams to get the silver value."},
{"@type": "HowToStep", "position": 3, "name": "Add making charge", "text": "Add the making charge: approximately ৳26 per gram for silver jewellery (much lower than gold's ৳250-400/gram)."},
{"@type": "HowToStep", "position": 4, "name": "Add 5% VAT", "text": "Add 5% VAT on the silver value. Total = silver value + making charge + VAT."}
]
},
{
"@type": "Article",
"@id": "https://goldpricebd.pro.bd/silver#article-why-silver-increases",
"headline": "Why Silver Price Increases in Bangladesh — Key Reasons Explained",
"description": "Analysis of why silver price increases in Bangladesh: XAG spot price, USD/BDT rate, industrial demand, import duties, and market factors.",
"author": {"@id": "https://goldpricebd.pro.bd/#organization"},
"publisher": {"@id": "https://goldpricebd.pro.bd/#organization"},
"datePublished": "2026-01-20",
"dateModified": "2026-04-02",
"mainEntityOfPage": "https://goldpricebd.pro.bd/silver#why-silver-increases"
},
{
"@type": "Article",
"@id": "https://goldpricebd.pro.bd/silver#article-best-time-silver",
"headline": "Best Time to Buy Silver in Bangladesh — Guide 2026",
"description": "When is the best time to buy silver in Bangladesh? Gold/silver ratio, seasonal patterns, and data-driven buying guide.",
"author": {"@id": "https://goldpricebd.pro.bd/#organization"},
"publisher": {"@id": "https://goldpricebd.pro.bd/#organization"},
"datePublished": "2026-02-15",
"dateModified": "2026-04-02",
"mainEntityOfPage": "https://goldpricebd.pro.bd/silver#best-time-silver"
}
]
}
</script>
<!-- ═══ FAVICONS ═══ -->
<link rel="icon" type="image/png" href="/my-favicon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/my-favicon/favicon.svg">
<link rel="shortcut icon" href="/my-favicon/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/my-favicon/apple-touch-icon.png">
<link rel="manifest" href="/my-favicon/site.webmanifest">
<!-- ═══ FONTS ═══ -->
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Noto+Serif+Bengali:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js" defer></script>
<style>
/* Silver page overrides */
.eyebrow{background:var(--silver-ghost);border-color:var(--silver-edge);color:var(--silver-lt);}
.eyebrow::before{background:var(--silver-lt);}
.cta-primary{background:var(--silver-g);color:#06090F;box-shadow:0 0 28px rgba(155,170,181,.2);}
.cta-primary:hover{box-shadow:0 0 45px rgba(155,170,181,.32);}
.calc-btn{background:var(--silver-g);color:#06090F;box-shadow:0 4px 18px rgba(155,170,181,.2);}
.calc-btn:hover{box-shadow:0 6px 28px rgba(155,170,181,.35);}
.glow-orb.g1{background:radial-gradient(circle,rgba(155,170,181,.05) 0%,transparent 70%)!important;}
.live-pill{background:rgba(46,201,122,.08);border-color:rgba(46,201,122,.2);}
</style>
</head>
<body>
<canvas id="particles-canvas" aria-hidden="true"></canvas>
<div class="glow-orb g1" aria-hidden="true"></div>
<div class="glow-orb g2" aria-hidden="true"></div>
<!-- ══ NAV ══ -->
<nav id="nav" role="navigation" aria-label="Main navigation">
<a class="logo" href="/" aria-label="GoldPriceBD Home — Gold Price Bangladesh">
<div class="logo-mark" aria-hidden="true"><img src="/my-favicon/favicon.ico"></div>
<span class="logo-name">Gold<em>Price</em>BD</span>
</a>
<ul class="nav-links" role="list">
<li><a href="#silver-prices">Prices</a></li>
<li><a href="#ten-day">10-Day History</a></li>
<li><a href="#live">Live Market</a></li>
<li><a href="#compare">Compare</a></li>
<li><a href="#history">Chart</a></li>
<li><a href="#forecast">Forecast</a></li>
<li><a href="#calculator">Calculator</a></li>
</ul>
<div class="nav-right">
<div class="nav-page-links">
<a href="/" id="nav-home-link"><i class="fa-solid fa-house" aria-hidden="true"></i> Home</a>
<a href="/gold" id="nav-gold-link"><i class="fas fa-coins" aria-hidden="true"></i> Gold</a>
<a href="/silver" id="nav-silver-link" class="active" aria-current="page"><i class="fas fa-medal" aria-hidden="true"></i> Silver</a>
</div>
<div id="nav-clock" aria-live="off" role="timer"></div>
<div class="lang-sw">
<button class="lang-btn" id="lang-btn" aria-expanded="false" aria-haspopup="listbox">🌐 EN</button>
<div class="lang-dd" id="lang-dd" role="listbox">
<span class="lang-opt" data-lang="en" role="option" tabindex="0">🇬🇧 English</span>
<span class="lang-opt" data-lang="bn" role="option" tabindex="0">🇧🇩 বাংলা</span>
<span class="lang-opt" data-lang="ar" role="option" tabindex="0">🇸🇦 العربية</span>
<span class="lang-opt" data-lang="hi" role="option" tabindex="0">🇮🇳 हिन्दी</span>
</div>
</div>
<button class="nav-toggle" id="nav-toggle" aria-label="Toggle mobile menu" aria-expanded="false">
<span></span><span></span><span></span>
</button>
</div>
</nav>
<!-- ══ MOBILE MENU ══ -->
<div class="mobile-menu" id="mobile-menu" role="dialog" aria-label="Mobile navigation" aria-hidden="true">
<ul>
<li><a href="/" class="mobile-link"><i class="fa-solid fa-house" aria-hidden="true"></i> Home</a></li>
<li><a href="/gold" class="mobile-link"><i class="fas fa-coins" aria-hidden="true"></i> Gold Prices BD</a></li>
<li><a href="#ten-day" class="mobile-link"><i class="fas fa-table" aria-hidden="true"></i> 10-Day History</a></li>
<li><a href="#live" class="mobile-link"><i class="fas fa-chart-line" aria-hidden="true"></i> Live Market</a></li>
<li><a href="#compare" class="mobile-link"><i class="fas fa-balance-scale" aria-hidden="true"></i> Compare</a></li>
<li><a href="#history" class="mobile-link"><i class="fas fa-history" aria-hidden="true"></i> Price Chart</a></li>
<li><a href="#forecast" class="mobile-link"><i class="fas fa-arrow-trend-up" aria-hidden="true"></i> Forecast</a></li>
<li><a href="#calculator" class="mobile-link"><i class="fas fa-calculator" aria-hidden="true"></i> Calculator</a></li>
</ul>
<div class="mobile-meta">
<div class="nav-page-links" style="flex-direction:column;gap:.5rem;">
<a href="/"><i class="fa-solid fa-house" aria-hidden="true"></i> Home — Gold Price BD</a>
<a href="/gold"><i class="fas fa-coins" aria-hidden="true"></i> Gold Prices Page</a>
</div>
</div>
</div>
<!-- ══ STATUS BAR ══ -->
<div class="status-bar" role="status" aria-live="polite" aria-atomic="false">
<div class="si"><div class="sd dot-warn" id="sd-bajus" aria-hidden="true"></div><span>BAJUS:</span><span class="sv" id="st-bajus">Loading…</span></div>
<div class="si"><div class="sd dot-warn" id="sd-intl" aria-hidden="true"></div><span>International:</span><span class="sv" id="st-intl">Loading…</span></div>
<div class="si"><div class="sd dot-warn" id="sd-fx" aria-hidden="true"></div><span>USD/BDT:</span><span class="sv" id="st-fx">Loading…</span></div>
</div>
<!-- ══ TICKER ══ -->
<div class="ticker-wrap" aria-label="Live silver price ticker" role="marquee">
<div class="ticker-inner" id="ticker"><div class="ti"><span class="tn">Loading…</span></div></div>
</div>
<main id="main-content">
<!-- ══ HERO ══ -->
<section class="hero" aria-label="Silver price hero">
<div class="eyebrow">Official BAJUS Rate · Auto-Updated · Live International</div>
<h1>
<em style="background:var(--silver-g);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;">Silver Price</em>
in Bangladesh — <span lang="bn">আজকের রুপার দাম</span>
</h1>
<p class="hero-sub">Official BAJUS silver rates for 22K, 21K, 18K, and Traditional silver — per vori, gram, tola, troy ounce & kilogram. <a href="#why-silver-increases">Why silver price increases in Bangladesh</a>. <a href="#best-time-silver">Best time to buy silver</a>. <a href="/#gold-vs-silver">Silver vs gold investment BD</a>.</p>
<div class="hero-cta">
<a href="#calculator" class="cta-btn cta-primary"><i class="fas fa-calculator" aria-hidden="true"></i> Calculate Value</a>
<a href="/gold" class="cta-btn cta-secondary"><i class="fas fa-coins" aria-hidden="true"></i> Gold Prices</a>
<a href="#compare" class="cta-btn cta-secondary"><i class="fas fa-balance-scale" aria-hidden="true"></i> Compare International</a>
</div>
</section>
<!-- ══ SILVER PRICES ══ -->
<section class="sec silver-sec" id="silver-prices" aria-labelledby="silver-prices-heading">
<div class="sec-hd">
<h2 class="sec-ttl s" id="silver-prices-heading">Silver Price Bangladesh Today — All Karats · <span style="font-size:.65em;color:var(--txt3);" lang="bn">আজকের রুপার দাম</span></h2>
<span class="sec-meta">Source: BAJUS (Bangladesh Jewellers Association) · Official Daily Rate</span>
</div>
<div class="notice" id="bajus-silver-notice" role="status"><strong>Loading BAJUS silver prices…</strong></div>
<div class="p-grid silver-grid" role="list" aria-label="Silver prices in Bangladesh by karat — BAJUS official rates">
<div class="p-card" role="listitem"><div class="p-accent" aria-hidden="true"></div><div class="p-karat"><span class="badge b22">22K</span>Standard Silver · Most Popular</div><div class="p-price na" id="sp-22">—</div><div class="p-unit">BDT / Vori</div><div class="p-chg na" id="sc-22" aria-live="polite">Awaiting data</div></div>
<div class="p-card" role="listitem"><div class="p-accent" aria-hidden="true"></div><div class="p-karat"><span class="badge b21">21K</span>Hallmark Silver</div><div class="p-price na" id="sp-21">—</div><div class="p-unit">BDT / Vori</div><div class="p-chg na" id="sc-21" aria-live="polite">Awaiting data</div></div>
<div class="p-card" role="listitem"><div class="p-accent" aria-hidden="true"></div><div class="p-karat"><span class="badge b18">18K</span>Stone Setting Silver</div><div class="p-price na" id="sp-18">—</div><div class="p-unit">BDT / Vori</div><div class="p-chg na" id="sc-18" aria-live="polite">Awaiting data</div></div>
<div class="p-card" role="listitem"><div class="p-accent" aria-hidden="true"></div><div class="p-karat"><span class="badge btr">TRAD</span>Traditional / Sanatan</div><div class="p-price na" id="sp-tr">—</div><div class="p-unit">BDT / Vori</div><div class="p-chg na" id="sc-tr" aria-live="polite">Awaiting data</div></div>
</div>
<p style="font-size:10px;color:var(--txt3);letter-spacing:.8px;margin-bottom:.75rem;text-transform:uppercase;font-weight:600;">22K Silver — All Unit Conversions (BDT)</p>
<div class="conv-strip" role="list">
<div class="conv-cell" role="listitem"><div class="conv-lbl">Per Gram</div><div class="conv-val na" id="sv-gram">—</div></div>
<div class="conv-cell" role="listitem"><div class="conv-lbl">Per Vori (ভরি)</div><div class="conv-val na" id="sv-vori">—</div></div>
<div class="conv-cell" role="listitem"><div class="conv-lbl">Per Tola</div><div class="conv-val na" id="sv-tola">—</div></div>
<div class="conv-cell" role="listitem"><div class="conv-lbl">Per Troy Ounce</div><div class="conv-val na" id="sv-oz">—</div></div>
<div class="conv-cell" role="listitem"><div class="conv-lbl">Per Kilogram</div><div class="conv-val na" id="sv-kg">—</div></div>
</div>
<!-- Hidden gold stubs for app.js compatibility -->
<div style="display:none;" aria-hidden="true">
<div id="bajus-gold-notice"></div>
<div id="gold-utabs"><button class="u-tab active" data-u="vori"></button></div>
<div id="gp-22"></div><div id="gp-21"></div><div id="gp-18"></div><div id="gp-tr"></div>
<div id="gc-22"></div><div id="gc-21"></div><div id="gc-18"></div><div id="gc-tr"></div>
<div id="gu-22"></div><div id="gu-21"></div><div id="gu-18"></div><div id="gu-tr"></div>
<div id="gv-gram"></div><div id="gv-vori"></div><div id="gv-tola"></div>
<div id="gv-ana"></div><div id="gv-oz"></div><div id="gv-kg"></div>
</div>
</section>
<!-- ══ 10-DAY TABLE ══ -->
<section class="sec" id="ten-day" aria-labelledby="tenday-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="tenday-heading">Silver Rate Changes in Bangladesh — Last 10 Days</h2>
<span class="sec-meta">BAJUS official rates · daily change tracking</span>
</div>
<div class="ten-day-wrap">
<div class="ten-day-hd">
<h3>Silver Price History — Bangladesh 2026</h3>
<div class="ten-day-tabs" id="ten-day-silver-tabs" role="tablist">
<button class="active" data-k="bajus_s22" role="tab">22K</button>
<button data-k="bajus_s21" role="tab">21K</button>
<button data-k="bajus_s18" role="tab">18K</button>
<button data-k="bajus_str" role="tab">Trad</button>
</div>
</div>
<div style="overflow-x:auto;-webkit-overflow-scrolling:touch;">
<table class="tdt" aria-label="Silver price history Bangladesh last 10 days">
<thead><tr><th scope="col">Date</th><th scope="col">Per Gram (৳)</th><th scope="col">Per Vori (৳)</th><th scope="col">Change (৳)</th><th scope="col">Change %</th></tr></thead>
<tbody id="ten-day-silver-tbody"><tr><td colspan="5" style="text-align:center;color:var(--txt3);padding:1.5rem;">Loading…</td></tr></tbody>
</table>
</div>
</div>
<!-- Hidden gold stubs -->
<div style="display:none;" aria-hidden="true">
<div id="ten-day-karat-tabs"><button class="active" data-k="bajus_g22"></button></div>
<tbody id="ten-day-gold-tbody"></tbody>
</div>
<h3 style="font-family:var(--font-display);font-size:1.15rem;color:var(--txt2);margin:1.75rem 0 .9rem;font-weight:500;">Average Silver Rate — 22K per Gram (BDT)</h3>
<div class="avg-grid" role="list">
<div class="avg-cell" role="listitem"><div class="avg-lbl">Today</div><div class="avg-val" id="avg-silver-today">—</div><div class="avg-sub">Current BAJUS rate</div></div>
<div class="avg-cell" role="listitem"><div class="avg-lbl">7-Day Avg</div><div class="avg-val" id="avg-silver-7d">—</div><div class="avg-sub">Last 7 days</div></div>
<div class="avg-cell" role="listitem"><div class="avg-lbl">30-Day Avg</div><div class="avg-val" id="avg-silver-30d">—</div><div class="avg-sub">Last 30 days</div></div>
<div class="avg-cell" role="listitem"><div class="avg-lbl">7D High</div><div class="avg-val" id="avg-silver-7d-hi">—</div><div class="avg-sub">7-day maximum</div></div>
<div class="avg-cell" role="listitem"><div class="avg-lbl">7D Low</div><div class="avg-val" id="avg-silver-7d-lo">—</div><div class="avg-sub">7-day minimum</div></div>
<div class="avg-cell" role="listitem"><div class="avg-lbl">30D Change</div><div class="avg-val" id="avg-silver-30d-chg">—</div><div class="avg-sub">vs 30 days ago</div></div>
</div>
<!-- Hidden gold avg stubs -->
<div style="display:none;" aria-hidden="true">
<div id="avg-gold-today"></div><div id="avg-gold-7d"></div><div id="avg-gold-30d"></div>
<div id="avg-gold-7d-hi"></div><div id="avg-gold-7d-lo"></div><div id="avg-gold-30d-chg"></div>
</div>
</section>
<!-- ══ LIVE INTERNATIONAL ══ -->
<section class="sec" id="live" aria-labelledby="live-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="live-heading">International Silver Market (XAG Spot)</h2>
<span class="sec-meta">Source: gold-api.com · XAG 99.9% Fine · Auto updates</span>
</div>
<div class="kitco-box">
<div class="kitco-hdr">
<span class="kitco-ttl">Silver (XAG) — International 99.9% Fine Spot Price</span>
<span class="live-pill" aria-label="Live data"><span style="width:6px;height:6px;background:var(--up);border-radius:50%;display:inline-block;animation:dotPulse 2s infinite;" aria-hidden="true"></span> Live</span>
</div>
<div class="kitco-grid">
<div class="km">
<div class="km-name">Silver (XAG) — International 99.9% Fine</div>
<div class="km-usd s na" id="km-s-usd">—</div>
<div class="km-sub">Per Troy Ounce · USD</div>
<hr class="kd">
<div class="km-row"><span class="km-rl">Per Ounce</span><span class="km-rv na" id="km-s-oz-u">—</span><span class="km-rb na" id="km-s-oz-b">—</span></div>
<div class="km-row"><span class="km-rl">Per Gram</span><span class="km-rv na" id="km-s-g-u">—</span><span class="km-rb na" id="km-s-g-b">—</span></div>
<div class="km-row"><span class="km-rl">Per Vori</span><span class="km-rv na" id="km-s-v-u">—</span><span class="km-rb na" id="km-s-v-b">—</span></div>
<div class="km-row"><span class="km-rl">Per Kilo</span><span class="km-rv na" id="km-s-k-u">—</span><span class="km-rb na" id="km-s-k-b">—</span></div>
<div class="km-chg na" id="km-s-chg">—</div>
</div>
<div class="km" style="display:none;" aria-hidden="true">
<div class="km-usd g na" id="km-g-usd">—</div>
<div class="km-row"><span></span><span class="km-rv na" id="km-g-oz-u">—</span><span class="km-rb na" id="km-g-oz-b">—</span></div>
<div class="km-row"><span></span><span class="km-rv na" id="km-g-g-u">—</span><span class="km-rb na" id="km-g-g-b">—</span></div>
<div class="km-row"><span></span><span class="km-rv na" id="km-g-v-u">—</span><span class="km-rb na" id="km-g-v-b">—</span></div>
<div class="km-row"><span></span><span class="km-rv na" id="km-g-k-u">—</span><span class="km-rb na" id="km-g-k-b">—</span></div>
<div class="km-chg na" id="km-g-chg">—</div>
</div>
</div>
</div>
<div class="live-strip">
<div class="lc lc-s"><div class="lc-top" aria-hidden="true"></div><div class="lc-name">Silver Spot (XAG · 999)</div><div class="lc-val na" id="lc-s-usd">—</div><div class="lc-unit">Per Troy Ounce · USD</div><div class="lc-sub na" id="lc-s-bdt">—</div></div>
<div class="lc lc-u"><div class="lc-top" aria-hidden="true"></div><div class="lc-name">USD / BDT Exchange</div><div class="lc-val na" id="lc-usd">—</div><div class="lc-unit">Per 1 US Dollar</div><div class="lc-sub na" id="lc-usd-src">—</div></div>
<div class="lc lc-r"><div class="lc-top" aria-hidden="true"></div><div class="lc-name">Gold / Silver Ratio</div><div class="lc-val na" id="lc-ratio">—</div><div class="lc-unit">Oz Silver per 1 Oz Gold</div><div class="lc-sub na" id="lc-ratio-note">—</div></div>
<div class="lc lc-g" style="display:none;" aria-hidden="true"><div class="lc-top"></div><div class="lc-val na" id="lc-g-usd">—</div><div class="lc-sub na" id="lc-g-bdt">—</div></div>
</div>
</section>
<!-- ══ COMPARE ══ -->
<section class="sec" id="compare" aria-labelledby="compare-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="compare-heading">Bangladesh vs. International Silver Price — All Karats</h2>
<span class="sec-meta">BAJUS rate vs. purity-adjusted XAG international spot</span>
</div>
<div class="cmp-wrap">
<table class="cmp-table" aria-label="Bangladesh vs international silver price comparison">
<thead><tr><th scope="col">Karat / Type</th><th scope="col">BD Rate (৳/Vori)</th><th scope="col">BD Rate (৳/Gram)</th><th scope="col">Intl Spot ($/oz)</th><th scope="col">Intl Equiv (৳/gram)</th><th scope="col">BD Premium</th></tr></thead>
<tbody id="silver-cmp"><tr><td colspan="6" style="text-align:center;color:var(--txt3);padding:2rem;">Loading…</td></tr></tbody>
</table>
</div>
<div class="notice" id="prem-note" style="margin-top:1rem;" role="note"></div>
<div style="display:none;" aria-hidden="true"><table><tbody id="gold-cmp"></tbody></table></div>
</section>
<!-- ══ WHY SILVER INCREASES — LOW COMPETITION KEYWORD ══ -->
<section class="sec" id="why-silver-increases" aria-labelledby="why-silver-increases-h2">
<div class="sec-hd">
<h2 class="sec-ttl n" id="why-silver-increases-h2">Why Silver Price Increases in Bangladesh</h2>
<span class="sec-meta">Key Factors | বাংলাদেশে রুপার দাম কেন বাড়ে?</span>
</div>
<div class="notice" role="note">
<strong>Silver price increases in Bangladesh</strong> due to: (1) International XAG spot price rises, (2) USD/BDT exchange rate depreciation, (3) Industrial demand growth (electronics, solar panels, medical), (4) Reduced mining output (silver is a byproduct of gold/copper mining), (5) Import duties and VAT, (6) Local demand during festival seasons. Silver is more volatile than gold — percentage swings are larger.
</div>
<div class="about-grid">
<div class="about-card">
<h3>1. International XAG Spot Price</h3>
<p>The biggest factor affecting silver price in Bangladesh is the international silver spot price (XAG/USD). When global silver rises due to industrial demand, investment flows, or supply constraints, BAJUS increases Bangladesh silver rates proportionally.</p>
</div>
<div class="about-card">
<h3>2. USD/BDT Exchange Rate</h3>
<p>Silver is priced in USD globally. When the Bangladeshi Taka weakens against the US Dollar, the same ounce of silver costs more in BDT. This is why silver price BD often rises even when international silver is stable.</p>
</div>
<div class="about-card">
<h3>3. Industrial Demand Growth</h3>
<p>Unlike gold (mostly jewellery/investment), silver has massive industrial demand: solar panels, electronics, medical devices, EV batteries, and water purification. Growing industrial demand pushes silver prices higher globally and in Bangladesh.</p>
</div>
<div class="about-card">
<h3>4. Mining Supply Constraints</h3>
<p>Approximately 70-80% of silver is mined as a byproduct of copper, gold, and zinc mining. When primary metal mining slows, silver supply drops even if silver demand rises. This supply-demand mismatch drives silver price increases in Bangladesh.</p>
</div>
<div class="about-card">
<h3>5. Import Duties & VAT</h3>
<p>Bangladesh imposes import duties on silver. When government taxes increase, landed cost rises and BAJUS passes this to consumers. The 5% VAT on silver jewellery is mandatory nationwide.</p>
</div>
<div class="about-card">
<h3>6. Local Festival Demand</h3>
<p>Silver demand peaks during Eid, wedding season, and Durga Puja. BAJUS may adjust rates upward during high-demand periods. Prices dip after festivals — the <a href="#best-time-silver">best time to buy silver in Bangladesh</a>.</p>
</div>
<div class="about-card">
<h3 lang="bn" style="font-family:var(--font-bengali),var(--font-body);">বাংলাদেশে রুপার দাম কেন বাড়ে?</h3>
<p lang="bn" style="font-family:var(--font-bengali),var(--font-body);">বাংলাদেশে রুপার দাম বাড়ার প্রধান কারণ: আন্তর্জাতিক XAG স্পট প্রাইস বৃদ্ধি, ডলারের বিপরীতে টাকার অবমূল্যায়ন, শিল্প চাহিদা বৃদ্ধি (সোলার প্যানেল, ইলেকট্রনিক্স), খনি সরবরাহ সীমাবদ্ধতা, আমদানি শুল্ক, এবং উৎসবে চাহিদা বৃদ্ধি।</p>
</div>
<div class="about-card">
<h3>Silver Volatility vs Gold</h3>
<p>Silver is significantly more volatile than gold — monthly swings of 5-8% vs gold's 2-3%. This means silver falls faster during market downturns but also rises faster during recoveries. Understanding this volatility is key to timing your silver purchases in Bangladesh.</p>
</div>
</div>
</section>
<!-- ══ BEST TIME TO BUY SILVER — LOW COMPETITION KEYWORD ══ -->
<section class="sec" id="best-time-silver" aria-labelledby="best-time-silver-h2">
<div class="sec-hd">
<h2 class="sec-ttl n" id="best-time-silver-h2">Best Time to Buy Silver in Bangladesh</h2>
<span class="sec-meta">Seasonal Guide | বাংলাদেশে রুপা কখন কেনা ভালো?</span>
</div>
<div class="notice" role="note">
<strong>The best time to buy silver in Bangladesh</strong> is: (1) When the gold/silver ratio exceeds 80:1 (silver historically undervalued), (2) After major festivals when demand drops, (3) Mid-week (Tuesday-Wednesday) when BAJUS rates are typically lower, (4) When international XAG spot price dips from recent highs, (5) When USD/BDT rate stabilizes. Silver's higher volatility means bigger dips — and bigger buying opportunities.
</div>
<div class="about-grid">
<div class="about-card">
<h3>Gold/Silver Ratio — The Silver Buyer's Signal</h3>
<p>The gold/silver ratio is the single most important metric for silver buyers. When 1 oz of gold buys more than 80 oz of silver, silver is historically undervalued. Check the live ratio in the <a href="#live">International Market section</a> above. This is the best silver buying signal for BD investors.</p>
</div>
<div class="about-card">
<h3>Seasonal Pattern — When Silver is Cheapest in BD</h3>
<p>Silver is cheapest in Bangladesh during: March-April (post-wedding season), August-September (monsoon), and 2-3 weeks after Eid. Silver is most expensive during: November-February (wedding season), before Eid, and during Durga Puja.</p>
</div>
<div class="about-card">
<h3>Weekly Pattern for Silver BD</h3>
<p>Based on BAJUS price data: Tuesday and Wednesday typically have the lowest silver prices. Weekend prices tend to be higher due to jewellery shop demand. Buy mid-week for the best silver price BD.</p>
</div>
<div class="about-card">
<h3>Silver vs Gold Buying Strategy</h3>
<p>Since silver is more volatile, wait for a 5-8% dip from recent highs before buying. For gold, a 2-3% dip is sufficient. Silver's lower per-vori price makes it easier to accumulate over time. See <a href="/#gold-vs-silver">gold vs silver investment comparison</a> on our home page.</p>
</div>
<div class="about-card">
<h3 lang="bn" style="font-family:var(--font-bengali),var(--font-body);">বাংলাদেশে রুপা কখন কেনা সবচেয়ে ভালো?</h3>
<p lang="bn" style="font-family:var(--font-bengali),var(--font-body);">বাংলাদেশে রুপা কেনার সেরা সময়: গোল্ড/সিলভার রেশিও ৮০:১ এর বেশি হলে (রুপা ঐতিহাসিকভাবে অবমূল্যায়িত), বড় উৎসবের পরে, সপ্তাহের মাঝামাঝি, এবং আন্তর্জাতিক রুপার দাম কমলে। রুপার অস্থিরতা সোনার চেয়ে বেশি — তাই দাম কমলে সুযোগ নিন।</p>
</div>
</div>
</section>
<!-- ══ HISTORY CHART ══ -->
<section class="sec" id="history" aria-labelledby="history-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="history-heading">Silver Price History — Bangladesh</h2>
<span class="sec-meta" id="hist-meta">From stored data files · 2010 to present</span>
</div>
<div class="chart-ctrls" role="toolbar">
<div class="p-tabs" id="p-tabs" role="group" aria-label="Time period">
<button class="p-tab active" data-p="30d">1M</button>
<button class="p-tab" data-p="90d">3M</button>
<button class="p-tab" data-p="1y">1Y</button>
<button class="p-tab" data-p="3y">3Y</button>
<button class="p-tab" data-p="all">All</button>
</div>
<div class="m-toggle" id="m-toggle" style="display:none;">
<button class="m-btn ag" data-m="gold">Gold</button>
<button class="m-btn as active" data-m="silver">Silver</button>
<button data-m="both">Both</button>
</div>
<div class="chart-sel" id="ds-toggle" role="group">
<button class="active" data-ds="bajus">BAJUS (BDT)</button>
<button data-ds="intl">International (USD)</button>
</div>
<div class="u-tabs" id="h-utabs" style="background:none;border:none;padding:0;" role="group">
<button class="u-tab active" data-u="vori" style="background:var(--bg3);border:.5px solid var(--line);">Per Vori</button>
<button class="u-tab" data-u="gram" style="background:var(--bg3);border:.5px solid var(--line);">Per Gram</button>
</div>
</div>
<div class="chart-box"><canvas id="hist-chart" role="img" aria-label="Silver price history chart Bangladesh"></canvas></div>
<p class="chart-note">Historical data from collected sources · Tap/hover for exact values</p>
</section>
<!-- ══ FORECAST ══ -->
<section class="sec" id="forecast" aria-labelledby="forecast-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="forecast-heading">Silver Price Forecast Bangladesh 2026</h2>
<span class="sec-meta">Statistical linear regression · Not financial advice</span>
</div>
<div class="forecast-grid" style="grid-template-columns:1fr;">
<div class="fc-card">
<div class="fc-hd">
<div class="fc-icon fc-icon-s" aria-hidden="true"><i class="fas fa-medal"></i></div>
<div class="fc-ttl">Silver 22K — 7-Day Price Projection (Bangladesh)</div>
</div>
<div class="fc-val" id="fc-silver-val">—</div>
<div class="fc-desc" id="fc-silver-desc">Analyzing historical BAJUS silver price data…</div>
<div class="fc-trend fc-fl" id="fc-silver-trend">Calculating…</div>
</div>
</div>
<div class="forecast-chart-box"><canvas id="forecast-chart" role="img" aria-label="Silver price forecast chart Bangladesh 2026"></canvas></div>
<p class="forecast-disclaimer" data-i18n="fc_disclaimer">⚠ Forecasts use linear regression on historical BAJUS data. For informational purposes only — not financial advice. Silver price prediction BD is based on statistical models and may not reflect actual future prices.</p>
<div style="display:none;" aria-hidden="true"><div id="fc-gold-val"></div><div id="fc-gold-desc"></div><div id="fc-gold-trend"></div></div>
</section>
<!-- ══ CALCULATOR ══ -->
<section class="sec" id="calculator" aria-labelledby="calc-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="calc-heading">Silver Value Calculator — Silver Calculation Bangladesh</h2>
<span class="sec-meta">Uses current BAJUS silver rates — real data only</span>
</div>
<div class="notice" role="note">
<strong>How to calculate silver jewellery price in Bangladesh:</strong> (1) Check BAJUS silver rate per gram on GoldPriceBD, (2) Multiply by weight in grams, (3) Add making charge (~৳26/gram for silver), (4) Add 5% VAT on silver value. Use the calculator below for instant results.
</div>
<div class="calc-box">
<p class="calc-ttl">Calculate the Value of Your Silver</p>
<div class="calc-grid">
<div class="cf"><label for="c-wt">Weight</label><input type="number" id="c-wt" placeholder="e.g. 10" min="0" step="0.01" aria-label="Weight amount"></div>
<div class="cf"><label for="c-unit">Unit</label>
<select id="c-unit" aria-label="Weight unit">
<option value="vori">Vori (ভরি)</option><option value="gram">Gram</option>
<option value="tola">Tola</option><option value="ounce">Troy Ounce</option><option value="ana">Ana (আনা)</option>
</select>
</div>
<div class="cf"><label for="c-karat">Karat</label>
<select id="c-karat" aria-label="Silver karat">
<option value="s22">Silver 22K</option><option value="s21">Silver 21K</option>
<option value="s18">Silver 18K</option><option value="str">Silver Traditional</option>
</select>
</div>
<button class="calc-btn" onclick="calculate()" aria-label="Calculate silver value in BDT">Calculate ৳</button>
</div>
<div class="calc-res" id="calc-res" role="status" aria-live="polite">
<div class="calc-res-lbl" id="c-lbl">—</div>
<div class="calc-res-val" id="c-val">৳ 0</div>
<div class="calc-extra">+ 5% VAT = <strong id="c-vat">৳ 0</strong> · Total with making charge = <strong id="c-make">৳ 0</strong> <span id="c-make-note"></span></div>
</div>
</div>
</section>
<!-- ══ ABOUT / SEO CONTENT ══ -->
<section class="sec" id="about-silver" aria-labelledby="about-silver-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="about-silver-heading">About Silver Prices in Bangladesh — Complete Guide 2026</h2>
<span class="sec-meta">Complete Guide | রুপার দাম সম্পর্কে সব | FAQs</span>
</div>
<div class="about-grid">
<div class="about-card">
<h3>22 Karat Silver Price Bangladesh 2026</h3>
<p>22 Karat (22K) silver contains 91.67% pure silver. It is the most popular silver standard for jewellery in Bangladesh. Check the live 22K silver price BD above — updated every 4 hours from official BAJUS sources.</p>
</div>
<div class="about-card">
<h3>21 Karat Silver in Bangladesh</h3>
<p>21 Karat silver (87.5% pure) is the BAJUS Hallmark certified standard. BAJUS officially certifies 21K silver and sets rates proportionally below 22K pricing. Check today's 21K silver price BD above.</p>
</div>
<div class="about-card">
<h3>18 Karat Silver — Stone Settings</h3>
<p>18 Karat silver (75% pure) is more durable and popular for gemstone settings like rings, pendants, and bracelets with precious stones. Check the live 18K silver price above.</p>
</div>
<div class="about-card">
<h3>Traditional (Sanatan) Silver</h3>
<p>Traditional silver in Bangladesh refers to old recycled silver of variable purity (~60%). This is the lowest BAJUS tier with no guaranteed purity certification.</p>
</div>
<div class="about-card">
<h3>Silver vs Gold — Bangladesh 2026</h3>
<p>Silver is significantly cheaper than gold per vori, making it accessible to wider buyers. The gold/silver ratio in 2026 is typically 80-100:1. When the ratio exceeds 80, silver is historically undervalued — potentially a buying opportunity. See <a href="/#gold-vs-silver">detailed gold vs silver investment comparison</a> on our home page.</p>
</div>
<div class="about-card">
<h3>Silver Jewellery Total Cost in Bangladesh</h3>
<p>Total cost = (BAJUS silver rate × weight in grams) + making charge (<strong>≈৳26/gram</strong>) + <strong>5% VAT</strong>. Use our <a href="#calculator">silver calculator</a> for instant accurate estimates with today's BAJUS rates.</p>
</div>
<div class="about-card">
<h3 lang="bn" style="font-family:var(--font-bengali),var(--font-body);">আজকের রুপার দাম বাংলাদেশ ২০২৬</h3>
<p lang="bn" style="font-family:var(--font-bengali),var(--font-body);">
আজকে বাংলাদেশে রুপার দাম: ২২ ক্যারেট, ২১ ক্যারেট, ১৮ ক্যারেট এবং ঐতিহ্যবাহী রুপার দাম প্রতি ভরিতে ও প্রতি গ্রামে BAJUS কর্তৃক প্রকাশিত হয়।
BAJUS প্রতিদিন আন্তর্জাতিক XAG স্পট প্রাইস ও USD/BDT বিনিময় হার দেখে রুপার দাম নির্ধারণ করে।
<a href="#why-silver-increases">রুপার দাম কেন বাড়ে জানুন</a>।
<a href="#best-time-silver">রুপা কখন কিনবেন জানুন</a>।
</p>
</div>
<div class="about-card">
<h3>Why GoldPriceBD for Silver Prices?</h3>
<p>GoldPriceBD provides Bangladesh's most accurate silver prices by combining <strong>official BAJUS silver rates</strong> with <strong>live XAG spot prices</strong> from gold-api.com and real-time USD/BDT exchange rates. We show the gold/silver ratio and market insights to help you make informed decisions.</p>
</div>
<div class="about-card">
<h3>Silver Rate Factors in Bangladesh 2026</h3>
<p>Silver prices in Bangladesh are influenced by: <strong>international XAG spot price</strong>, <strong>USD/BDT exchange rate</strong>, <strong>industrial demand</strong> (solar, electronics), <strong>import duties & VAT</strong>, and local supply/demand. <a href="#why-silver-increases">Read why silver price increases in Bangladesh →</a></p>
</div>
<div class="about-card">
<h3>Silver Price BD — Today's Rate in Dhaka & All Bangladesh</h3>
<p>Silver price in Bangladesh is set by BAJUS as a single national rate — same price in Dhaka, Chittagong, Sylhet, Rajshahi, Khulna, and all cities. Today's silver rate Dhaka = BAJUS national rate.</p>
</div>
</div>
</section>
<!-- ══ DATA SOURCES — NOT nested inside about ══ -->
<section class="sec" id="data-sources" aria-labelledby="data-sources-heading">
<div class="sec-hd">
<h2 class="sec-ttl n" id="data-sources-heading">Powered By</h2>
<span class="sec-meta">Trusted platforms powering accurate price data</span>
</div>
<div class="logo-carousel">
<div class="logo-track" id="logoTrack">
<div class="logo-item">
<a href="https://nfjs.odoo.com" target="_blank" rel="noopener noreferrer" class="logo-link">
<div class="logo-icon">
<img src="https://nfjs.odoo.com/web/image/1364-2e93ef11/trans_white.webp" alt="NFJS Odoo" loading="lazy">
<div class="logo-fallback">🚀</div>
</div>
<div class="logo-name">New Fashion Jewellers</div>
<div class="logo-desc"></div>
</a>
</div>
<div class="logo-item active">
<a href="https://bajus.org" target="_blank" rel="noopener noreferrer" class="logo-link">
<div class="logo-icon">
<img src="https://bajus.org/desktop/img/logo.png" alt="BAJUS" loading="lazy">
<div class="logo-fallback">🏛️</div>
</div>
<div class="logo-name">BAJUS</div>
<div class="logo-desc">Official Bangladesh Jewellers Association</div>
</a>
</div>
<div class="logo-item">
<a href="https://www.bajusctg.org" target="_blank" rel="noopener noreferrer" class="logo-link">
<div class="logo-icon">
<img src="https://www.bajusctg.org/wp-content/uploads/2026/03/20260303_222643.png" alt="BAJUSCTG" loading="lazy">
<div class="logo-fallback">🌐</div>
</div>
<div class="logo-name">BAJUSCTG</div>
<div class="logo-desc">Alternative BAJUS source with API</div>
</a>
</div>
<div class="logo-item">
<a href="https://goldr.org" target="_blank" rel="noopener noreferrer" class="logo-link">
<div class="logo-icon">
<img src="https://www.goldr.org/uploads/image/logo.webp" alt="GoldR.org" loading="lazy">
<div class="logo-fallback">📊</div>
</div>
<div class="logo-name">GoldR.org</div>
<div class="logo-desc">Community gold price API</div>
</a>
</div>
<div class="logo-item">
<a href="https://gold-api.com" target="_blank" rel="noopener noreferrer" class="logo-link">
<div class="logo-icon">
<img src="https://gold-api.com/icon.webp" alt="Gold-API" loading="lazy">
<div class="logo-fallback">💰</div>
</div>
<div class="logo-name">Gold-API</div>
<div class="logo-desc">International spot prices</div>
</a>
</div>
<div class="logo-item">
<a href="https://www.exchangerate-api.com" target="_blank" rel="noopener noreferrer" class="logo-link">
<div class="logo-icon">
<img src="https://www.exchangerate-api.com/img/hr-logo-2022-ldpi-rc.png" alt="Open.ER-API" loading="lazy">
<div class="logo-fallback">💱</div>
</div>
<div class="logo-name">Open.ER-API</div>
<div class="logo-desc">Foreign exchange rates</div>
</a>
</div>
</div>
</div>
<div class="carousel-controls">
<button class="carousel-btn" id="prevBtn" aria-label="Previous data source">❮</button>
<button class="carousel-btn" id="nextBtn" aria-label="Next data source">❯</button>
</div>
<div class="carousel-indicators" id="indicators">
<span class="indicator active" data-index="0"></span>
<span class="indicator" data-index="1"></span>
<span class="indicator" data-index="2"></span>
<span class="indicator" data-index="3"></span>
<span class="indicator" data-index="4"></span>
<span class="indicator" data-index="5"></span>
</div>
</section>
<!-- ══ AUTHOR ══ -->
<div class="author-card" style="margin-top:2rem;" align="center" itemscope itemtype="https://schema.org/Person">
<div class="author-avatar" aria-hidden="true"><img src="https://dev-nkp.github.io/resources/images/nkp.png" alt="NK"></div>
<div class="author-body">
<h3 itemprop="name">Niloy Kanti Paul</h3>
<p class="role" itemprop="jobTitle">Senior Software Engineer</p>
<p itemprop="description">
Niloy Kanti Paul is recognized as a software engineer who specializes in the development of robust, scalable digital solutions that drive business value. Expertise is demonstrated across full-stack development, CRM systems, and data-driven platforms.
<br>
<strong>GoldPriceBD</strong> was developed to address a critical need for trustworthy precious metals pricing in Bangladesh. The platform exemplifies an approach where automation and real-time data integration are leveraged to deliver authentic market information without manipulation.
</p>
<div class="author-links">
<a href="https://dev-nkp.github.io/" target="_blank" rel="noopener noreferrer" class="auth-link"><i class="fas fa-globe" aria-hidden="true"></i> Portfolio</a>
<a href="https://github.com/DEV-NKP" target="_blank" rel="noopener noreferrer" class="auth-link"><i class="fab fa-github" aria-hidden="true"></i> GitHub</a>
<a href="https://devnkp.wordpress.com/" target="_blank" rel="noopener noreferrer" class="auth-link"><i class="fas fa-blog" aria-hidden="true"></i> Blog</a>
<a href="https://twitter.com/niloykantipaul" target="_blank" rel="noopener noreferrer" class="auth-link"><i class="fab fa-twitter" aria-hidden="true"></i> Twitter</a>
<a href="https://linkedin.com/in/niloykantipaul" target="_blank" rel="noopener noreferrer" class="auth-link"><i class="fab fa-linkedin" aria-hidden="true"></i> LinkedIn</a>
</div>
</div>
</div>
</main>
<!-- ══ FOOTER ══ -->
<footer role="contentinfo" itemscope itemtype="https://schema.org/WPFooter">
<div class="ft-grid">
<div class="ft-brand">
<a class="logo" href="/" aria-label="GoldPriceBD Home">
<div class="logo-mark" aria-hidden="true"><img src="/my-favicon/favicon.ico"></div>
<span class="logo-name">Gold<em>Price</em>BD</span>
</a>
<p>Bangladesh's transparent gold & silver price tracker. Official BAJUS rates updated automatically. Real data only — we never show fake or estimated prices. আজকের রুপার দাম।</p>
</div>
<div class="ft-col">
<h4>Pages</h4>
<ul>
<li><a href="/">Home — All Prices</a></li>
<li><a href="/gold">Gold Price Bangladesh</a></li>
<li><a href="/silver">Silver Price Bangladesh</a></li>
</ul>
</div>
<div class="ft-col">
<h4>Guides & Analysis</h4>
<ul>
<li><a href="#why-silver-increases">Why Silver Price Increases in BD</a></li>
<li><a href="#best-time-silver">Best Time to Buy Silver in BD</a></li>
<li><a href="/#gold-vs-silver">Gold vs Silver Investment BD</a></li>
<li><a href="#calculator">Silver Calculation Bangladesh</a></li>
</ul>
</div>
<div class="ft-col">
<h4>Data Sources</h4>
<ul>
<li><a href="https://bajus.org/gold-price" target="_blank" rel="noopener noreferrer">BAJUS Official</a></li>
<li><a href="https://gold-api.com" target="_blank" rel="noopener noreferrer">gold-api.com (XAU/XAG)</a></li>
<li><a href="https://open.er-api.com" target="_blank" rel="noopener noreferrer">ExchangeRate-API (USD/BDT)</a></li>
</ul>
</div>
</div>
<div class="ft-disclaimer">
<strong>Disclaimer:</strong> All prices are sourced from BAJUS and international spot markets for informational purposes only. Actual jewellery prices vary based on making charges (৳300/gram gold, ৳26/gram silver), 5% VAT, and individual jeweller pricing. GoldPriceBD is not affiliated with BAJUS. Always verify with your local jeweller before purchasing.
</div>
<div class="ft-bottom">
<span>© <span id="footer-date"></span> GoldPriceBD · Developed by <a href="https://github.com/DEV-NKP" rel="author">Niloy Kanti Paul</a></span>
<span><a href="#main-content" style="font-size:11px;color:var(--txt3);">↑ Back to top</a></span>
</div>
</footer>
<button class="scroll-top" id="scrollTop" onclick="window.scrollTo({top:0,behavior:'smooth'})" aria-label="Scroll to top">
<i class="fas fa-arrow-up" aria-hidden="true"></i>
</button>
<noscript>
<div style="padding:2rem;text-align:center;background:#060912;color:#fff;font-family:sans-serif;">
<h1>Silver Price Bangladesh Today — আজকের রুপার দাম | GoldPriceBD</h1>
<p>Live silver prices in Bangladesh. Official BAJUS rates per vori and gram for 22K, 21K, 18K silver. Updated every 4 hours.</p>
<p>আজকের রুপার দাম বাংলাদেশ — BAJUS অফিসিয়াল রুপার দাম।</p>
<p>Keywords: silver price bangladesh, silver price bd, আজকের রুপার দাম, silver rate bd, bajus silver price today, 1 vori silver price bangladesh, silver price per gram bangladesh, why silver price increases in bangladesh, best time to buy silver in bangladesh, silver vs gold investment bangladesh, silver calculation bangladesh.</p>
</div>
</noscript>
<script>
// Footer date
document.getElementById('footer-date').textContent = new Date().toLocaleDateString('en-BD',{year:'numeric',month:'long',day:'numeric',timeZone:'Asia/Dhaka'});
// Mobile nav
const toggle = document.getElementById('nav-toggle');
const mobileMenu = document.getElementById('mobile-menu');
const mobileLinks = document.querySelectorAll('.mobile-link');
if(toggle && mobileMenu){
toggle.addEventListener('click', () => {
const isOpen = mobileMenu.classList.toggle('open');
toggle.classList.toggle('open', isOpen);
toggle.setAttribute('aria-expanded', isOpen);
mobileMenu.setAttribute('aria-hidden', !isOpen);
document.body.style.overflow = isOpen ? 'hidden' : '';
});
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.remove('open');
toggle.classList.remove('open');
toggle.setAttribute('aria-expanded', 'false');
mobileMenu.setAttribute('aria-hidden', 'true');
document.body.style.overflow = '';
});
});
}
</script>
<script src="app.js"></script>
<script>
// Silver page: force histMetal = 'silver' after app.js initialises
document.addEventListener('DOMContentLoaded', () => {
const forceSilver = () => {
if (typeof S !== 'undefined' && typeof renderHistory === 'function') {
S.histMetal = 'silver';
renderHistory();
} else {
setTimeout(forceSilver, 150);
}
};
setTimeout(forceSilver, 300);
});
</script>
</body>
</html>