3.1. Báo cáo tài chính
fs_dict = client.FundamentalAnalysis().get_financial_statement(
tickers=tickers,
statement=statement,
years=years,
quarters=quarters,
audited=True,
type=type,
fields=fields
)Tên tham số
Mô tả
Kiểu dữ liệu
Mặc định
Bắt buộc
### pseudocode
import json
fs_dict = client.FundamentalAnalysis().get_financial_statement(
tickers=tickers,
statement="balancesheet",
years=[2024],
quarters=[4],
audited=True,
type="consolidated"
)
print(json.dumps(fs_dict, indent=4))Last updated