處置股票查詢
query_disposition_stock
輸入參數
參數 | 類別 | 說明 |
---|---|---|
account | Account | 帳號 |
symbol | string | 股票代號 |
StockStatusOutput 欄位
Return type : Object
參數 | 類別 | 說明 |
---|---|---|
symbol | string | 股票代號 |
abnormal_recommendation_mark | string | 異常推介註記 : 0 表示正常、1 投資理財節目異常推介 |
abnormal_description | string | 異常說明 |
special_abnormal_mark | string | 特殊異常註記 : 0 表示正常、1 特殊異常有價證券 |
special_abnormal_description | string | 特殊異常說明 |
disposition_stock_mark | string | 處置股票註記 : 0 表示正常、1 處置股票、2 再次處置、3 彈性處置 |
disposition_description | string | 處置說明 |
internal_control_category | string | 內控類別 : 0 表示正常、AA 委託超過 30 萬需預收、A 委託超過 50 萬需預收、B 委託超過 300 萬需預收、C 委託超過 500 萬需預收 |
internal_control_description | string | 內控類別說明 |
請求範例
sdk.stock.query_disposition_stock(account,"4956")
回傳範例
StockStatusOutput {
symbol: "4956", # 股票代號 (String)
abnormal_recommendation_mark: "0", # 異常推介註記 (String) : `0` 表示正常、`1`投資理財節目異常推介
abnormal_description: "", # 異常說明 (String)
special_abnormal_mark: "0", # 特殊異常註記 (String) : `0` 表示正常、`1`特殊異常有價證券
special_abnormal_description: "", # 特殊異常說明 (String)
disposition_stock_mark: "1", # 處置股票註記 (String) : `0` 表示正常、`1` 處置股票、`2` 再次處置、`3`彈性處置
disposition_description: "處置有價證券,請注意交易風險!", # 處置股票說明 (String)
internal_control_category: "0", # 內控類別 (String) : `0` 表示正常、`AA`委託超過 30 萬需預收、`A` 委託超過 50 萬需預收、`B` 委託超過 300 萬需預收、`C` 委託超過 500 萬需預收
internal_control_description: "", # 內控類別說明 (String)
}