Finance Subreddits
Collections of posts of the major finance subreddits
@kaggle.paolodelia_finance_subreddits
Collections of posts of the major finance subreddits
@kaggle.paolodelia_finance_subreddits
Interested in text data about financial topics? That's the dataset for you! In this dataset, I've group posts from the major finance subreddits (r/investing, r/finance, r/options, ...)
Reddit posts from various subreddits, downloaded using praw (The Python Reddit API Wrapper) and the pushshift API.
How can I use all this data?
CREATE TABLE algotrading_subreddit (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"title" VARCHAR,
"url" VARCHAR,
"created_utc" BIGINT,
"score" BIGINT,
"num_comments" BIGINT,
"selftext" VARCHAR
);CREATE TABLE finance_subreddit (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"title" VARCHAR,
"url" VARCHAR,
"created_utc" DOUBLE,
"score" DOUBLE,
"num_comments" DOUBLE,
"selftext" VARCHAR
);CREATE TABLE investing_subreddit (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"title" VARCHAR,
"url" VARCHAR,
"created_utc" DOUBLE,
"score" DOUBLE,
"num_comments" DOUBLE,
"selftext" VARCHAR
);CREATE TABLE options_subreddit (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"title" VARCHAR,
"url" VARCHAR,
"created_utc" BIGINT,
"score" BIGINT,
"num_comments" BIGINT,
"selftext" VARCHAR
);CREATE TABLE stockmarket_subreddit (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"title" VARCHAR,
"url" VARCHAR,
"created_utc" BIGINT,
"score" BIGINT,
"num_comments" BIGINT,
"selftext" VARCHAR
);Anyone who has the link will be able to view this.