Skip to main content

Snapshot Movers

Stock Price Change Ranking (by market type)

snapshot/movers/{market}

Parameters

NameTypeDescription
market*stringMarket Type
direction*stringRise/Fall,Offer up Rise;down Fall
change*stringChange/Change percentage,Offer percentvalue
typestringAsset type options,offer ALLBUT099 for common stocks, preferred stocks, and ETFs; COMMONSTOCK for common stocks only
gtnumberFilter Greater than change
gtenumberFilter Greater than or equal to change
ltnumberFilter Less then change
ltenumberFilter Less than or equal to change
eqnumberFilter Equal to change

Response

NameTypeDescription
date*stringDate
time*stringTime
market*stringMarket Type
change*stringChange/Change percentage
data*object[]list
>> typestringTicker Type
>> symbolstringStock Number
>> namestringStock Abbreviation in Chinese
>> openPricenumberOpening Price
>> highPricenumberHighest Price
>> lowPricenumberLowest Price
>> closePricenumberClose Price
>> changenumberPrice Change
>> changePercentnumberPrice Change Percentage
>> tradeVolumenumberTrading Volume
>> tradeValuenumberTrading Value
>> lastUpdatednumberSnapshot Time
info

'*' Indicates mandatory disclosure fields.

Example

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.snapshot.movers(market='TSE', direction='up', change='percent')

Response Body:

{
"date": "2023-05-29",
"time": "133500",
"market": "TSE",
"change": "percent",
"data": [
{
"type": "EQUITY",
"symbol": "2901",
"name": "欣欣",
"openPrice": 27.1,
"highPrice": 29.7,
"lowPrice": 27.1,
"closePrice": 29.7,
"change": 2.7,
"changePercent": 10,
"tradeVolume": 640,
"tradeValue": 18824300,
"lastUpdated": 1685338200000000
},
{
"type": "EQUITY",
"symbol": "2345",
"name": "智邦",
"openPrice": 357.5,
"highPrice": 357.5,
"lowPrice": 346.5,
"closePrice": 357.5,
"change": 32.5,
"changePercent": 10,
"tradeVolume": 9350,
"tradeValue": 3331334500,
"lastUpdated": 1685338200000000
},
{
"type": "EQUITY",
"symbol": "3025",
"name": "星通",
"openPrice": 42.3,
"highPrice": 44.65,
"lowPrice": 41.8,
"closePrice": 44.65,
"change": 4.05,
"changePercent": 9.98,
"tradeVolume": 25625,
"tradeValue": 1114127050,
"lastUpdated": 1685338200000000
},
......
]
}