MCPcopy Create free account
hub / github.com/FinStep-AI/ContestTrade / get_balance_sheet

Method get_balance_sheet

contest_trade/utils/fmp_utils.py:215–223  ·  view source on GitHub ↗

获取资产负债表 Args: symbol: 股票代码 period: 'annual' 或 'quarter'

(self, symbol: str, period: str = 'annual', verbose: bool = False)

Source from the content-addressed store, hash-verified

213 return self.run('/income-statement/' + symbol, {'period': period}, verbose=verbose)
214
215 def get_balance_sheet(self, symbol: str, period: str = 'annual', verbose: bool = False):
216 """
217 获取资产负债表
218
219 Args:
220 symbol: 股票代码
221 period: 'annual''quarter'
222 """
223 return self.run('/balance-sheet-statement/' + symbol, {'period': period}, verbose=verbose)
224
225 def get_cash_flow(self, symbol: str, period: str = 'annual', verbose: bool = False):
226 """

Callers 1

get_us_stock_financialsFunction · 0.80

Calls 1

runMethod · 0.95

Tested by

no test coverage detected