Skip to content

[Daily Securities Buy/Sell Report by Brokers] – Detailed Field Descriptions

Table Overview

Abstract

  • Table Name:TWN/ADRST
  • Data Source: Taiwan Stock Exchange (TWSE), Taipei Exchange (TPEx)
  • Reference Code Table: TWN/ANPRCSTD
  • Code Column: coid
  • Publication Date Column: mdate

Key Indicators

  • Time Range
    Last 7 Days

  • Update Frequency
    Daily

Field Descriptions

# Field Data Type Field Name Unit Field Description
1 coid char(7) Stock ID Stock ID
2 mdate datetime Date Date
3 key3 char(7) Broker ID Broker ID
4 no decimal(14,4) Trade Price NTD Trade Price
5 brk_nm_e char(50) Broker Name Broker Name
6 buy_s decimal(10,0) Buy Amount shares Buy Amount
7 sell_s decimal(10,0) Sell Amount shares Sell Amount

API Request Examples

Example

GET https://api.tej.com.tw/api/datatables/TWN/ADRST.json?api_key=<YOURAPIKEY>
import tejapi
tejapi.ApiConfig.api_key = "YOURAPIKEY"
data = tejapi.get('TWN/ADRST')
library("Tejapi")
Tejapi.api_key("YOURAPIKEY")
yourdata<- Tejapi('TWN/ADRST')
using Tejapi;
var client = new TejClient("<YOURAPIKEY>");
var result = await client.GetAsync("TWN/ADRST");
Imports Tejapi
Dim client As TejClient = New TejClient("<YOURAPIKEY>")
Dim result As DataTable = Await client.GetAsync("TWN/ADRST")