From f2f1ed40fe305a9cf06377b857f46dca0924b76c Mon Sep 17 00:00:00 2001 From: Jimmy Situ Date: Sat, 13 Apr 2024 14:46:43 +0800 Subject: [PATCH] Update more examples --- examples/get_xnys.py | 4 ++-- examples/get_xtai.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/get_xnys.py b/examples/get_xnys.py index be4d4ed..b983940 100755 --- a/examples/get_xnys.py +++ b/examples/get_xnys.py @@ -15,8 +15,8 @@ } for ticker in sorted(tickers_list): - valuations = stock.get_valuations(ticker, 'xshg') - financials = stock.get_financials(ticker, 'xshg') + valuations = stock.get_valuations(ticker, 'xnys') + financials = stock.get_financials(ticker, 'xnys') print(f"Ticker: {ticker}") for valuation in valuations: diff --git a/examples/get_xtai.py b/examples/get_xtai.py index d0fa6d9..7937607 100755 --- a/examples/get_xtai.py +++ b/examples/get_xtai.py @@ -11,7 +11,8 @@ ) tickers_list = { - '2454', '2330', + '2454', + '2330', # TSMC } for ticker in sorted(tickers_list):