FinMind / FinMind

Open Data, more than 50 financial data. 提供超過 50 個金融資料(台股為主),每天更新 https://finmind.github.io/

Home Page:http://finmindtrade.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong TaiwanFuturesInstitutionalInvestors data on 2022-10-01

arthur55 opened this issue · comments

Describe the bug (please complete the following information)[清晰簡潔的描述 bug]
Wrong TaiwanFuturesInstitutionalInvestors data on 2022-10-01

To Reproduce (please complete the following information)[一步一步說明如何重現 bug]

import requests
import pandas as pd
url = "https://api.finmindtrade.com/api/v4/data"
parameter = {
    "dataset": "TaiwanFuturesInstitutionalInvestors",
    "data_id": "TX",# "TXO"
    "start_date": "2022-10-01",
    "end_date": "2022-10-01",
    "token": "", # 參考登入,獲取金鑰
}
resp = requests.get(url, params=parameter)
data = resp.json()
df = pd.DataFrame(data["data"])
print(df.head())

Expected behavior (please complete the following information)[清晰簡潔的描述你預期的結果]
It should not return any data on "2022-10-01".

Screenshots[如果方便的話,利用截圖來協助說明你的問題]
image
image

處理中

已修正
image