Tweets

The tweets collection contains the tweets across all users and stocks. Below is the general schema for tweets:

{
    '_id': String,
    'symbol': String,
    'user': String,
    'time': Datetime,
    'is_bull': Boolean,
    'likes_count': Int,
    'comment_count': Int,
    'message': String
}

Here is an example tweet:

{
    '_id': 66950933530892,
    'symbol': 'AAPL',
    'user': 'drknature',
    'time': 2019-06-06T12:32:00.000+00:00,
    'is_bull': Boolean,
    'likes_count': 3,
    'comment_count': 5,
    'message': 'Stocks only go up'
}

Last updated