Ticker symbols

Ticker accepts any of the following.

FormExampleCovers
Securities code + .T7203.TListed companies
Securities code (4 characters)7203Same
EDINET codeE02144Companies, including unlisted ones
ISINJP3633400001Listed companies
Fund codeG02925Investment trusts
jf.Ticker("7203.T")           # all four refer to the same company
jf.Ticker("7203")
jf.Ticker("E02144")
jf.Ticker("JP3633400001")

Codes containing letters

Since 2024 some securities codes contain letters. Pass them as they are.

jf.Ticker("130A.T")

Companies and funds

The first character of the EDINET code tells them apart.

PrefixTypeAvailable data
ECompanyFinancial statements, officers, shareholders, large shareholdings
GFundFund financials (get_fund_financials())
f = jf.Ticker("1306.T")            # an ETF. "G02925" works too
f.get_fund_financials()

Calling a company attribute on a fund returns an empty result rather than raising.

Unknown symbols

Most attributes return an empty result for a symbol that does not exist, rather than raising.

jf.Ticker("9ZZZ.T").financials     # empty DataFrame

Finding a code

jf.Search("Toyota").quotes
jf.Lookup("7203").all

See Search, industries, screener.