-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML.txt
7696 lines (7646 loc) · 580 KB
/
HTML.txt
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
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Robots" content="index,all" />
<meta name="google-site-verification" content="MOqJliEGOjPuN6S6rRC_ivdy9sgJpQ_K0Sads9VpcTQ" />
<title>Dữ liệu giao dịch chứng khoán hàng ngày HOSE & HNX</title>
<meta name="keywords" content="bang gia, chung khoan, co phieu, hose, hnx, index, vnindex, hastc, hose insex, hnx index, bang dien, giao dich, thoa thuan, giao dich thoa thuan, bang dien tu, bang giao dich, giao dich truc tuyen, truc tuyen, bang giao dich chung khoan, bang giao dich truc tuyen, giao dich co phieu, giao dich chung khoan, bảng điện, bảng điện tử, bảng giao dịch, giao dịch chứng khoán, chứng khoán việt nam, chung khoan viet nam, du mua, du ban, nuoc ngoai so huu, nuoc ngoai mua ban, mo cua, dong cua, cao nhat, thap nhat, gia tham chieu, gia khop" />
<meta name="description" content="Dữ liệu giao dịch chứng khoán hàng ngày HOSE & HNX" />
<link href="https://www.cophieu68.vn/css/screen.css?1594055258" rel="stylesheet" type="text/css" media="screen" />
<link href="https://www.cophieu68.vn/css/font-awesome.min.css" rel="stylesheet" type="text/css" media="screen" />
<!--link href="https://www.cophieu68.vn/css/dropdowntabs.css" rel="stylesheet" type="text/css" media="screen" /-->
<script src="https://www.cophieu68.vn/js/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="https://www.cophieu68.vn/js/jquery/jquery-ui/jquery-ui.js"></script>
<link rel="stylesheet" href="https://www.cophieu68.vn/js/jquery/jquery-ui/jquery-ui.css">
<link rel="stylesheet" href="https://www.cophieu68.vn/js/require.js">
<script type="text/javascript" src="https://www.cophieu68.vn/js/common.js"></script>
<script type="text/javascript" src="https://www.cophieu68.vn/js/dropdowntabs.js"></script>
<script language="javascript" src="https://www.cophieu68.vn/js/jquery/jquery.colorbox.js"></script>
<link rel="stylesheet" href="https://www.cophieu68.vn/js/jquery/colorbox.css">
<link rel="stylesheet" href="https://www.cophieu68.vn/js/jquery/jquery-ui/jquery-ui.css">
<script>
jQuery(document).ready(function(){
$(document).bind('cbox_open', function() {
$('html').css({ overflow: 'hidden' });
}).bind('cbox_closed', function() {
$('html').css({ overflow: '' });
});
});
</script>
<!--link href="https://www.cophieu68.vn/js/jquery/pnotify/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="https://www.cophieu68.vn/js/jquery/pnotify/jquery.pnotify.default.css" media="all" rel="stylesheet" type="text/css" />
<link href="https://www.cophieu68.vn/js/jquery/pnotify/jquery.pnotify.default.icons.css" media="all" rel="stylesheet" type="text/css" />
<script language="javascript" src="https://www.cophieu68.vn/js/jquery/pnotify/jquery.pnotify.js"></script-->
<script>
document.addEventListener("touchstart", function() {},false);
</script>
<script type="text/javascript">
setCookie('cp68screenwidth', screen.width, 30);
var WEBROOT = 'https://www.cophieu68.vn';
var PATH_IMAGE = 'https://www.cophieu68.vn/images';
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-2311891-1', 'auto');
ga('send', 'pageview');
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-4497614833474292",
enable_page_level_ads: true
});
</script>
</head>
<body style="margin:0; padding:0; margin-top:0px; width: 100%;">
<!-- begin header 970-->
<script type="text/javascript" src="https://vip.cophieu68.vn/datax123456/companylist.js"></script>
<script type="text/javascript" src="https://www.cophieu68.vn/js/jquery/jquery.autocomplete.js"></script>
<link rel="stylesheet" href="https://www.cophieu68.vn/js/jquery/jquery.autocomplete.css">
<script type="text/javascript">
$().ready(function() {
$("#id").autocomplete(companyinfo, {
minChars: 1,
width: 310,
matchContains: "", //word
autoFill: false,
scroll: false,
formatItem: function(row, i, max) {
return row.stockname + " - " + row.companyname + "";
},
formatMatch: function(row, i, max) {
return row.stockname + " " + row.companyname;
//return row.stockname;
},
formatResult: function(row) {
return row.stockname;
}
}).result(function(event, data, formatted) { // result is a separate function
$('#id').val(data.stockname);
document.frm_search_s.submit();
});
});
</script>
<div id="menu_overtop" style="position: fixed; top: 5px; right: 5px; z-index: 1; opacity: 0.9">
<a href="javascript:void(0)" onclick="$('#menu_overtop_list').show();" style="color:#666"><i class="fa fa-list-ul fa-2x"></i></a>
<div id="menu_overtop_list" class="div_curve div_curve_autohide" style="display: none; position: fixed; top: 5px; right: 1px; z-index: 1; width: 200px">
<div onclick="$('#menu_overtop_list').hide()" style="position: absolute; top:0; right:0; padding:0px 3px; font-weight: bold; cursor: pointer;">
<i class="fa fa-times fa-2x" style="color:#ff0000" title="Đóng"></i>
</div>
<ul class="ul_list_item" style="margin-top:0px">
<li><a href="https://www.cophieu68.vn/index.php"><i class="fa fa-home fa-lg"></i> Trang chủ</a></li>
<li><a href="https://www.cophieu68.vn/stockonline.php"><i class="fa fa-list-alt fa-lg"></i> Bảng giao dịch trực tuyến</a></li>
<li><a href="https://www.cophieu68.vn/chartsymbol_basic.php?id=^vnindex"><i class="fa fa-line-chart fa-lg"></i> Biểu đồ phân tích kỹ thuật</a></li>
<li style="padding:0; border-top:2px solid #999"></li>
<li><a href="https://www.cophieu68.vn/investment_basic_indexes.php"><i class="fa fa-star-half-o fa-lg"></i> Sức mạnh chỉ số cơ bản</a></li>
<li><a href="https://www.cophieu68.vn/company_financial.php"><i class="fa fa-balance-scale fa-lg"></i> So sánh báo cáo tài chính</a></li>
<li><a href="https://www.cophieu68.vn/market_vn.php"><i class="fa fa-percent fa-lg"></i> Chỉ số thị trường</a></li>
<li><a href="https://www.cophieu68.vn/events.php"><i class="fa fa-calendar fa-lg"></i> Cổ tức - Lịch sự kiện</a></li>
<li style="padding:0; border-top:2px solid #999"></li>
<li><a href="https://www.cophieu68.vn/advanced_statistic.php"><i class="fa fa-tachometer fa-lg"></i> Thống kê nâng cao</a></li>
<li><a href="https://www.cophieu68.vn/plan_income.php"><i class="fa fa-money fa-lg"></i> Kế hoạch kinh doanh</a></li>
<li><a href="https://www.cophieu68.vn/atbottom.php"><i class="fa fa-hourglass-end fa-lg"></i> Đáy cổ phiếu</a></li>
<li><a href="https://www.cophieu68.vn/signal_volume.php"><i class="fa fa-sort-numeric-asc fa-lg"></i> Đột biến khối lượng</a></li>
</ul>
</div>
</div>
<div id="header_overtop" style="width:100%;background-color: #fff; color:#333; border-bottom:0px solid #000">
<div style="width:100%; float:left">
<div style="float: left; width: 150px">
<a href="https://www.cophieu68.vn/index.php"><img src="https://www.cophieu68.vn/images/logo_wap.gif" border="0" /></a>
</div>
<div style="float:right; padding-right: 25px; width:170px; position:relative; border: 0px solid #ff0000">
<div style="float:left; padding-left:0px; margin-top:2px; color:#666; position:absolute;">
<div style="clear:both; padding-top:3px"></div>
<form name="frm_search_s" action="https://www.cophieu68.vn/snapshot.php" method="get" style="margin:0; padding:0">
<span>Mã CK</span>
<input name="id" id="id" value="" placeholder="Mã CK" type="text" class="textbox_dark" style="width:80px; border: 1px solid #2A8BCC; text-transform: uppercase; font-weight: bold" />
<a href="javascript:void(0)" onclick="$(this).closest('form').submit();"><i class="fa fa-search fa-lg"></i></a>
<!--input type="image" src="https://www.cophieu68.vn/images/icons/search.png" value="Go" /-->
<input type="submit" style="visibility: hidden;" />
</form>
</div>
<br clear="all" />
</div>
<div style="float:right; width:300px; position:relative; border: 0px solid #ff0000; position: relative; ">
<div style="; margin-top:10px;">
<a href="javascript:void(0)" onclick="checkFormLoginInline();"><i class="fa fa-sign-in fa-lg"></i> Đăng nhập</a>
<a href="https://www.cophieu68.vn/account/signup.php"><i class="fa fa-user-plus fa-lg"></i> Đăng ký</a>
<a style="color:#ff0000;" href="javascript:void(0)" onclick="checkFormLoginInline(); alert('Hệ thống cảnh báo cần bạn phải đăng nhập tài khoản cá nhân.\nBạn sẽ nhận được thông tin cảnh báo qua Email hoặc Điện thoại di động ngay trong giờ giao dịch.');"><i class="fa fa-exclamation-triangle fa-lg"></i> Cảnh Báo</a>
</div>
</div>
<div style="float:right; width:330px; border: 0px solid #ff0000; display:none">
<div id="info_account_coin" style="; margin-top:10px;">
<a id="a_top_account" href="javascript:void(0)" onclick="showFunctionUserInfo('account');"><i class="fa fa-user fa-lg"></i> </a>
<a id="a_top_coin" href="javascript:void(0)" onclick="showFunctionUserInfo('coin');"><i class="fa fa-money fa-lg"></i> 0 cp68</a>
<a id="a_top_alert" href="javascript:void(0)" style="color:#ff0000;" onclick="showFunctionUserInfo('alert');"><i class="fa fa-exclamation-triangle fa-lg"></i> Cảnh Báo</a>
</div>
<div id="account_info_list" class="div_curve" style="display:none; width: 200px; position: absolute; z-index: 1000000;">
<ul class="ul_list_item" style="">
<li><a href="https://www.cophieu68.vn/account/info.php"><i class="fa fa-user fa-lg"></i> Thông Tin Tài Khoản</a></li>
<li><a href="https://www.cophieu68.vn/account/info.php#changepassword"><i class="fa fa-recycle fa-lg"></i> Đổi Mật Khẩu</a></li>
<li><a href="https://www.cophieu68.vn/account/logout.php"><i class="fa fa-sign-out fa-lg"></i> Đăng Xuất</a></li>
</ul>
</div>
<div id="coin_info_list" class="div_curve" style="display:none; width: 230px; position: absolute; z-index: 1000000;">
<ul class="ul_list_item">
<li><a href="https://www.cophieu68.vn/account/coin_charging.php">1/ Nạp Tiền Vào Tài Khoản</a></li>
<li><a href="https://www.cophieu68.vn/account/coin_payment.php">2/ Thanh Toán Phí Sử Dụng</a></li>
<li><a href="https://www.cophieu68.vn/account/coin_history.php">3/ Lịch Sử Nạp Tiền & Thanh Toán</a></li>
<li><a href="https://www.cophieu68.vn/account/coin_sms_received.php">4/ Cảnh Báo SMS Đã Nhận</a></li>
</ul>
</div>
<div id="account_alert" class="div_curve" style="display:none; width: 230px; position: absolute; z-index: 1000000;">
<ul class="ul_list_item">
<li><a href="https://www.cophieu68.vn/account/alert_price.php"><i class="fa fa-exclamation-triangle fa-lg"></i> Cảnh báo GIÁ</a></li>
<li><a href="https://www.cophieu68.vn/account/alert_atbottom.php"><i class="fa fa-exclamation-triangle fa-lg"></i> Cảnh báo Đáy Cổ Phiếu</a></li>
<li><a href="https://www.cophieu68.vn/account/alert_volume.php"><i class="fa fa-exclamation-triangle fa-lg"></i> Cảnh báo Đột Biến Khối Lượng</a></li>
<li><a href="https://www.cophieu68.vn/chartsymbol_basic.php?id=^vnindex&filterchart=1"><i class="fa fa-exclamation-triangle fa-lg"></i> Cảnh báo Tín Hiệu Biểu Đồ</a></li>
</ul>
</div>
</div>
<div style="float: right; width: 280px; margin-top:10px; border: 0px solid #000">
<a href="https://www.cophieu68.vn/contact.php"><i class="fa fa-phone fa-lg"></i> Liên Hệ</a>
<a href="https://m.cophieu68.vn/index.php"><i class="fa fa-mobile fa-lg"></i> SmartPhone</a>
<a href="?stcid=1&date=06-07-2020&lang=en"><i class="fa fa-language fa-lg"></i> ENGLISH</a>
</div>
<div style="float: right; width: 180px; margin-top:5px; ">
</div>
</div>
<br clear="all" />
</div>
<div id="fb-root"></div>
<script type="text/javascript">
function getPositionFromID(sid){
var obj = $("#"+sid).offset(); // offet of page, position of div
return obj;
}
function setPositionFromID(sid, Opos){
$("#"+sid).css({top: Opos.top, left: Opos.left});
}
function showFunctionUserInfo(type){
$(".div_curve").hide();
var Opos = getPositionFromID("a_top_"+type);
Opos.top = Opos.top + 20;
if( type == "account" ){
if( $('#account_info_list').css('display') == 'none' ){
setPositionFromID('account_info_list', Opos);
$('#account_info_list').show();
}
else{
$('#account_info_list').hide();
}
}
else if( type == "alert" ){
if( $('#account_alert').css('display') == 'none' ){
setPositionFromID('account_alert', Opos);
$('#account_alert').show();
}
else{
$('#account_alert').hide();
}
}
else if( type == "coin" ){
if( $('#coin_info_list').css('display') == 'none' ){
setPositionFromID('coin_info_list', Opos);
$('#coin_info_list').show();
}
else{
$('#coin_info_list').hide();
}
}
}
$(document).click(function(event) {
if( !$(event.target).closest('#menu_overtop').length && !$(event.target).closest('#info_account_coin').length && !$(event.target).closest('#account_info_list').length && !$(event.target).closest('#account_alert').length && !$(event.target).closest('#coin_info_list').length) {
if($('#account_info_list').is(":visible")) {
$('#account_info_list').hide()
}
if($('#account_alert').is(":visible")) {
$('#account_alert').hide()
}
if($('#coin_info_list').is(":visible")) {
$('#coin_info_list').hide()
}
if($('#menu_overtop_list').is(":visible")) {
$('#menu_overtop_list').hide()
}
}
})
</script>
<script type="text/javascript">
var has_login = 0;
var __login_reload = 1;
function checkFormLoginInline(){
if( !has_login ){
$.colorbox({inline:true, width:'100%', height:'100%', overlayClose:false, fixed: true, href:'#div_form_login'});
return false;
}
}
</script>
<div style="display: none; ">
<div id="div_form_login">
<div>
<form name="frmlogin" method="post" action="https://www.cophieu68.vn/account/login.php" onsubmit="return checkFormLogin()">
<table width="100%" cellpadding="4" cellspacing="0">
<tr>
<td><strong style="color:#006699;">THÔNG TIN ĐĂNG NHẬP</strong></td>
</tr>
<tr id="tr_error_login" style="display: none"><td class="text_error" style="color:#ff0000">Sai Email/Mật khẩu. Vui lòng kiểm tra lại.</td></tr>
<tr id="tr_error_login_phone" style="display: none"><td class="text_error" style="color:#ff0000">
Số điện thoại bạn đang đăng nhập chưa được KÍCH HOẠT tại hệ thống COPHIEU68
Để KÍCH HOẠT số điện thoại bằng cách
Nhắn tin theo cú pháp CP68 gửi 8188
</td></tr>
<tr>
<td align="left">
<span class="required">*</span> Email hoặc điện thoại:
<br />
<input type="text" name="username" class="textbox" value="" style="width:250px" />
</td>
</tr>
<tr>
<td align="left">
<span class="required">*</span> Mật khẩu:
<br />
<input type="password" name="tpassword" value="" class="textbox" style="width:250px" />
</td>
</tr>
<tr>
<td>
<br />
<!--input type="submit" name="login" value="ĐĂNG NHẬP" class="b_button b_blue" /-->
<a href="javascript:void(0)" onclick="checkFormLogin();" class="b_button b_blue"><i class="fa fa-sign-in fa-lg"></i> Đăng nhập</a>
<a href="javascript:void(0)" onclick="parent.location.href='https://www.cophieu68.vn/account/signup.php'" class="b_button b_yellow"><i class="fa fa-user-plus"></i> Tạo tài khoản</a>
<a href="javascript:void(0)" onclick="parent.location.href='https://www.cophieu68.vn/account/forgetpassword.php'" class="b_button b_red"><i class="fa fa-refresh"></i> Quên mật khẩu</a>
</td>
</tr>
</table>
<br />
<a href="https://www.cophieu68.vn/account/login.php" style="color:#999"><em>> Không Đăng nhập được nhấn vào đây!!!</em></a>
<input type="hidden" name="ajax" value="" />
<input type="submit" style="visibility: hidden;" />
</form>
</div>
</div>
</div>
<script>
var fl = document.frmlogin;
function checkFormLogin(){
if( fl.username.value == "" || fl.username.value == "" ){
$("#tr_error_login").show();
fl.username.focus();
return false;
}
else{
$.ajax({
type: 'POST',
url: 'https://www.cophieu68.vn/account/login.php',
data:{
'username':fl.username.value,
'tpassword':fl.tpassword.value,
'ajax':1,
'login':1
},
success: function(s_obj){
if( s_obj == '0' ){
$("#tr_error_login").show();
}
else if( s_obj == '2' ){
$("#tr_error_login_phone").show();
}
else if( s_obj == '1' ){
if( __login_reload == 1 ){
window.location.reload();
}
$('#div_form_login').colorbox.close();
has_login = 1;
}
else if( s_obj == '3' ){
window.location = 'https://www.cophieu68.vn/account/account_active.php';
}
}
});
}
return false;
}
</script>
<div style="width:100%; margin: left">
<div id="navcontainer" style="width:100%; height:30px; clear:both">
<div style="width:980px; margin:left; margin-left: 10px">
<div style="position:relative;">
<div>
<div style="float:left">
<ul id="navlist" style="text-transform:uppercase">
<!--li style="margin-right:-5px; margin-left:5px"><a href="https://www.cophieu68.vn" style="padding:0; margin:0"><img src="https://www.cophieu68.vn/images/home_icon.png" border="0" alt="Trang chủ" /></a></li-->
<li><a href="https://www.cophieu68.vn/" class="a_menu" rel="dropmenu0">Thống Kê</a></li>
<li><a href="https://www.cophieu68.vn/companylist.php" class="a_menu" rel="dropmenu1">Công Ty Niêm Yết</a></li>
<li><a href="https://www.cophieu68.vn/filter_index.php" class="a_menu" rel="dropmenu4">Bộ Lọc</a></li>
<li><a href="https://www.cophieu68.vn/charts.php" class="a_menu" rel="dropmenu5">Biểu Đồ</a></li>
<li><a href="https://www.cophieu68.vn/stats_market_size.php" class="a_menu_current" rel="dropmenu3">Chỉ Số Thị Trường</a></li>
<li><a href="https://www.cophieu68.vn/categorylist.php" class="a_menu" rel="dropmenu8">Nhóm Ngành</a></li>
<li><a href="https://www.cophieu68.vn/export.php" class="a_menu">Dịch vụ Dữ Liệu</a></li>
<li><a href="https://www.cophieu68.vn/documents.php" class="a_menu" rel="dropmenu11">Tài Liệu</a></li>
<li><a href="https://www.cophieu68.vn/account/login.php" class="a_menu" rel="dropmenu15">Danh Mục Đầu Tư</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="navcontainer_sub" style="width:100%; height:30px;clear:both">
<div style="width:980px; margin:left; margin-left: 0px">
<ul id="navlist_sub" style="padding-top:0px">
<li ><a class="a_menu_sub" href="/stats_market_size.php" title="Quy Mô Thị Trường">Quy Mô Thị Trường </a></li><li ><a class="a_menu_sub" href="/market_vn.php" title="Chỉ Số Thị Trường">Chỉ Số Thị Trường </a></li><li ><a class="a_menu_sub" href="/market_category.php" title="Chỉ Số Ngành">Chỉ Số Ngành </a></li><li><span>Dữ Liện Hàng Ngày</span></li> </ul>
</div>
</div>
<div id="dropmenu0" class="dropmenudiv_a" style="width:260px">
<a href="https://www.cophieu68.vn/advanced_statistic.php">Thống Kê Nâng Cao</a>
<!--a href="https://www.cophieu68.vn/finance_statistic.php">Tăng Trưởng Tài Chính</a-->
<a href="https://www.cophieu68.vn/plan_income.php">Kế Hoạch Kinh Doanh</a>
<a href="https://www.cophieu68.vn/bookprice.php">Giá Sổ Sách</a>
<a href="https://www.cophieu68.vn/atbottom.php"><strong>Đáy Cổ Phiếu</strong></a>
<a href="https://www.cophieu68.vn/signal_volume.php">Đột Biến Khối Lượng</a>
<a href="https://www.cophieu68.vn/stats_volume_price.php">Tương Quan Giữa Khối Lượng và Giá</a>
<a href="https://www.cophieu68.vn/stats_group_price.php">Biểu Đồ Phân Hóa Giá</a>
<a href="https://www.cophieu68.vn/stats_foreigner.php">Giao dịch nước ngoài</a>
</div>
<div id="dropmenu1" class="dropmenudiv_a" style="width:260px">
<a href="https://www.cophieu68.vn/companylist.php">Danh Sách Công Ty Niêm Yết</a>
<a href="https://www.cophieu68.vn/companylist2.php">Chỉ Số Tài Chính Cơ Bản</a>
<a href="https://www.cophieu68.vn/companylist_warranty.php">Danh sách chứng quyền niêm yết</a>
<a href="https://www.cophieu68.vn/investment_basic_indexes.php">Sức Mạnh Chỉ Số Cơ Bản</a>
<a href="https://www.cophieu68.vn/company_financial.php">SO SÁNH BÁO CÁO TÀI CHÍNH</a>
<a href="https://www.cophieu68.vn/companylist3.php">Cơ Cấu Cổ Đông</a>
<a href="https://www.cophieu68.vn/companylist4.php">Giao Dịch Nội Bộ</a>
<a href="https://www.cophieu68.vn/events.php">Lịch Sự Kiện</a>
<a href="https://www.cophieu68.vn/event_other.php">Sự Kiện Đặc Biệt</a>
</div>
<div id="dropmenu3" class="dropmenudiv_a" style="width:220px">
<a href="https://www.cophieu68.vn/stats_market_size.php">Quy Mô Thị Trường</a>
<a href="https://www.cophieu68.vn/market_vn.php">Chỉ Số Thị Trường</a>
<a href="https://www.cophieu68.vn/market_category.php">Chỉ Số Ngành</a>
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020">Dữ Liệu Hàng Ngày</a>
<!--a href="https://www.cophieu68.vn/chartindex.php?stcid=1">Biểu Đồ Thị Trường</a-->
</div>
<div id="dropmenu4" class="dropmenudiv_a" style="width:260px">
<!--a href="https://www.cophieu68.vn/filter.php">Lọc Cổ Phiếu</a-->
<a href="https://www.cophieu68.vn/filter_index.php">Lọc Các Chỉ Số Tài Chính Cơ Bản</a>
<a href="https://www.cophieu68.vn/filter_stock.php">Sức Mạnh Chỉ Số Tài Chính</a>
<a href="https://www.cophieu68.vn/chartsymbol_basic.php?id=^vnindex&filterchart=1">Lọc Tín Hiệu Biểu Đồ</a>
<!--a href="https://www.cophieu68.vn/filter_reportchart.php">Sức Mạnh Tín Hiệu Biểu Đồ</a-->
</div>
<div id="dropmenu5" class="dropmenudiv_a" style="width:200px">
<a href="https://www.cophieu68.vn/charts.php">Tín Hiệu Biểu Đồ</a>
<a href="https://www.cophieu68.vn/chartprice.php">Biểu Đồ Giá</a>
<a href="https://www.cophieu68.vn/chartprice_week.php">BIỂU ĐỒ TUẦN</a>
<a href="https://www.cophieu68.vn/chartprice_swings.php">Swings Trading</a>
<!--a href="https://www.cophieu68.vn/chartrsi.php">Biểu Đồ RSI</a>
<a href="https://www.cophieu68.vn/chartmacd.php">Biểu Đồ MACD</a>
<a href="https://www.cophieu68.vn/chartadx.php">Biểu Đồ ADX</a>
<a href="https://www.cophieu68.vn/chartstochastic.php">Biểu Đồ STOCHASTIC</a>
<a href="https://www.cophieu68.vn/chartmfi.php">Biểu Đồ MFI</a>
<a href="https://www.cophieu68.vn/chartcci.php">Biểu Đồ CCI</a>
<a href="https://www.cophieu68.vn/chartwilliam.php">Biểu Đồ WILLIAM</a-->
</div>
<div id="dropmenu8" class="dropmenudiv_a">
<a href="https://www.cophieu68.vn/categorylist.php">Nhóm Ngành Và Các Chỉ Số Cơ Bản</a>
<a href="https://www.cophieu68.vn/category_ib2.php">Báo Cáo Tài Chính Theo Nhóm Ngành</a>
<a href="https://www.cophieu68.vn/category_finance.php">Tăng Trưởng Tài Chính Ngành</a>
</div>
<div id="dropmenu7" class="dropmenudiv_a">
<a href="https://www.cophieu68.vn/news.php?catid=107">Tin Chứng khoán</a>
<a href="https://www.cophieu68.vn/news.php?catid=130">Tin Kinh tế</a>
<a href="https://www.cophieu68.vn/news.php?catid=127">Tin Tài chính Ngân hàng</a>
<a href="https://www.cophieu68.vn/news.php?catid=192">Tin Doanh nghiệp</a>
<a href="https://www.cophieu68.vn/news.php?catid=183">Tin Bất động sản</a>
<a href="https://www.cophieu68.vn/news.php?catid=200">Tin Tài chính Thế giới</a>
<a href="https://www.cophieu68.vn/news.php?catid=173">Tin Doanh nhân</a>
<a href="https://www.cophieu68.vn/news.php?catid=203">Tin Vàng</a>
<a href="https://www.cophieu68.vn/news.php?catid=201">Tin Hàng hóa</a>
<a href="https://www.cophieu68.vn/news.php?catid=202">Tin tiền tệ</a>
</div>
<div id="dropmenu11" class="dropmenudiv_a" style="width:260px">
<a href="https://www.cophieu68.vn/document/indexes/eps.php">Các Chỉ Số Chứng Khoán</a>
<a href="https://www.cophieu68.vn/document/bollinger.php">Các Tín Hiệu Biểu Đồ</a>
<a href="https://www.cophieu68.vn/document/candlestick/CandlestickBasics.php">Mô Hình Nến - Candlestick</a>
</div>
<div id="dropmenu9" class="dropmenudiv_a">
<a href="https://www.cophieu68.vn/events.php" class="menu_head">Lịch Sự Kiện</a>
<a href="https://www.cophieu68.vn/export.php" class="menu_head"></a>
<a href="https://www.cophieu68.vn/document/meaning.php" class="menu_head"></a>
<a href="https://www.cophieu68.vn/contact.php" class="menu_head"></a>
</div>
<div id="dropmenu15" class="dropmenudiv_a" style="width:195px">
<a href="https://www.cophieu68.vn/account/category.php">Danh Mục Đầu Tư</a>
<a href="https://www.cophieu68.vn/account/alert_price.php">Cảnh Báo Giá</a>
<a href="https://www.cophieu68.vn/account/alert_atbottom.php">Cảnh Báo Đáy Cổ Phiếu</a>
<a href="https://www.cophieu68.vn/account/alert_volume.php">Cảnh Báo Đột Biến Khối Lượng</a>
<a href="https://www.cophieu68.vn/chartsymbol_basic.php?id=^vnindex&filterchart=1">BỘ LỌC TÍN HIỆU BIỂU ĐỒ</a>
<!--a href="https://www.cophieu68.vn/account/filter_reportchart.php">Sức Mạnh Tín Hiệu Biểu Đồ</a-->
<a href="https://www.cophieu68.vn/account/filter_index.php">BỘ LỌC CHỈ SỐ CƠ BẢN</a>
<a href="https://www.cophieu68.vn/account/filter_stock.php">Sức Mạnh Chỉ Số Tài Chính</a>
</div>
<script type="text/javascript">tabdropdown.init("navcontainer", 0);</script>
</div>
<div style="clear:both; border-bottom: 0px solid #CCC; text-align: right; padding: 5px">
<a href="https://www.cophieu68.vn/account_vip.php" target="_blank" style="text-decoration:underline"><i>Sử dụng tài khoản trả phí để bỏ Quảng Cáo và Sử dụng đường truyển riêng tốc độ tốt hơn.</i></a>
</div>
<!-- end header 970-->
<!-- begin body 970-->
<div id="begin_header" style="width:970px; margin:left; border: 0px solid #ff0000; background-color:#FFF; padding-top:5px; padding-left: 1%; clear:both">
<div id="rightads_300x600" style="z-index:0 !important; text-align:center;">
<div id="right_ads_">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- g3x6 -->
<ins class="adsbygoogle"
style="display:inline-block;width:300px;height:600px"
data-ad-client="ca-pub-4497614833474292"
data-ad-slot="5792241492"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<!--script data-cfasync="false" type="text/javascript" src="//www.increaserev.com/ads/300x600_responsive.js"></script-->
</div>
</div>
<script type="text/javascript">
var position_ads = $('#right_ads_').offset();
$(window).scroll(function(){
if ($(this).scrollTop() > position_ads.top ) {
$("#right_ads_").css({position:"fixed", top:0});
}
else{
$("#right_ads_").css({position:""});
}
});
</script>
<div id="increaserev_970x250" style="padding-bottom:5px; text-align:center; clear:both;">
<script data-cfasync="false" type="text/javascript" src="//www.increaserev.com/ads/cm/970x250.js"></script>
</div>
<div style="clear: both;"> </div>
<script type="text/javascript" src="https://www.cophieu68.vn/js/company.js"></script>
<SCRIPT type="text/javascript" SRC="https://www.cophieu68.vn/js/calendar.js"></SCRIPT>
<div id="titlepage"><h1>Dữ Liệu Hàng Ngày 1</h1></div>
<table width="780" cellpadding="0" cellspacing="0">
<tr>
<td>
<a href="https://www.cophieu68.vn/export/dailymetastock.php?date=06-07-2020" target="_blank"><img src="https://www.cophieu68.vn/images/iconstock.gif" alt="metastock data" border="0" /></a>
<a href="https://www.cophieu68.vn/export/dailymetastock.php?date=06-07-2020" target="_blank"><strong>Export Metastock</strong></a>
<a href="https://www.cophieu68.vn/export/dailyexcel.php?date=06-07-2020" target="_blank"><img src="https://www.cophieu68.vn/images/excel.jpg" alt="excel data" border="0" /></a>
<a href="https://www.cophieu68.vn/export/dailyexcel.php?date=06-07-2020" target="_blank"><strong>Export Excel (Ami)</strong></a>
</td>
<td width="290" align="right">
<form name="frm" method="get" action="" style="margin:0">
<input type="submit" name="submit" value="" style="width:0px; height:0px; border:0" />
<table width="100" cellpadding="0" cellspacing="0">
<tr>
<td>
<select name="stcid" class="select">
<option>Sàn...</option>
<option value="1" selected>HOSE</option>
<option value="2" >HNX</option>
<option value="3" >UPCOM</option>
</select>
</td>
<td><script type="text/javascript">DateInput('date', true, 'DD-MM-YYYY', '06-07-2020')</script></td>
<td><input type="submit" name="submit" value="Go" class="button2" style="width:30px" /></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<span class="break"></span>
<span class="break"></span>
<table width="100%" cellpadding="4" cellspacing="0" style="background-color:#ffffff">
<tbody id="fred">
<tr class="tr_header">
<td>STT</td>
<td align="center" class="td_asc" title="Mã chứng khoán">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=stockname&ud=desc" class="header" title="">Mã CK</a>
</td>
<td>Giá Trần</td>
<td>Giá Sàn</td>
<td align="center" class="" title="Giá tham chiếu">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=giathamchieu&ud=desc" class="header" title="">Giá Tham Chiếu</a>
</td>
<td align="center" class="" title="Giá khớp">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=giakhop&ud=desc" class="header" title="">Giá Đóng Cửa</a>
</td>
<td align="center" class="" title="Chênh lệch giá">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=chenhlech&ud=desc" class="header" title="Chênh Lệch">+/-</a>
</td>
<td></td>
<td align="center" class="" title="Chênh lệch %">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=percent&ud=desc" class="header" title="">%</a>
</td>
<td align="center" class="" title="Khối lượng khớp lệnh">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=khoplenh&ud=desc" class="header" title="">Khối Lượng</a>
</td>
<td align="center" class="" title="Giao dịch thỏa thuận">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=deal&ud=desc" class="header" title="">Giao Dịch Thỏa Thuận</a>
</td>
<td align="center" class="" title="Khối lượng nhà đầu tư nước ngoài mua">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=nnmua&ud=desc" class="header" title="">NN Mua</a>
</td>
<td align="center" class="" title="Khối lượng nhà đầu tư nước ngoài bán">
<a href="https://www.cophieu68.vn/stockdaily.php?stcid=1&date=06-07-2020&o=nnban&ud=desc" class="header" title="">NN Bán</a>
</td>
<td align="center">
Mở Cửa </td>
<td align="center">
Cao Nhất </td>
<td align="center">
Thấp Nhất </td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">1</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=aaa" title="Công ty Cổ phần Nhựa và Môi trường xanh An Phát" target="_blank"><strong>AAA</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">13.1</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">11.4</span></td>
<td align="right" class="td_bottom3 td_bg2">12.3</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">12.4</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.2</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">1.22%</span></td>
<td align="right" class="td_bottom3 td_bg3">1,149,980</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">47,130</td>
<td align="right" class="td_bottom3 td_bg2">103,750</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">12.30</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">12.50</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">12.20</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">2</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=aam" title="Công ty Cổ phần Thủy sản Mekong" target="_blank"><strong>AAM</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">11.8</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">10.3</span></td>
<td align="right" class="td_bottom3 td_bg2">11</td>
<td align="right" class="td_bottom3 td_bg3"><span class="price">11</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/balance.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0%</span></td>
<td align="right" class="td_bottom3 td_bg3">850</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">10.80</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">11.50</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">10.80</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">3</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=abs" title="Công ty cổ phần Dịch vụ Nông nghiệp Bình Thuận" target="_blank"><strong>ABS</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">13.2</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">11.5</span></td>
<td align="right" class="td_bottom3 td_bg2">12.3</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">12.4</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.1</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.81%</span></td>
<td align="right" class="td_bottom3 td_bg3">157,990</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">12.30</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">12.75</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">11.70</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">4</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=abt" title="Công ty Cổ phần Xuất nhập khẩu thủy sản Bến Tre" target="_blank"><strong>ABT</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">33.3</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">29</span></td>
<td align="right" class="td_bottom3 td_bg2">31.2</td>
<td align="right" class="td_bottom3 td_bg3"><span class="price">31.2</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/balance.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0%</span></td>
<td align="right" class="td_bottom3 td_bg3">0</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">31.15</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">31.15</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">31.15</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">5</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=acc" title="Công ty Cổ phần bê tông BECAMEX" target="_blank"><strong>ACC</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">18</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">15.7</span></td>
<td align="right" class="td_bottom3 td_bg2">16.9</td>
<td align="right" class="td_bottom3 td_bg3"><span class="pricedown">16.5</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-0.4</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/down.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-2.08%</span></td>
<td align="right" class="td_bottom3 td_bg3">11,170</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">30</td>
<td align="right" class="td_bottom3 td_bg2">10</td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">16.05</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">16.85</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">15.90</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">6</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=acl" title="Công ty Cổ phần Xuất nhập khẩu Thủy sản Cửu Long An Giang" target="_blank"><strong>ACL</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">23.8</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">20.7</span></td>
<td align="right" class="td_bottom3 td_bg2">22.2</td>
<td align="right" class="td_bottom3 td_bg3"><span class="pricedown">22.1</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-0.1</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/down.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-0.45%</span></td>
<td align="right" class="td_bottom3 td_bg3">12,050</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">22.20</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">22.50</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">22.10</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">7</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=ads" title="Công ty Cổ phần Damsan" target="_blank"><strong>ADS</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">10.4</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">9.0</span></td>
<td align="right" class="td_bottom3 td_bg2">9.7</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">9.7</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.41%</span></td>
<td align="right" class="td_bottom3 td_bg3">470</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">9.73</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">9.73</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">9.73</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">8</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=agg" title="Công ty Cổ phần Đầu tư và Phát triển Bất động sản An Gia" target="_blank"><strong>AGG</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">28.8</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">25.1</span></td>
<td align="right" class="td_bottom3 td_bg2">26.9</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">27</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.1</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.37%</span></td>
<td align="right" class="td_bottom3 td_bg3">224,500</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">26.90</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">27.05</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">26.80</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">9</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=agm" title="Công ty Cổ phần xuất nhập khẩu An Giang" target="_blank"><strong>AGM</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">14.5</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">12.7</span></td>
<td align="right" class="td_bottom3 td_bg2">13.6</td>
<td align="right" class="td_bottom3 td_bg3"><span class="pricedown">13.2</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-0.4</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/down.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-2.58%</span></td>
<td align="right" class="td_bottom3 td_bg3">60,650</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">500</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">13.55</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">13.80</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">13.20</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">10</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=agr" title="Công ty Cổ phần Chứng khoán Agribank" target="_blank"><strong>AGR</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">3.8</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">3.3</span></td>
<td align="right" class="td_bottom3 td_bg2">3.5</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">3.6</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.1</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">1.98%</span></td>
<td align="right" class="td_bottom3 td_bg3">239,370</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">3.53</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">3.65</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">3.53</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">11</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=amd" title="Công ty Cổ phần Đầu tư và Khoáng sản FLC AMD" target="_blank"><strong>AMD</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">3.3</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">2.9</span></td>
<td align="right" class="td_bottom3 td_bg2">3.1</td>
<td align="right" class="td_bottom3 td_bg3"><span class="price">3.1</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/balance.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0%</span></td>
<td align="right" class="td_bottom3 td_bg3">1,278,840</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">1,530</td>
<td align="right" class="td_bottom3 td_bg2">177,370</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">3.13</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">3.14</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">3.08</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">12</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=anv" title="Công ty Cổ phần Nam Việt" target="_blank"><strong>ANV</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">18.1</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">15.8</span></td>
<td align="right" class="td_bottom3 td_bg2">16.9</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">17.0</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.1</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.30%</span></td>
<td align="right" class="td_bottom3 td_bg3">90,370</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">1,020</td>
<td align="right" class="td_bottom3 td_bg2">750</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">17</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">17.15</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">16.85</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">13</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=apc" title="Công ty Cổ phần Chiếu xạ An Phú" target="_blank"><strong>APC</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">19.3</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">16.8</span></td>
<td align="right" class="td_bottom3 td_bg2">18</td>
<td align="right" class="td_bottom3 td_bg3"><span class="price_ceiling">19.3</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price_ceiling">1.3</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price_ceiling">6.94%</span></td>
<td align="right" class="td_bottom3 td_bg3">38,780</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">18.30</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price_ceiling">19.25</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">18</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">14</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=apg" title="Công ty Cổ phần Chứng khoán An Phát" target="_blank"><strong>APG</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">9.7</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">8.5</span></td>
<td align="right" class="td_bottom3 td_bg2">9.1</td>
<td align="right" class="td_bottom3 td_bg3"><span class="price">9.1</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/balance.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0%</span></td>
<td align="right" class="td_bottom3 td_bg3">688,180</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">45,000</td>
<td align="right" class="td_bottom3 td_bg2">31,580</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">9.17</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">9.20</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">8.80</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">15</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=asm" title="Công ty Cổ phần Tập đoàn Sao Mai" target="_blank"><strong>ASM</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">6.1</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">5.3</span></td>
<td align="right" class="td_bottom3 td_bg2">5.7</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">5.7</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.18%</span></td>
<td align="right" class="td_bottom3 td_bg3">1,701,490</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">25,340</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">5.72</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">5.75</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">5.66</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">16</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=asp" title="Công ty Cổ phần Tập đoàn Dầu khí An Pha" target="_blank"><strong>ASP</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">5.9</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">5.2</span></td>
<td align="right" class="td_bottom3 td_bg2">5.6</td>
<td align="right" class="td_bottom3 td_bg3"><span class="price">5.6</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/balance.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price">0%</span></td>
<td align="right" class="td_bottom3 td_bg3">3,750</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">40</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">5.50</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">5.60</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">5.40</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">17</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=ast" title="Công ty Cổ phần Dịch vụ Hàng không Taseco" target="_blank"><strong>AST</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">53.7</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">46.7</span></td>
<td align="right" class="td_bottom3 td_bg2">50.2</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">51.9</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">1.7</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">3.39%</span></td>
<td align="right" class="td_bottom3 td_bg3">45,400</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">1,000</td>
<td align="right" class="td_bottom3 td_bg2">1,830</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">51.60</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">51.90</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">50.50</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">18</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=atg" title="Công ty Cổ phần An Trường An" target="_blank"><strong>ATG</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">0</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">0</span></td>
<td align="right" class="td_bottom3 td_bg2">0.8</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">0.8</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">2.56%</span></td>
<td align="right" class="td_bottom3 td_bg3">86,980</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">3,000</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">0.78</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">0.83</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price">0.78</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">19</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=bbc" title="Công ty Cổ phần Bibica" target="_blank"><strong>BBC</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">52.4</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">45.6</span></td>
<td align="right" class="td_bottom3 td_bg2">49</td>
<td align="right" class="td_bottom3 td_bg3"><span class="pricedown">48.7</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-0.3</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/down.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="pricedown">-0.61%</span></td>
<td align="right" class="td_bottom3 td_bg3">250</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">50</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">47</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">48.70</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="pricedown">47</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">20</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=bce" title="Công ty Cổ phần Xây dựng và Giao thông Bình Dương" target="_blank"><strong>BCE</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">8.5</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">7.4</span></td>
<td align="right" class="td_bottom3 td_bg2">7.9</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">8.0</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.0</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.51%</span></td>
<td align="right" class="td_bottom3 td_bg3">95,980</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">8,690</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">8</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">8.02</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">7.95</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">21</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=bcg" title="Công ty Cổ phần Bamboo Capital" target="_blank"><strong>BCG</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">7.1</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">6.1</span></td>
<td align="right" class="td_bottom3 td_bg2">6.6</td>
<td align="right" class="td_bottom3 td_bg3"><span class="price_ceiling">7.1</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price_ceiling">0.5</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="price_ceiling">6.97%</span></td>
<td align="right" class="td_bottom3 td_bg3">599,700</td>
<td align="right" class="td_bottom3 td_bg2">2,000,000</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">630</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">6.99</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="price_ceiling">7.06</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">6.82</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">22</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=bfc" title="Công ty Cổ phần Phân bón Bình Điền" target="_blank"><strong>BFC</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">12.5</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">10.9</span></td>
<td align="right" class="td_bottom3 td_bg2">11.7</td>
<td align="right" class="td_bottom3 td_bg3"><span class="priceup">11.9</span></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">0.2</span></td>
<td align="center" class="td_bottom3 td_bg3"><img src="https://www.cophieu68.vn/images/up.gif" alt="" /></td>
<td align="right" nowrap="nowrap" class="td_bottom3 td_bg3"><span class="priceup">1.71%</span></td>
<td align="right" class="td_bottom3 td_bg3">188,430</td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2"></td>
<td align="right" class="td_bottom3 td_bg2">3,010</td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">11.90</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">12.20</span></td>
<td align="right" class="td_bottom3 td_bg1"><span class="priceup">11.75</span></td>
</tr>
<tr onmouseover="hoverTR(this)" onmouseout="outTR(this)">
<td align="right" class="td_bottom3 td_bg1">23</td>
<td class="td_bottom3 td_bg1"><a href="https://www.cophieu68.vn/snapshot.php?id=bhn" title="Tổng Công ty Cổ phần Bia - Rượu - Nước giải khát Hà Nội" target="_blank"><strong>BHN</strong></a></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_ceiling">56.1</span></td>
<td align="right" class="td_bottom3 td_bg2"><span class="price_floor">48.9</span></td>