Intraday Tickers
Stock or index lists (query by conditions)
intraday/tickers
Parameters
Name | Type | Description |
---|---|---|
type * | string | Ticker Type, EQUITY stock;INDEX index;WARRANT warrant ODDLOT odd-lot |
exchange | string | exchange, TWSE twse;TPEx tpex |
market | string | market type, TSE ;OTC ;ESB ;TIB ;PSB |
industry | string | Industry Code |
isNormal | boolean | Normal status(Not Attention and Disposition):true |
isAttention | boolean | Attention:true |
isDisposition | boolean | Disposition :true |
isHalted | boolean | Suspended : true |
Response
Name | Type | Description |
---|---|---|
date * | string | Date |
type * | string | Ticker type |
exchange * | string | exchange type |
market | string | market type |
industry | string | industry code |
isNormal | boolean | Normal status(Not Attention and Disposition) |
isAttention | boolean | Attention |
isDisposition | boolean | Disposition |
isHalted | boolean | Suspended |
data | object[] | list |
>> symbol | string | Stock number |
>> name | string | Stock Abbreviation in Chinese |
info
'*' Indicates mandatory disclosure fields.
Example
- Python
- Node.js
- C#
from fubon_neo.sdk import FubonSDK, Order
sdk = FubonSDK()
accounts = sdk.login("Your ID", "Your password", "Your cert path", "Your cert password") # 需登入後,才能取得行情權限
sdk.init_realtime() # Establish market-data
reststock = sdk.marketdata.rest_client.stock
reststock.intraday.tickers(type='EQUITY', exchange="TWSE", isNormal=True)
const { FubonSDK } = require('fubon-neo');
const sdk = new FubonSDK();
const accounts = sdk.login("Your ID", "Your password", "Your cert path","Your cert password");
sdk.initRealtime(); // Establish market-data
const client = sdk.marketdata.restClient
client.stock.intraday
.tickers({ type: "EQUITY", exchange: "TWSE", isNormal: true })
.then((data) => console.log(data));
using FubonNeo.Sdk;
using FugleMarketData.QueryModels;
var sdk = new FubonSDK();
var result = sdk.Login("Your ID", "Your Password", "Your Cert Path", "Your Cert Password");
sdk.InitRealtime(); // Establish market-data
var rest = sdk.MarketData.RestClient.Stock;
var ticker = await rest.Intraday.Tickers(FugleMarketData.QueryModels.Stock.Intraday.TickersType.Equity);
var ticker_cont = ticker.Content.ReadAsStringAsync().Result;
Console.WriteLine(ticker_cont);
Response Body:
{
"date": "2023-02-09",
"type": "EQUITY",
"exchange": "TWSE",
"isNormal": true,
"data": [
{
"symbol": "0050",
"name": "元大台灣50"
},
{
"symbol": "0051",
"name": "元大中型100"
},
{
"symbol": "0052",
"name": "富邦科技"
},
......
]
}
Industry Code
Code | Industry | Code | Industry | Code | Industry |
---|---|---|---|---|---|
01 | Cement Industry | 16 | Tourism and Hospitality | 29 | Electronic Products Distribution Industry |
02 | Food Industry | 17 | Finance & Insurance | 30 | Information Service Industry |
03 | Plastic Industry | 18 | 31 | Other Electronic Industry | |
04 | Textile & Fiber | 19 | Miscellaneous | 32 | Cultural and Creative Industries |
05 | Electrical Engineering & Machinery | 20 | Other | 33 | Agricultural Technology Industry |
06 | Appliance & Cable | 21 | Chemical Industry | 34 | |
08 | Glass & Ceramics | 22 | Biotechnology & Medical Care | 35 | Green Energy and Environmental Services |
09 | Papermaking Industry | 23 | Oil, Gas and Electricity Industry | 36 | Digital and Cloud Services |
10 | Steel & Iron Industry | 24 | Semiconductor Industry | 37 | Sports and Leisure |
11 | Rubber Industry | 25 | Computer & Peripheral Equipment Industry | 38 | Household |
12 | Auto Industry | 26 | Optoelectronic Industry | 80 | TDR |
14 | Construction Materials & Construction | 27 | Communications and Internet Industry | ||
15 | Sea Transport Industry | 28 | Electronic Parts/Components Industry |