├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── regular-issue.md ├── dependabot.yml └── workflows │ ├── black-check.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── isort.yaml │ └── release-notes.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.yaml ├── curl_example.txt ├── data └── bitcoin_data.csv ├── example.env ├── img ├── emojis │ ├── binance.png │ ├── kucoin.png │ ├── quote_tweet.png │ ├── reply.png │ └── retweet.png ├── examples │ └── tweet_example.png ├── icons │ ├── barchart.png │ ├── binance.png │ ├── cmc.ico │ ├── coin360.png │ ├── coinbase.png │ ├── coingecko.png │ ├── coinglass.png │ ├── cryptocraft.png │ ├── finviz.png │ ├── investing.png │ ├── kucoin.png │ ├── nasdaqtrader.png │ ├── opensea.png │ ├── playtoearn.png │ ├── reddit.png │ ├── stocktwits.png │ ├── tradingview.png │ ├── twitter.png │ ├── unusualwhales.png │ └── yahoo.png └── logo │ ├── fintwit-banner.png │ ├── fintwit-nobg.png │ ├── fintwit.png │ └── fintwit_old.png ├── pyproject.toml ├── requirements.txt └── src ├── api ├── __init__.py ├── barchart.py ├── benzinga.py ├── binance.py ├── ccxt.py ├── cmc.py ├── coin360.py ├── coingecko.py ├── cryptocraft.py ├── farside.py ├── fear_greed.py ├── http_client.py ├── investing.py ├── nasdaq.py ├── opensea.py ├── play2earn.py ├── reddit.py ├── stocktwits.py ├── timeline.py ├── tradingview.py ├── tradingview_ideas.py ├── twitter.py ├── unusualwhales.py └── yahoo.py ├── cogs ├── __init__.py ├── commands │ ├── __init__.py │ ├── analyze.py │ ├── earnings.py │ ├── help.py │ ├── portfolio.py │ ├── restart.py │ ├── sentiment.py │ └── stock.py ├── listeners │ ├── __init__.py │ ├── on_member_join.py │ └── on_raw_reaction_add.py └── loops │ ├── __init__.py │ ├── assets.py │ ├── earnings_overview.py │ ├── events.py │ ├── funding.py │ ├── funding_heatmap.py │ ├── gainers.py │ ├── ideas.py │ ├── index.py │ ├── liquidations.py │ ├── listings.py │ ├── losers.py │ ├── nfts.py │ ├── overview.py │ ├── rainbow_chart.py │ ├── reddit.py │ ├── rsi_heatmap.py │ ├── sector_snapshot.py │ ├── spy_heatmap.py │ ├── stock_halts.py │ ├── stocktwits.py │ ├── timeline.py │ ├── trades.py │ ├── treemap.py │ ├── trending.py │ └── yield.py ├── constants ├── __init__.py ├── config.py ├── logger.py ├── sources.py ├── stable_coins.py └── tradingview.py ├── main.py ├── models ├── __init__.py ├── chart.py └── sentiment.py ├── scraper.py └── util ├── __init__.py ├── afterhours.py ├── confirm_stock.py ├── db.py ├── disc.py ├── exchange_data.py ├── formatting.py ├── ticker_classifier.py ├── trades_msg.py ├── tweet_embed.py └── vars.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/regular-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/ISSUE_TEMPLATE/regular-issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/black-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/workflows/black-check.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/isort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/workflows/isort.yaml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/config.yaml -------------------------------------------------------------------------------- /curl_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/curl_example.txt -------------------------------------------------------------------------------- /data/bitcoin_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/data/bitcoin_data.csv -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/example.env -------------------------------------------------------------------------------- /img/emojis/binance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/emojis/binance.png -------------------------------------------------------------------------------- /img/emojis/kucoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/emojis/kucoin.png -------------------------------------------------------------------------------- /img/emojis/quote_tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/emojis/quote_tweet.png -------------------------------------------------------------------------------- /img/emojis/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/emojis/reply.png -------------------------------------------------------------------------------- /img/emojis/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/emojis/retweet.png -------------------------------------------------------------------------------- /img/examples/tweet_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/examples/tweet_example.png -------------------------------------------------------------------------------- /img/icons/barchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/barchart.png -------------------------------------------------------------------------------- /img/icons/binance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/binance.png -------------------------------------------------------------------------------- /img/icons/cmc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/cmc.ico -------------------------------------------------------------------------------- /img/icons/coin360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/coin360.png -------------------------------------------------------------------------------- /img/icons/coinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/coinbase.png -------------------------------------------------------------------------------- /img/icons/coingecko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/coingecko.png -------------------------------------------------------------------------------- /img/icons/coinglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/coinglass.png -------------------------------------------------------------------------------- /img/icons/cryptocraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/cryptocraft.png -------------------------------------------------------------------------------- /img/icons/finviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/finviz.png -------------------------------------------------------------------------------- /img/icons/investing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/investing.png -------------------------------------------------------------------------------- /img/icons/kucoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/kucoin.png -------------------------------------------------------------------------------- /img/icons/nasdaqtrader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/nasdaqtrader.png -------------------------------------------------------------------------------- /img/icons/opensea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/opensea.png -------------------------------------------------------------------------------- /img/icons/playtoearn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/playtoearn.png -------------------------------------------------------------------------------- /img/icons/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/reddit.png -------------------------------------------------------------------------------- /img/icons/stocktwits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/stocktwits.png -------------------------------------------------------------------------------- /img/icons/tradingview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/tradingview.png -------------------------------------------------------------------------------- /img/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/twitter.png -------------------------------------------------------------------------------- /img/icons/unusualwhales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/unusualwhales.png -------------------------------------------------------------------------------- /img/icons/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/icons/yahoo.png -------------------------------------------------------------------------------- /img/logo/fintwit-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/logo/fintwit-banner.png -------------------------------------------------------------------------------- /img/logo/fintwit-nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/logo/fintwit-nobg.png -------------------------------------------------------------------------------- /img/logo/fintwit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/logo/fintwit.png -------------------------------------------------------------------------------- /img/logo/fintwit_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/img/logo/fintwit_old.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/barchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/barchart.py -------------------------------------------------------------------------------- /src/api/benzinga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/benzinga.py -------------------------------------------------------------------------------- /src/api/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/binance.py -------------------------------------------------------------------------------- /src/api/ccxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/ccxt.py -------------------------------------------------------------------------------- /src/api/cmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/cmc.py -------------------------------------------------------------------------------- /src/api/coin360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/coin360.py -------------------------------------------------------------------------------- /src/api/coingecko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/coingecko.py -------------------------------------------------------------------------------- /src/api/cryptocraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/cryptocraft.py -------------------------------------------------------------------------------- /src/api/farside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/farside.py -------------------------------------------------------------------------------- /src/api/fear_greed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/fear_greed.py -------------------------------------------------------------------------------- /src/api/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/http_client.py -------------------------------------------------------------------------------- /src/api/investing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/investing.py -------------------------------------------------------------------------------- /src/api/nasdaq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/nasdaq.py -------------------------------------------------------------------------------- /src/api/opensea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/opensea.py -------------------------------------------------------------------------------- /src/api/play2earn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/play2earn.py -------------------------------------------------------------------------------- /src/api/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/reddit.py -------------------------------------------------------------------------------- /src/api/stocktwits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/stocktwits.py -------------------------------------------------------------------------------- /src/api/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/timeline.py -------------------------------------------------------------------------------- /src/api/tradingview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/tradingview.py -------------------------------------------------------------------------------- /src/api/tradingview_ideas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/tradingview_ideas.py -------------------------------------------------------------------------------- /src/api/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/twitter.py -------------------------------------------------------------------------------- /src/api/unusualwhales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/unusualwhales.py -------------------------------------------------------------------------------- /src/api/yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/api/yahoo.py -------------------------------------------------------------------------------- /src/cogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cogs/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cogs/commands/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/commands/analyze.py -------------------------------------------------------------------------------- /src/cogs/commands/earnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/commands/earnings.py -------------------------------------------------------------------------------- /src/cogs/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/commands/help.py -------------------------------------------------------------------------------- /src/cogs/commands/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/commands/portfolio.py -------------------------------------------------------------------------------- /src/cogs/commands/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/commands/restart.py -------------------------------------------------------------------------------- /src/cogs/commands/sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/commands/sentiment.py -------------------------------------------------------------------------------- /src/cogs/commands/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/commands/stock.py -------------------------------------------------------------------------------- /src/cogs/listeners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cogs/listeners/on_member_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/listeners/on_member_join.py -------------------------------------------------------------------------------- /src/cogs/listeners/on_raw_reaction_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/listeners/on_raw_reaction_add.py -------------------------------------------------------------------------------- /src/cogs/loops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cogs/loops/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/assets.py -------------------------------------------------------------------------------- /src/cogs/loops/earnings_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/earnings_overview.py -------------------------------------------------------------------------------- /src/cogs/loops/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/events.py -------------------------------------------------------------------------------- /src/cogs/loops/funding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/funding.py -------------------------------------------------------------------------------- /src/cogs/loops/funding_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/funding_heatmap.py -------------------------------------------------------------------------------- /src/cogs/loops/gainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/gainers.py -------------------------------------------------------------------------------- /src/cogs/loops/ideas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/ideas.py -------------------------------------------------------------------------------- /src/cogs/loops/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/index.py -------------------------------------------------------------------------------- /src/cogs/loops/liquidations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/liquidations.py -------------------------------------------------------------------------------- /src/cogs/loops/listings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/listings.py -------------------------------------------------------------------------------- /src/cogs/loops/losers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/losers.py -------------------------------------------------------------------------------- /src/cogs/loops/nfts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/nfts.py -------------------------------------------------------------------------------- /src/cogs/loops/overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/overview.py -------------------------------------------------------------------------------- /src/cogs/loops/rainbow_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/rainbow_chart.py -------------------------------------------------------------------------------- /src/cogs/loops/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/reddit.py -------------------------------------------------------------------------------- /src/cogs/loops/rsi_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/rsi_heatmap.py -------------------------------------------------------------------------------- /src/cogs/loops/sector_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/sector_snapshot.py -------------------------------------------------------------------------------- /src/cogs/loops/spy_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/spy_heatmap.py -------------------------------------------------------------------------------- /src/cogs/loops/stock_halts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/stock_halts.py -------------------------------------------------------------------------------- /src/cogs/loops/stocktwits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/stocktwits.py -------------------------------------------------------------------------------- /src/cogs/loops/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/timeline.py -------------------------------------------------------------------------------- /src/cogs/loops/trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/trades.py -------------------------------------------------------------------------------- /src/cogs/loops/treemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/treemap.py -------------------------------------------------------------------------------- /src/cogs/loops/trending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/trending.py -------------------------------------------------------------------------------- /src/cogs/loops/yield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/cogs/loops/yield.py -------------------------------------------------------------------------------- /src/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/constants/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/constants/config.py -------------------------------------------------------------------------------- /src/constants/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/constants/logger.py -------------------------------------------------------------------------------- /src/constants/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/constants/sources.py -------------------------------------------------------------------------------- /src/constants/stable_coins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/constants/stable_coins.py -------------------------------------------------------------------------------- /src/constants/tradingview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/constants/tradingview.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/main.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/models/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/models/chart.py -------------------------------------------------------------------------------- /src/models/sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/models/sentiment.py -------------------------------------------------------------------------------- /src/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/scraper.py -------------------------------------------------------------------------------- /src/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/util/afterhours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/afterhours.py -------------------------------------------------------------------------------- /src/util/confirm_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/confirm_stock.py -------------------------------------------------------------------------------- /src/util/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/db.py -------------------------------------------------------------------------------- /src/util/disc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/disc.py -------------------------------------------------------------------------------- /src/util/exchange_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/exchange_data.py -------------------------------------------------------------------------------- /src/util/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/formatting.py -------------------------------------------------------------------------------- /src/util/ticker_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/ticker_classifier.py -------------------------------------------------------------------------------- /src/util/trades_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/trades_msg.py -------------------------------------------------------------------------------- /src/util/tweet_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/tweet_embed.py -------------------------------------------------------------------------------- /src/util/vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/HEAD/src/util/vars.py --------------------------------------------------------------------------------