Thông tin công ty
Cập nhật lần cuối:
Thảo luậnGợi ý
Các hàm trong mục thông tin công ty chỉ áp dụng với mã chứng khoán của các doanh nghiệp trong nước. Nguồn dữ liệu được cung cấp hiện tại sử dụng của TCBS. Các hàm truy xuất thông tin công ty không cần nhập tham số sau khi đã tạo đối tượng `company`.
Chọn nguồn dữ liệu
Hiện tại bạn có thể sử dụng nguồn dữ liệu TCBS
để truy xuất thông công ty niêm yết theo mã cổ phiếu bất kỳ. Thông tin nguồn dữ liệu được cài đặt khi khởi tạo đối tượng python trước khi gọi các hàm truy xuất từng loại thông tin cụ thể.
from vnstock import Vnstock company = Vnstock().stock(symbol='VCB', source='TCBS').company
Nguồn dữ liệu VCI
Thông tin công ty
Gọi hàm
company.overview()
Dữ liệu mẫu:
>>> company.overview() symbol id issue_share history ... icb_name2 icb_name4 financial_ratio_issue_share charter_capital 0 ACB 67505 4466657912 - Ngày 24/04/1993: Ngân hàng Thương mại Cổ ph... ... Ngân hàng Ngân hàng 4466657900 44666579120000 [1 rows x 10 columns]
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 symbol 1 non-null object 1 id 1 non-null object 2 issue_share 1 non-null int64 3 history 1 non-null object 4 company_profile 1 non-null object 5 icb_name3 1 non-null object 6 icb_name2 1 non-null object 7 icb_name4 1 non-null object 8 financial_ratio_issue_share 1 non-null int64 9 charter_capital 1 non-null int64
Cổ đông lớn
Gọi hàm
company.shareholders()
Dữ liệu mẫu:
>>> company.shareholders().head() id share_holder quantity share_own_percent update_date 0 76437158 Vietnam Enterprise Investments Limited 212880184 0.054809 2024-09-13 1 76432034 Sather Gate Investments Limited 193907186 0.049900 2024-05-15 2 76413536 Estes Investments Limited 83010435 0.049900 2024-05-15 3 76429810 Phạm Thị Thu Hà 285000 0.049900 2016-05-20 4 76434014 Trần Hùng Huy 153062159 0.039400 2025-01-24
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 5 non-null object 1 share_holder 5 non-null object 2 quantity 5 non-null int64 3 share_own_percent 5 non-null float64 4 update_date 5 non-null object
Ban lãnh đạo
Gọi hàm
company.officers(filter_by='working')
Tham số
filter_by
: Lọc dữ liệu trả về theo danh sách lãnh đạo đang làm việc hay đã từ nhiệm.working
: đang làm việc (mặc định)resigned
: đã nghỉ.all
: toàn bộ
Dữ liệu mẫu:
>>> company.officers(filter_by='all').head() id officer_name officer_position position_short_name update_date officer_own_percent quantity type 0 6 Trần Hùng Huy Chủ tịch Hội đồng Quản trị Chủ tịch HĐQT 2025-01-24 0.0394 153062159 đang làm việc 1 7 Đặng Thu Thủy Thành viên Hội đồng Quản trị TV HĐQT 2025-01-24 0.0137 53350036 đang làm việc 2 11 Đặng Phú Vinh Giám đốc khối GĐ Khối 2025-01-24 0.0042 16454507 đang làm việc 3 13 Đỗ Minh Toàn Tổng Giám đốc TGĐ 2025-01-24 0.0008 3202886 đang làm việc 4 8 Nguyễn Thành Long Phó Chủ tịch Hội đồng Quản trị Phó Chủ tịch HĐQT 2025-01-24 0.0004 1647067 đang làm việc2025-01-24 0.0004 1647067
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 5 non-null object 1 officer_name 5 non-null object 2 officer_position 5 non-null object 3 position_short_name 5 non-null object 4 update_date 5 non-null object 5 officer_own_percent 5 non-null float64 6 quantity 5 non-null int64 7 type 5 non-null object
Công ty con
Gọi hàm
company.subsidiaries()
Tham số
filter_by
: Chọn chế độ chỉ lấy thông tinall
: gộp kết quả công ty con và công ty liên kết (mặc định)- 'subsidiary': chỉ lấy thông tin công ty con (sở hữu từ 50% trở lên), không bao gồm công ty liên kết (sở hữu < 50%)
Dữ liệu mẫu:
>>> company.subsidiaries() id sub_organ_code ownership_percent organ_name type 0 21632918 ACBA 1 Công Ty TNHH Quản Lý Nợ Và Khai Thác Tài Sản N... công ty con 1 21632919 ACBL 1 Công Ty TNHH Một Thành Viên Cho Thuê Tài Chính... công ty con 2 21632920 ACBS 1 Công ty TNHH Chứng khoán ACB công ty con 0 21632922 ACBD None CÔNG TY CỔ PHẦN DỊCH VỤ BẢO VỆ NGÂN HÀNG Á CHÂU công ty liên kết 1 21632921 SGGS None Công ty Cổ phần Sài Gòn Kim hoàn ACB- SJC công ty liên kết
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 5 non-null object 1 sub_organ_code 5 non-null object 2 ownership_percent 3 non-null object 3 organ_name 5 non-null object 4 type 5 non-null object
Sự kiện
Gọi hàm
company.events()
Dữ liệu mẫu:
>>> company.events().head(3) id event_title en__event_title ... exright_date event_list_name en__event_list_name 0 18149 ACB- Niêm yết bổ sung 498.821.183 cổ phiếu ACB- Lists additional 498,821,183 shares ... 1753-01-01 Niêm yết thêm Additional Listing 1 18128 Trả cổ tức bằng tiền mặt ... 2010-11-08 Trả cổ tức bằng tiền mặt Cash Dividend 2 18133 Trả cổ tức bằng tiền mặt ... 2012-01-03 Trả cổ tức bằng tiền mặt Cash Dividend [3 rows x 13 columns]
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 3 non-null object 1 event_title 3 non-null object 2 en__event_title 3 non-null object 3 public_date 3 non-null object 4 issue_date 3 non-null object 5 source_url 3 non-null object 6 event_list_code 3 non-null object 7 ratio 1 non-null float64 8 value 1 non-null float64 9 record_date 3 non-null object 10 exright_date 3 non-null object 11 event_list_name 3 non-null object 12 en__event_list_name 3 non-null object
Tin tức
Gọi hàm
company.news()
Dữ liệu mẫu:
>>> company.news().head(3) id news_title news_sub_title friendly_sub_title ... ref_price floor ceiling price_change_pct 0 6944486 ACB: Công ty TNHH MTV Nhật Quân HQ đăng ký bá... ... 26200 24400 28000 0.003817 1 6944221 ACB: Nghị quyết HĐQT về phương án phát hành t... ... 26000 24200 27800 0.007692 2 6894216 ACB: Thông báo tổ chức ĐHĐCĐ thường niên năm ... ... 26450 24600 28300 -0.005671 [3 rows x 18 columns]
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 3 non-null object 1 news_title 3 non-null object 2 news_sub_title 3 non-null object 3 friendly_sub_title 3 non-null object 4 news_image_url 3 non-null object 5 news_source_link 3 non-null object 6 created_at 0 non-null object 7 public_date 3 non-null int64 8 updated_at 0 non-null object 9 lang_code 3 non-null object 10 news_id 3 non-null object 11 news_short_content 3 non-null object 12 news_full_content 3 non-null object 13 close_price 3 non-null int64 14 ref_price 3 non-null int64 15 floor 3 non-null int64 16 ceiling 3 non-null int64 17 price_change_pct 3 non-null float64
Báo cáo phân tích
Gọi hàm
company.reports()
Dữ liệu mẫu:
>>> company.reports() date ... name 0 2025-01-22T00:00:00Z ... ACB - Tập trung vào tăng trưởng tín dụng hơn t... 1 2024-10-24T00:00:00Z ... ACB – NOII thấp hơn dự kiến, ảnh hưởng tiêu cự... 2 2024-09-09T00:00:00Z ... ACB [MUA +35,0%] - Tăng dự báo tăng trưởng tín... [3 rows x 4 columns]
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 date 3 non-null object 1 description 3 non-null object 2 link 3 non-null object 3 name 3 non-null object
Tình hình tài chính
Gọi hàm
company.ratio_summary()
Dữ liệu mẫu:
>>> company.ratio_summary() symbol year_report length_report update_date revenue revenue_growth net_profit net_profit_growth ... rtq10 dividend ebitda ebit le de ccc rtq17 0 ACB 2024 5 1741199572843 50902749000000 -0.027586 16789768000000 0.046435 ... 0 0 0 0 0 0 None 0 [1 rows x 46 columns]
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 symbol 1 non-null object 1 year_report 1 non-null int64 2 length_report 1 non-null int64 3 update_date 1 non-null int64 4 revenue 1 non-null int64 5 revenue_growth 1 non-null float64 6 net_profit 1 non-null int64 7 net_profit_growth 1 non-null float64 8 ebit_margin 1 non-null int64 9 roe 1 non-null float64 10 roic 1 non-null int64 11 roa 1 non-null float64 12 pe 1 non-null float64 13 pb 1 non-null float64 14 eps 1 non-null float64 15 current_ratio 1 non-null int64 16 cash_ratio 1 non-null int64 17 quick_ratio 1 non-null int64 18 interest_coverage 0 non-null object 19 ae 1 non-null float64 20 fae 1 non-null float64 21 net_profit_margin 1 non-null float64 22 gross_margin 1 non-null int64 23 ev 1 non-null int64 24 issue_share 1 non-null int64 25 ps 1 non-null float64 26 pcf 1 non-null float64 27 bvps 1 non-null float64 28 ev_per_ebitda 1 non-null int64 29 at 1 non-null int64 30 fat 1 non-null int64 31 acp 0 non-null object 32 dso 1 non-null int64 33 dpo 1 non-null int64 34 eps_ttm 1 non-null float64 35 charter_capital 1 non-null int64 36 rtq4 1 non-null int64 37 charter_capital_ratio 1 non-null float64 38 rtq10 1 non-null int64 39 dividend 1 non-null int64 40 ebitda 1 non-null int64 41 ebit 1 non-null int64 42 le 1 non-null int64 43 de 1 non-null int64 44 ccc 0 non-null object 45 rtq17 1 non-null int64
Thống kê giao dịch
Gọi hàm
company.trading_stats()
Dữ liệu mẫu:
>>> company.trading_stats() symbol exchange ev ceiling floor ... foreign_room avg_match_volume_2w foreign_holding_room current_holding_ratio max_holding_ratio 0 ACB HOSE 117249769875000 28000 24400 ... 1339997373 8108407 1339997373 0.3 0.3
Kiểu dữ liệu
# Column Non-Null Count Dtype --- ------ -------------- ----- 0 symbol 1 non-null object 1 exchange 1 non-null object 2 ev 1 non-null int64 3 ceiling 1 non-null int64 4 floor 1 non-null int64 5 ref_price 1 non-null int64 6 open 1 non-null int64 7 match_price 1 non-null int64 8 close_price 1 non-null int64 9 price_change 1 non-null int64 10 price_change_pct 1 non-null float64 11 high 1 non-null int64 12 low 1 non-null int64 13 total_volume 1 non-null int64 14 high_price_1y 1 non-null int64 15 low_price_1y 1 non-null int64 16 pct_low_change_1y 1 non-null float64 17 pct_high_change_1y 1 non-null float64 18 foreign_volume 1 non-null int64 19 foreign_room 1 non-null int64 20 avg_match_volume_2w 1 non-null int64 21 foreign_holding_room 1 non-null int64 22 current_holding_ratio 1 non-null float64 23 max_holding_ratio 1 non-null float64
Nguồn dữ liệu TCBS
Thông tin tổng quan
Gọi hàm
company.overview()
Dữ liệu mẫu:
>>> company.overview() exchange industry company_type no_shareholders foreign_percent outstanding_share ... delta_in_month delta_in_year short_name website industry_id industry_id_v2 0 HOSE Ngân hàng NH 25183 0.235 5589.1 ... -0.071 -0.036 Vietcombank https://vietcombank.com.vn 289 8355 [1 rows x 17 columns]
Kiểu dữ liệu
Index: 1 entries, 0 to 0 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 exchange 1 non-null object 1 industry 1 non-null object 2 company_type 1 non-null object 3 no_shareholders 1 non-null int64 4 foreign_percent 1 non-null float64 5 outstanding_share 1 non-null float64 6 issue_share 1 non-null float64 7 established_year 1 non-null object 8 no_employees 1 non-null int64 9 stock_rating 1 non-null float64 10 delta_in_week 1 non-null float64 11 delta_in_month 1 non-null float64 12 delta_in_year 1 non-null float64 13 short_name 1 non-null object 14 website 1 non-null object 15 industry_id 1 non-null int64 16 industry_id_v2 1 non-null object dtypes: float64(7), int64(3), object(7) memory usage: 144.0+ bytes
Hồ sơ công ty
Gọi hàm
company.profile()
Dữ liệu mẫu:
>>> company.profile() company_name company_profile ... key_developments business_strategies 0 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... Ngân hàng Thương mại Cổ phần Ngoại thương Việ... ... Dịch vụ tài khoản Dịch vụ huy động vốn (tiền... Ngân hàng số 1 tại Việt Nam, một trong 100 ng... [1 rows x 7 columns]
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> RangeIndex: 1 entries, 0 to 0 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 company_name 1 non-null object 1 company_profile 1 non-null object 2 history_dev 1 non-null object 3 company_promise 0 non-null object 4 business_risk 1 non-null object 5 key_developments 1 non-null object 6 business_strategies 1 non-null object dtypes: object(7) memory usage: 184.0+ bytes
Cổ đông lớn
Gọi hàm
company.shareholders()
Dữ liệu mẫu:
>>> company.shareholders() share_holder share_own_percent 0 Ngân Hàng Nhà Nước Việt Nam 0.7480 1 Mizuho Bank Limited 0.1500 2 Khác 0.0295
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> RangeIndex: 3 entries, 0 to 2 Data columns (total 2 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 share_holder 3 non-null object 1 share_own_percent 3 non-null float64 dtypes: float64(1), object(1) memory usage: 176.0+ bytes
Ban lãnh đạo
Gọi hàm
company.officers()
Dữ liệu mẫu:
>>> company.officers() officer_name officer_position officer_own_percent 5 Nguyễn Thanh Tùng Tổng Giám đốc 0.0 4 Nguyễn Thanh Tùng Thành viên Hội đồng Quản trị 0.0 7 Lê Thị Kim Nga Thành viên Hội đồng Quản trị 0.0 16 Nguyễn Thị Kim Oanh Thành viên Hội đồng Quản trị 0.0 9 Đỗ Thị Mai Hương Thành viên Ban kiểm soát 0.0 10 Lê Hoàng Tùng Phó Tổng Giám đốc 0.0 13 Đào Minh Tuấn Phó Tổng Giám đốc 0.0 18 La Thị Hồng Minh Kế toán trưởng 0.0 0 Đàm Lam Thanh None 0.0 1 Đậu Thị Thúy Vân None 0.0 2 Nghiêm Xuân Thành None 0.0 3 Nguyễn Danh Lương None 0.0 6 Nguyễn Mỹ Hào None 0.0 8 Đào Hảo None 0.0 11 Lê Thị Hoa None 0.0 12 Nghiêm Thị Thúy None 0.0 14 Nguyễn Hòa Bình None 0.0 15 Trương Lệ Hiền None 0.0 17 Phùng Nguyễn Hải Yến None 0.0 19 PHẠM QUANG DŨNG None 0.0
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> Index: 20 entries, 5 to 19 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 officer_name 20 non-null object 1 officer_position 8 non-null object 2 officer_own_percent 20 non-null float64 dtypes: float64(1), object(2) memory usage: 640.0+ bytes
Công ty con
Gọi hàm
company.subsidiaries()
Dữ liệu mẫu:
>>> company.subsidiaries() sub_company_name sub_own_percent 0 Công ty TNHH Chứng khoán Ngân hàng Thương mại ... 1.000 1 Công Ty TNHH Một Thành Viên Kiều Hối Ngân Hàng... 1.000 2 Công ty TNHH MTV Cho Thuê Tài Chính Ngân Hàng ... 1.000 3 Công ty TNHH Tài Chính Việt Nam Tại Hồng Kông 1.000 4 Ngân Hàng TNHH MTV Ngoại Thương Việt Nam Tại Lào 1.000 5 Công ty Chuyển Tiền Vcb Money 0.875 6 Công ty TNHH Cao Ốc Vietcombank 198 0.700 7 Công Ty Liên Doanh Trách Nhiệm Hữu Hạn Vietcom... 0.520 8 Công ty Liên doanh Quản lý Quỹ đầu tư chứng kh... 0.510 9 Công ty TNHH Bảo hiểm FWD Việt Nam 0.450 10 Công ty Liên Doanh Hữu Hạn Vietcombank-bonday 0.160 11 Tổng Công ty Cổ phần Bảo hiểm Petrolimex 0.080 12 Ngân hàng Thương mại Cổ phần Xuất nhập khẩu Vi... 0.045 13 Ngân hàng Thương mại Cổ phần Quân đội 0.044 14 Tổng Công ty Hàng không Việt Nam - CTCP 0.010 15 Tổng Công ty Cổ phần Khoan và Dịch vụ khoan Dầ... 0.002 16 Ngân hàng Thương mại Cổ phần Phương Đông 0.000
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> RangeIndex: 17 entries, 0 to 16 Data columns (total 2 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 sub_company_name 17 non-null object 1 sub_own_percent 17 non-null float64 dtypes: float64(1), object(1) memory usage: 400.0+ bytes
Lịch sử chia cổ tức
Gọi hàm
company.dividends()
Dữ liệu mẫu:
>>> company.dividends() exercise_date cash_year cash_dividend_percentage issue_method 0 25/07/23 2023 0.181 share 1 22/12/21 2022 0.276 share 2 22/12/21 2020 0.120 cash 3 21/12/20 2019 0.080 cash 4 30/12/19 2018 0.080 cash 5 05/10/18 2017 0.080 cash 6 28/09/17 2016 0.080 cash 7 09/09/16 2015 0.100 cash 8 26/06/15 2014 0.100 cash 9 18/06/14 2013 0.120 cash 10 26/02/13 2012 0.120 cash 11 24/02/12 2011 0.120 cash 12 18/07/11 2011 0.120 share 13 10/03/10 2009 0.120 cash 14 01/12/08 2008 0.120 cash
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> RangeIndex: 15 entries, 0 to 14 Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 exercise_date 15 non-null object 1 cash_year 15 non-null int64 2 cash_dividend_percentage 15 non-null float64 3 issue_method 15 non-null object dtypes: float64(1), int64(1), object(2) memory usage: 608.0+ bytes
Giao dịch nội bộ
Gọi hàm
company.insider_deals()
Dữ liệu mẫu:
>>> company.insider_deals() deal_announce_date deal_method deal_action deal_quantity deal_price deal_ratio 0 2023-12-21 None Mua 5000.0 80900.0 0.115 1 2020-12-30 None Bán -2523.0 64175.0 0.406 2 2020-12-23 None Bán -15000.0 63913.0 0.411 3 2020-04-27 None Mua 10000.0 43434.0 1.077 4 2019-11-29 None Bán -10000.0 54974.0 0.641 5 2019-07-26 None Bán -21000.0 50592.0 0.783 6 2019-07-22 None Bán -37000.0 50914.0 0.772 7 2019-01-16 None Mua 10000.0 35704.0 1.526 8 2019-01-10 None Mua 10000.0 35447.0 1.545 9 2018-12-03 None Mua 10000.0 37380.0 1.413 10 2018-02-08 None Mua 8000.0 40023.0 1.254 11 2018-01-29 None Bán -2829.0 43268.0 1.085 12 2018-01-05 None Mua 10000.0 34360.0 1.625 13 2018-01-03 None Bán -5000.0 34933.0 1.582 14 2018-01-03 None Bán -1700.0 34933.0 1.582 15 2017-02-07 None Mua 10000.0 24445.0 2.690 16 2016-01-12 None Mua 10000.0 19310.0 3.671 17 2015-03-18 None Bán -4000.0 15845.0 4.693 18 2015-02-12 None Mua 1000.0 16066.0 4.614 19 2014-02-12 None Mua 10000.0 NaN NaN
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> RangeIndex: 20 entries, 0 to 19 Data columns (total 6 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 deal_announce_date 20 non-null datetime64[ns] 1 deal_method 0 non-null object 2 deal_action 20 non-null object 3 deal_quantity 20 non-null float64 4 deal_price 19 non-null float64 5 deal_ratio 19 non-null float64 dtypes: datetime64[ns](1), float64(3), object(2) memory usage: 1.1+ KB
Sự kiện
Gọi hàm
company.events()
Dữ liệu mẫu:
>>> company.events() rsi rs id price price_change ... notify_date exer_date reg_final_date exer_right_date event_desc 0 56.4 54.0 2566332 94400 300 ... 2024-03-12 00:00:00 2024-04-27 00:00:00 2024-03-27 00:00:00 2024-03-26 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 1 52.0 61.0 2564026 89100 0 ... 2023-08-31 00:00:00 2023-08-30 00:00:00 1753-01-01 00:00:00 1753-01-01 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 2 45.5 70.0 2563891 86300 -2100 ... 2023-08-23 00:00:00 2023-10-06 00:00:00 2023-09-05 00:00:00 2023-08-31 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 3 61.2 56.0 2563509 88819 762 ... 2023-07-13 00:00:00 2023-07-25 00:00:00 2023-07-26 00:00:00 2023-07-25 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 4 57.3 82.0 2561470 78743 -423 ... 2023-03-01 00:00:00 2023-04-21 00:00:00 2023-03-21 00:00:00 2023-03-20 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 5 55.6 64.0 2560593 66889 -170 ... 2022-12-20 00:00:00 2023-01-30 00:00:00 2022-12-30 00:00:00 2022-12-29 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 6 45.6 46.0 2476530 68667 -2625 ... 2022-03-15 00:00:00 2022-04-29 00:00:00 2022-03-28 00:00:00 2022-03-25 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 7 65.5 56.0 2446356 75356 -1694 ... 2022-01-28 17:47:09 2022-02-14 00:00:00 1753-01-01 00:00:00 1753-01-01 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Vi... 8 44.5 32.0 2395944 64962 -524 ... 2021-12-16 11:58:44 2021-12-22 00:00:00 2021-12-23 00:00:00 2021-12-22 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việ... 9 44.5 32.0 2395943 64962 -524 ... 2021-12-16 09:00:00 2022-01-05 00:00:00 2021-12-23 00:00:00 2021-12-22 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việ... 10 51.9 30.0 1611831 64306 -1246 ... 2021-02-24 00:00:00 2021-04-23 00:00:00 2021-03-19 00:00:00 2021-03-18 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 11 NaN 65.0 1481291 63590 -1366 ... 2020-12-15 09:00:00 2021-01-08 00:00:00 2020-12-22 00:00:00 2020-12-21 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việ... 12 NaN 44.0 1316877 43434 -390 ... 2020-05-05 00:00:00 2020-06-26 00:00:00 2020-05-20 00:00:00 2020-05-19 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... 13 NaN 86.0 1306563 58004 -580 ... 2019-12-24 09:00:00 2020-01-15 00:00:00 2019-12-31 00:00:00 2019-12-30 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việ... 14 NaN 58.0 1062568 38733 644 ... 2019-02-21 00:00:00 2019-04-26 00:00:00 2019-03-18 00:00:00 2019-03-15 00:00:00 Ngân hàng Thương mại Cổ phần Ngoại thương Việt... [15 rows x 14 columns]
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> RangeIndex: 15 entries, 0 to 14 Data columns (total 14 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 rsi 11 non-null float64 1 rs 15 non-null float64 2 id 15 non-null int64 3 price 15 non-null int64 4 price_change 15 non-null int64 5 price_change_ratio 15 non-null float64 6 price_change_ratio_1m 15 non-null float64 7 event_name 15 non-null object 8 event_code 15 non-null object 9 notify_date 15 non-null object 10 exer_date 15 non-null object 11 reg_final_date 15 non-null object 12 exer_right_date 15 non-null object 13 event_desc 15 non-null object dtypes: float64(4), int64(3), object(7) memory usage: 1.8+ KB
Tin tức
Gọi hàm
company.news()
Dữ liệu mẫu:
>>> company.news() rsi rs price price_change price_change_ratio price_change_ratio_1m id title source publish_date 0 41.4 50.0 91900.0 700.0 0.008 -0.028 11170634 VCB: Công bố đường dẫn BCTC riêng và HN Q1/2024 TCBS 2024-05-02 15:53:00 1 41.4 50.0 91900.0 700.0 0.008 -0.028 11170648 VCB: CBTT Biên bản họp và Nghị quyết ĐHĐCĐ th... TCBS 2024-05-02 15:42:00 2 41.4 50.0 NaN NaN NaN NaN 11168891 ĐHCĐ 2024 Vietcombank (VCB): Lâu dài, bán lẻ v... TCBS 2024-04-27 13:00:00 3 40.1 49.0 91200.0 200.0 0.002 -0.053 11168477 VCB: Cập nhật, bổ sung tài liệu họp ĐHĐCĐ thư... TCBS 2024-04-26 16:56:00 4 35.4 57.0 90600.0 100.0 0.001 -0.060 11160361 Vốn chủ sở hữu của 'anh cả' ngành ngân hàng tă... TCBS 2024-04-22 08:59:00 5 35.4 51.0 90500.0 0.0 0.000 -0.022 11158655 VCB: Báo cáo tài chính Năm (Kỳ báo cáo từ 01/0... TCBS 2024-04-19 09:58:00 6 36.9 50.0 90500.0 -500.0 -0.005 -0.027 11157646 VCB: Báo cáo thường niên năm 2023 TCBS 2024-04-17 15:44:00 7 47.9 40.0 96000.0 2200.0 0.023 0.000 11142101 VCB: CBTT Tài liệu họp ĐHĐCĐ thường niên năm ... TCBS 2024-04-04 16:23:00 8 54.6 46.0 94500.0 -700.0 -0.007 -0.016 11138523 VCB: Thông báo thay đổi nhân sự công ty TCBS 2024-04-02 18:14:00 9 53.4 36.0 95200.0 300.0 0.003 -0.022 11135850 VCB: Giải trình chênh lệch LNST năm 2023 so v... TCBS 2024-04-01 14:05:00 10 58.2 70.0 96300.0 600.0 0.006 0.076 11129685 VCB: HĐQT phê duyệt chủ trương giao dịch mua ... TCBS 2024-03-26 17:28:00 11 62.9 62.0 95000.0 -1000.0 -0.010 0.057 11117298 VCB: HĐQT phê duyệt giới hạn tiền gửi đối với... TCBS 2024-03-14 16:51:00 12 62.9 62.0 95000.0 -1000.0 -0.010 0.057 11116499 Bloomberg: Ngân hàng Vietcombank (VCB) có thể ... TCBS 2024-03-14 09:41:00 13 56.4 54.0 94400.0 300.0 0.003 0.050 11113325 VCB: Thông báo ngày ĐKCC để thực hiện quyền t... TCBS 2024-03-12 09:20:00 14 73.1 70.0 97300.0 0.0 0.000 0.084 11103770 VCB: Nghị quyết HĐQT về việc điều chỉnh thời ... TCBS 2024-03-01 15:58:00
Kiểu dữ liệu
<class 'pandas.core.frame.DataFrame'> RangeIndex: 15 entries, 0 to 14 Data columns (total 10 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 rsi 15 non-null float64 1 rs 15 non-null float64 2 price 14 non-null float64 3 price_change 14 non-null float64 4 price_change_ratio 14 non-null float64 5 price_change_ratio_1m 14 non-null float64 6 id 15 non-null int64 7 title 15 non-null object 8 source 15 non-null object 9 publish_date 15 non-null object dtypes: float64(6), int64(1), object(3) memory usage: 1.3+ KB
Thảo luận