The Security Candlestick table is used to obtain the candlestick data of security.
https://open.longportapp.com/en/docs/quote/pull/candlestick
symbol
- symbol of securityperiod
- period of candlesticks, available values:1
,5
,15
,30
,60
,1000
,2000
,3000
,4000
, see also Periodadjust_type
- adjust type, available values:0
- NO_ADJUST,1
- FORWARD_ADJUST, see also Adjust
select
*
from
longport_candlestick
where
symbol = 'TSLA.US'
and period = 1
and adjust_type = 0;
select
*
from
longport_candlestick
where
symbol = 'TSLA.US'
and period = 1
and adjust_type = 0;