Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 607 Bytes

longport_option_quote.md

File metadata and controls

39 lines (33 loc) · 607 Bytes

Table: longport_quote - Query Real-time Option Quotes Of Securities using SQL

The Real-time Option Quote table is used to obtain the real-time option quote data of security.

https://open.longportapp.com/en/docs/quote/pull/option-quote

Examples

Query Real-time Quotes by symbols

select
   *
from
   longport_option_quote
where
   symbol in
   (
      'BABA.US',
      'TSLA.US',
      '700.HK',
      "AAPL.US"
   );
select
   *
from
   longport_option_quote
where
   symbol in
   (
      'BABA.US',
      'TSLA.US',
      '700.HK',
      "AAPL.US"
   );