Ticker symbols
Ticker accepts any of the following.
| Form | Example | Covers |
|---|---|---|
Securities code + .T | 7203.T | Listed companies |
| Securities code (4 characters) | 7203 | Same |
| EDINET code | E02144 | Companies, including unlisted ones |
| ISIN | JP3633400001 | Listed companies |
| Fund code | G02925 | Investment 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.
| Prefix | Type | Available data |
|---|---|---|
E | Company | Financial statements, officers, shareholders, large shareholdings |
G | Fund | Fund 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 DataFrameFinding a code
jf.Search("Toyota").quotes
jf.Lookup("7203").all