Intraday Ticker
Stock information (query by stock number)
intraday/ticker/{symbol}
Parameters
Name | Type | Description |
---|---|---|
symbol * | string | Stock number |
type | string | Type,offer oddlot odd-lot |
Response
Name | Type | Description |
---|---|---|
date * | string | Date |
type * | string | Ticker Type |
exchange * | string | Exchange Type |
market | string | Market Type |
symbol * | string | Stock Number |
name * | string | Stock Abbreviation in Chinese |
nameEn | string | Stock Abbreviation in English |
industry | string | Industry |
securityType | string | Stock coding Type,refer to Stock coding Type |
referencePrice | number | Reference Price |
limitUpPrice | number | Rise Stop Price |
limitDownPrice | number | Fall Stop Price |
canDayTrade | boolean | Day Trading Indicator |
canBuyDayTrade | boolean | Day Trading Indicator (Buy first then sell) |
canBelowFlatMarginShortSell | boolean | Exemption of Unchanged Market Margin Sale Indicator |
canBelowFlatSBLShortSell | boolean | Exemption of Unchanged Market Lending Sale Indicator |
isAttention | boolean | Attention |
isDisposition | boolean | Disposition |
isUnusuallyRecommended | boolean | Abnormal recommendation indicator |
isSpecificAbnormally | boolean | Abnormal securities indicator |
matchingInterval | number | Matching Cycle Seconds |
securityStatus | string | Status,include NORMAL , TERMINATED , SUSPENDED |
boardLot | number | Trading Unit |
tradingCurrency | string | Trading Currency |
exercisePrice | number | Exercise (Strike) price (warrant) |
exercisedVolume | number | Previous Business Day Exercise Volume (warrant) |
cancelledVolume | number | Previous Business Day Cancellation Volume (warrant) |
remainingVolume | number | Issuing Balance (Volume) (warrant) |
exerciseRatio | number | Strike Ratio (warrant) |
knockInPrice | number | Upper Limit Price (warrant) |
knockOutPrice | number | Lower Limit Price (warrant) |
maturityDate | string | Maturity Date (warrant) |
previousClose | number | Yesterday closing price |
openTime | string | Opening time(index) |
closeTime | string | Close time(index) |
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.ticker(symbol='2330')
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.ticker({ symbol: '2330' })
.then(data => console.log(data));
using FubonNeo.Sdk;
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.Ticker("2330");
var ticker_cont = ticker.Content.ReadAsStringAsync().Result;
Console.WriteLine(ticker_cont);
Response Body:
{
"date": "2023-05-29",
"type": "EQUITY",
"exchange": "TWSE",
"market": "TSE",
"symbol": "2330",
"name": "台積電",
"industry": "24",
"securityType": "01",
"previousClose": 566,
"referencePrice": 566,
"limitUpPrice": 622,
"limitDownPrice": 510,
"canDayTrade": true,
"canBuyDayTrade": true,
"canBelowFlatMarginShortSell": true,
"canBelowFlatSBLShortSell": true,
"isAttention": false,
"isDisposition": false,
"isUnusuallyRecommended": false,
"isSpecificAbnormally": false,
"matchingInterval": 0,
"securityStatus": "NORMAL",
"boardLot": 1000,
"tradingCurrency": "TWD"
}
Security Type
Code | Security Type | Code | Security Type |
---|---|---|---|
01 | Common Stocks | 24 | ETF |
02 | Convertible Bonds | 25 | ETF(in foreign currencies) |
03 | Exchangeable Corporate Bonds, Exchangeable Financial Bonds | 26 | Leveraged ETFs |
04 | General Preferred Stocks | 27 | Leveraged ETFs (in foreign currencies) |
05 | Exchangeable Preferred Stocks | 28 | Inverse ETFs |
06 | Subscription warrants | 29 | Inverse ETFs (in foreign currencies) |
07 | Preferred Stocks with Warrants | 30 | Futures Trust ETFs |
08 | Debentures with Warrants | 31 | Futures Trust ETFs (in foreign currencies) |
09 | Cooperate Bonds of Performed Debentures with Warrants | 32 | Bond ETF |
10 | Callable Bull Contract with domestic securities or index as underlying assets. | 33 | Bond ETF(in foreign currencies) |
11 | Callable Bear Contract with domestic securities or index as underlying assets | 34 | Financial Asset Securitization Beneficiary Securities |
12 | Callable Bull Contract with foreign securities or indexes as underlying assets | 35 | Real Estate Asset Trust Beneficiary Securities |
13 | Callable Bear Contract with foreign securities or indexes as underlying assets | 36 | Real Estate Investment Trust Beneficiary Securities |
14 | “Lower Limit Callable Bull Contract” (Bull Contract) with domestic securities or indexes as underlying assets | 37 | ETN |
15 | “Upper Limit Callable Bear Contract” (Bear Contract) with domestic securities or indexes as underlying assets | 38 | Leveraged ETN |
16 | “Open-End Callable Bull Contract” whose underlying assets are domestic securities or indices (Open-End Callable Bull Contract) | 39 | Inverse ETN |
17 | “Open-End Callable Bear Contract” whose underlying assets are domestic securities or indices (Open-End Callable Bear Contract) | 40 | Bond ETN |
18 | Beneficiary Certificate | 41 | Strategy ETN |
19 | Depository Receipt | 42 | Government Bonds |
20 | Corporate Bond Convertible into Depository Receipts | 43 | Foreign Securities |
21 | Corporate Bond with Warrants on Depository Receipts | 44 | Spot gold market |
22 | Remaining Corporate Bond with Warrants Exercised for Depository Receipts | 00 | Remain |
23 | Warrant on Depository Receipts |