Skip to content

Commit

Permalink
remove euro from list
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrtye committed Feb 13, 2024
1 parent 6f65549 commit b9d5f9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apiserver/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

xui_session = requests.Session()
tickers = yfinance.Tickers(
"^IXIC ^GSPC 000001.SS AAPL GOOG NVDA TSLA GBPCNY=X EURCNY=X CNY=X CADCNY=X"
"^IXIC ^GSPC 000001.SS AAPL GOOG NVDA TSLA GBPCNY=X CNY=X CADCNY=X"
)

CURRENCY_SYMBOL = {
Expand Down Expand Up @@ -161,7 +161,7 @@ def update_exchange_status():
global exchange_status

try:
info = get_info_by_ticker("CNY=X GBPCNY=X EURCNY=X CADCNY=X")
info = get_info_by_ticker("GBPCNY=X CNY=X CADCNY=X")

for ticker, value in info.items():
exchange_status[ticker] = value
Expand Down

0 comments on commit b9d5f9c

Please sign in to comment.