Skip to content

Latest commit

 

History

History
49 lines (43 loc) · 715 Bytes

longport_static_info.md

File metadata and controls

49 lines (43 loc) · 715 Bytes

Table: longport_static_info - Query Basic Information of Securities using SQL

The Static Information table is used to obtain the static information of security.

https://open.longportapp.com/en/docs/quote/pull/static

Examples

Query Basic Information by symbols

select
   symbol,
   name_en,
   exchange,
   currency,
   lot_size,
   total_shares,
   eps
from
   longport_static_info
where
   symbol in
   (
      'BABA.US',
      'TSLA.US',
      '700.HK'
   );
select
   symbol,
   name_en,
   exchange,
   currency,
   lot_size,
   total_shares,
   eps
from
   longport_static_info
where
   symbol in
   (
      'BABA.US',
      'TSLA.US',
      '700.HK'
   );