1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-16 07:16:40 +00:00
Simple-Stock-Bot/IEX_Symbol.py

41 lines
1.6 KiB
Python

"""Class with functions for running the bot with IEX Cloud.
"""
# import logging
# import os
# from datetime import datetime
# from logging import warning
# from typing import List, Optional, Tuple
# import pandas as pd
# import requests as r
# import schedule
# from fuzzywuzzy import fuzz
from Symbol import Stock
class IEX_Symbol:
def price_reply(self, symbol: Stock) -> str:
return "Stock market data is currently unavailable see: https://t.me/simplestockbotnews\nCryptocurrency data is still available."
def dividend_reply(self, symbol: Stock) -> str:
return "Stock market data is currently unavailable see: https://t.me/simplestockbotnews\nCryptocurrency data is still available."
def news_reply(self, symbol: Stock) -> str:
return "Stock market data is currently unavailable see: https://t.me/simplestockbotnews\nCryptocurrency data is still available."
def info_reply(self, symbol: Stock) -> str:
return "Stock market data is currently unavailable see: https://t.me/simplestockbotnews\nCryptocurrency data is still available."
def stat_reply(self, symbol: Stock) -> str:
return "Stock market data is currently unavailable see: https://t.me/simplestockbotnews\nCryptocurrency data is still available."
def cap_reply(self, symbol: Stock) -> str:
return "Stock market data is currently unavailable see: https://t.me/simplestockbotnews\nCryptocurrency data is still available."
def trending(self) -> list[str]:
return [
"Stock market data is currently unavailable see: https://t.me/simplestockbotnews\nCryptocurrency data is still available."
]