Skip to content

Commit

Permalink
fix: 當日卷商分點統計表
Browse files Browse the repository at this point in the history
  • Loading branch information
samlin17 committed Sep 30, 2024
1 parent b9b60ce commit fb8523d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docs/tutor/TaiwanMarket/Chip.md
Original file line number Diff line number Diff line change
Expand Up @@ -1813,20 +1813,19 @@
stock_id="2330",
securities_trader_id="1020",
start_date= "2024-07-01",
end_date='2024-07-15'
end_date="2024-07-15",
)
```
=== "Python-request"
```python
import requests
import pandas as pd
url = "https://api.finmindtrade.com/api/v4/data"
url = "https://api.finmindtrade.com/api/v4/taiwan_stock_trading_daily_report_secid_agg"
parameter = {
"dataset": "TaiwanStockTradingDailyReportSecIdAgg",
"data_id": "2330",
securities_trader_id: "1020",
start_date: "2024-07-01",
end_date: '2024-07-15'
"securities_trader_id": "1020",
"start_date": "2024-07-01",
"end_date": '2024-07-15',
"token": "", # 參考登入,獲取金鑰
}
data = requests.get(url, params=parameter)
Expand All @@ -1848,7 +1847,7 @@
data_id="2330",
securities_trader_id="1020",
start_date= "2024-07-01",
end_date='2024-07-15'
end_date='2024-07-15',
token = "" # 參考登入,獲取金鑰
)
)
Expand Down

0 comments on commit fb8523d

Please sign in to comment.