forked from bkrai/R-files-from-YouTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aapl_NOV_2021.csv
We can't make this file beautiful and searchable because it's too large.
9442 lines (7474 loc) · 933 KB
/
aapl_NOV_2021.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"text","favorited","favoriteCount","replyToSN","created","truncated","replyToSID","id","replyToUID","statusSource","screenName","retweetCount","isRetweet","retweeted","longitude","latitude"
"Hold on $EBAY is about to PUMP $F $NVDA $META $AAPL https://t.co/eqnOBoACZJ",FALSE,0,NA,2021-11-04 21:23:58,FALSE,NA,"1456371668138532874",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","dramatrading",0,FALSE,FALSE,NA,NA
"Profitable Crypto Trading Group
$BTC $BABA $GOOGL $AXP $AMZN $AAPL $BIDU $BYND $BLK $CEI $WMT $V $SPCE $UBER $TWTR… https://t.co/yHHQgd5sIz",FALSE,2,NA,2021-11-04 21:20:18,TRUE,NA,"1456370746247168012",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Jackmor98705125",0,FALSE,FALSE,NA,NA
"$mara $fsr $wkhs $tsla $bbig $aal $gme $fb $aapl $coin $msft $pltr $amd $sos $btbt $riot $fubo $amc $penn $dwac… https://t.co/alaZpMQKuG",FALSE,0,NA,2021-11-04 21:20:00,TRUE,NA,"1456370669105528849",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Right__Stocks",0,FALSE,FALSE,NA,NA
"It is now clear: $aapl is under attack by bears. Dan Niles led the race to the bottom today. this is a very manipul… https://t.co/HxxjFeBrNV",FALSE,0,NA,2021-11-04 21:19:56,TRUE,NA,"1456370654857637898",NA,"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","AladinTrade",0,FALSE,FALSE,NA,NA
"RT @JakeWottonFit: Excited for payday Tomorrow, already thinking about my investments.
This month will be the most I’ve ever invested in…",FALSE,0,NA,2021-11-04 21:19:13,FALSE,NA,"1456370473403666435",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","sideincome_s",9,TRUE,FALSE,NA,NA
"$Uber Loss Per Share Misses Hugely Even Though We Saw $Didi Coming
$aapl $amzn $abbv $brk $ba $bhc $crm $cmg $hlf… https://t.co/0bwdUpkNME",FALSE,0,NA,2021-11-04 21:19:12,TRUE,NA,"1456370468706045953",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","firestone_brian",0,FALSE,FALSE,NA,NA
"My portfolio: $ASML 14.5%, $MSFT 12%, $AAPL 10.5%, $BABA 9.8%, $MSTR 7.20%, $AMZN 4,80%, $TSM 4.2%, $NVDA $CRWD… https://t.co/aSfTvefvjK",FALSE,0,"Auphelle",2021-11-04 21:19:06,TRUE,"1433475925023379463","1456370444181848068","629275533","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Auphelle",0,FALSE,FALSE,NA,NA
"$AMD More upside like the previous
MEGA RUN from 7/27/2021 Earnings
AMD trades @145.00 to 150.00
Market closed o… https://t.co/6z1WEgqIU5",FALSE,0,NA,2021-11-04 21:19:01,TRUE,NA,"1456370422400708608",NA,"<a href=""https://gift-feed.com"" rel=""nofollow"">Twitter-Feed-Bot</a>","gift_feed",0,FALSE,FALSE,NA,NA
"Have a bad earnings report this quarter?
Blame $AAPL privacy changes
$PTON",FALSE,1,NA,2021-11-04 21:18:43,FALSE,NA,"1456370345716371457",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","dagetz",0,FALSE,FALSE,NA,NA
"Yes, the 16-inch MacBook Pro is as good as you've heard https://t.co/vTH4N359Cs $AAPL https://t.co/W2iQoOOruS",FALSE,0,NA,2021-11-04 21:18:06,FALSE,NA,"1456370191760195585",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"RT @WaitCapital: Tomorrow $AAPL goes up 10%. You heard it here first.
🙄",FALSE,0,NA,2021-11-04 21:17:07,FALSE,NA,"1456369946414366730",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","muckbearpig",1,TRUE,FALSE,NA,NA
"@WaitCapital No big call flow today, so $aapl unlikely to get squeezed. Itll be amazon again if they keep pumping.… https://t.co/a15TJ98TU2",FALSE,0,"WaitCapital",2021-11-04 21:16:18,TRUE,"1456351704639840263","1456369740415442945","998910748054179840","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Btwice2",0,FALSE,FALSE,NA,NA
"RT @duraku_suart: Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of $AAPL! I…",FALSE,0,NA,2021-11-04 21:15:13,FALSE,NA,"1456369468356104192",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RyoshiWhale",1,TRUE,FALSE,NA,NA
"RT @AAPLinsights: 🔥🔥 Automated Hourly $AAPL 🍎 Sentiment Report (📈 / 📉) 🔥🔥
1. Product Series Reviews:
#iPhones 89/81
#Mac #Macbook 75/132
#i…",FALSE,0,NA,2021-11-04 21:15:06,FALSE,NA,"1456369435183173635",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Tech-bot_487</a>","coder_487",2,TRUE,FALSE,NA,NA
"$W $JAGX $BYFC $BOXL $AAPL
""Not only do you get alerts from top traders at Xtrades-net, but you can alert your own… https://t.co/jfFzcBCeov",FALSE,0,NA,2021-11-04 21:15:00,TRUE,NA,"1456369410915045377",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BreanaDare",0,FALSE,FALSE,NA,NA
"$Uber Duber Doesn't, Again.
$aapl $amzn $abbv $brk $ba $bhc $crm $cmg $hlf $iep $msft $ms $gs $jpm $bac $c $cs $f… https://t.co/CQgtxmqG8G",FALSE,0,NA,2021-11-04 21:14:53,TRUE,NA,"1456369382423252993",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","firestone_brian",0,FALSE,FALSE,NA,NA
"@reshoftc I think the hardware needs to be the first form of adoption. I think that will come from $FB $AAPL or… https://t.co/SxxJAR7VVY",FALSE,0,"reshoftc",2021-11-04 21:14:23,TRUE,"1456313245556527116","1456369256375808004","1060400768","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MarketMajor1",0,FALSE,FALSE,NA,NA
"$AAPL settled -0.3% to $150.96. Minor green gap filled. Cyclically... cooling. 50dma $147s... looks pretty easy wit… https://t.co/hk3sGaMnEN",FALSE,1,NA,2021-11-04 21:13:44,TRUE,NA,"1456369092399673348",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Trading_Sunset",0,FALSE,FALSE,NA,NA
"Update $AAPL :
Last minutes panicked sellers will not Change the uptrend direction!
We still good, I do believe… https://t.co/O9Xh27rYV9",FALSE,0,NA,2021-11-04 21:12:54,TRUE,NA,"1456368884991287301",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","F_0TB",0,FALSE,FALSE,NA,NA
"RT @AzirStocks: After spending 1 on 1 with @AdamSliverTrade , today was a day for trying his strategy!
Didn’t get in unless they cross th…",FALSE,0,NA,2021-11-04 21:12:28,FALSE,NA,"1456368775293513730",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","eMotion22424257",2,TRUE,FALSE,NA,NA
"Top 5 Brokers For New Traders (by User Rating). Can you guess what #1 is?
https://t.co/oKHM6GCCgT
$FB $ATVI $CRM… https://t.co/hunaLQTWYv",FALSE,0,NA,2021-11-04 21:12:27,TRUE,NA,"1456368770499416067",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","stocktraderjack",0,FALSE,FALSE,NA,NA
"Interesting how $spy ran into the close while $aapl came down",FALSE,3,NA,2021-11-04 21:12:10,FALSE,NA,"1456368698399334406",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Toptiertradez",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 21:11:11,FALSE,NA,"1456368453212942341",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Mike65462413",10,TRUE,FALSE,NA,NA
"I remember $pton had so much demand but not enough supply and it was super bullish ripping ATH every other day… wil… https://t.co/ngwP7rFpxA",FALSE,0,NA,2021-11-04 21:11:04,TRUE,NA,"1456368421478748162",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","jbranchini1",0,FALSE,FALSE,NA,NA
"RT @TradingForGod: $SOFI WARRANTS EXECUTING TIME TO FLY TO $30+
$TSLA $NVDA $IWM $FB $LCID $AMD $F $X $UAVS $BEST $AAPL $PLUG $NIO $XLE $M…",FALSE,0,NA,2021-11-04 21:10:24,FALSE,NA,"1456368253962383360",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Sofigoodboy",1,TRUE,FALSE,NA,NA
"@cperruna @BahamaBen9 is it me or most ""growth"" investors are having a hard time these days, $fb, $pton, $z, $aapl,… https://t.co/Ol7YT2lT5H",FALSE,0,"cperruna",2021-11-04 21:10:05,TRUE,"1456364862498648072","1456368173410762761","27771267","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","hugocesar87",0,FALSE,FALSE,NA,NA
"$AAPL People are naive to think that apple is gonna sit here while rest of the tech making new ATH. This is an oppo… https://t.co/HhrlfY9baz",FALSE,0,NA,2021-11-04 21:09:14,TRUE,NA,"1456367961145368576",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","VikTrades",0,FALSE,FALSE,NA,NA
"RT @AAPLinsights: 🔥🔥 Automated Hourly $AAPL 🍎 Sentiment Report (📈 / 📉) 🔥🔥
1. Product Series Reviews:
#iPhones 89/81
#Mac #Macbook 75/132
#i…",FALSE,0,NA,2021-11-04 21:08:25,FALSE,NA,"1456367755213611011",NA,"<a href=""https://vir0z4.com"" rel=""nofollow"">Apple Retweet Bot</a>","AppleRetweetBot",2,TRUE,FALSE,NA,NA
"@MarketRebels That $aapl call worked out well",FALSE,0,"MarketRebels",2021-11-04 21:08:03,FALSE,"1456360321568882689","1456367663194775556","817007725666242561","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","jbranchini1",0,FALSE,FALSE,NA,NA
"🔥🔥 Automated Hourly $AAPL 🍎 Sentiment Report (📈 / 📉) 🔥🔥
1. Product Series Reviews:
#iPhones 89/81
#Mac #Macbook 75/… https://t.co/RuFPLSFPd2",FALSE,1,NA,2021-11-04 21:07:43,TRUE,NA,"1456367577161089039",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">AAPL Insight</a>","AAPLinsights",2,FALSE,FALSE,NA,NA
"RT @IGSquawk: FANG+ Constituents:
$AAPL 150.98 -0.33%
$AMZN 3473.77 +2.64%
$BABA 164.97 -0.69%
$BIDU 162.69 -1.64%
$FB 335.95 +1.28%
$GOOG…",FALSE,0,NA,2021-11-04 21:06:35,FALSE,NA,"1456367292623818761",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","dartgunintel",3,TRUE,FALSE,NA,NA
"Top tweeted stocks:
$NVDA $TSLA $AMD $AMZN $LCID $DKNG $FSLY $ROKU $PENN $SQ $NIO $APPS $SPX $UPST $UBER $AFRM… https://t.co/jhW4ju3grF",FALSE,0,NA,2021-11-04 21:06:05,TRUE,NA,"1456367167029460995",NA,"<a href=""https://twitter.com/StockmanDuck"" rel=""nofollow"">StockmanDuck</a>","StockmanDuck",0,FALSE,FALSE,NA,NA
"#Options #maxpain chart for $AAPL. Free options app https://t.co/EQL2cBOq5n https://t.co/WAoDw87yp9",FALSE,0,NA,2021-11-04 21:05:37,FALSE,NA,"1456367052411727876",NA,"<a href=""https://appsto.re/us/viPH2.i"" rel=""nofollow"">OptionsMaxPain_Post</a>","OptionsMaxPain",0,FALSE,FALSE,NA,NA
"RT @me_invest_corp: Most active after close: $QCOM : 13.45% $PROG : 12.38% $AAPL : -0.18% $PETZ : 28.69% $OCGN : -23.06% $SAVA : 34.26% $LU…",FALSE,0,NA,2021-11-04 21:04:44,FALSE,NA,"1456366827475451907",NA,"<a href=""https://dennis.services"" rel=""nofollow"">69NiceBot69</a>","69NiceBot69",1,TRUE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 21:03:53,FALSE,NA,"1456366615554109442",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","iInvest__",10,TRUE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 21:02:36,FALSE,NA,"1456366293381156873",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","spy_yd",2448,TRUE,FALSE,NA,NA
"$fcel #yesil $sushi spurs $aapl amir $zim only fans $jupw yoona #megap $blok $qnt prediction #kozal $rare xbox game… https://t.co/UByVgQK2jX",FALSE,0,NA,2021-11-04 21:01:22,TRUE,NA,"1456365980364455939",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","WeaselMomma",0,FALSE,FALSE,NA,NA
"Most active after close: $QCOM : 13.45% $PROG : 12.38% $AAPL : -0.18% $PETZ : 28.69% $OCGN : -23.06% $SAVA : 34.26%… https://t.co/08f9xa628h",FALSE,1,NA,2021-11-04 21:01:04,TRUE,NA,"1456365904258863106",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">me-invest</a>","me_invest_corp",1,FALSE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 21:00:54,FALSE,NA,"1456365863003725831",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","mintspeaks",2448,TRUE,FALSE,NA,NA
"RT @WsbmodR: $PINS has good amount of short & puts. It had more put than call options. Huge dark pool shorting .
Gamma Squeeze + Short Sq…",FALSE,0,NA,2021-11-04 21:00:21,FALSE,NA,"1456365723463430144",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Ccash561",1,TRUE,FALSE,NA,NA
"Apple's M1 Pro vs. M1 Max: Real-world performance test https://t.co/7ALeoOfe12 $AAPL",FALSE,0,NA,2021-11-04 20:59:32,FALSE,NA,"1456365519473287169",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"$PTON 🔥🚀83% institution holding. Large short float! Bounce to 75$! LOAD! #ApesTogetherStrong
#wallstreetbets… https://t.co/dZ9RLY2bje",FALSE,0,NA,2021-11-04 20:59:28,TRUE,NA,"1456365502855581698",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RunHot1",0,FALSE,FALSE,NA,NA
"$TSLA
$2000
stock split info out
$CEI $DATS $UAMY $FAMI $PROG $BBIG $ANY $SPY $TSLA $FSR $LCID $AAPL $FB $SNAP… https://t.co/54WJfQ7udP",FALSE,0,NA,2021-11-04 20:59:28,TRUE,NA,"1456365501177679873",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","peasantK1NG",0,FALSE,FALSE,NA,NA
"$SOFI WARRANTS EXECUTING TIME TO FLY TO $30+
$TSLA $NVDA $IWM $FB $LCID $AMD $F $X $UAVS $BEST $AAPL $PLUG $NIO… https://t.co/CMZudnfswW",FALSE,1,NA,2021-11-04 20:58:38,TRUE,NA,"1456365292418842648",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingForGod",1,FALSE,FALSE,NA,NA
"$PINS has good amount of short & puts. It had more put than call options. Huge dark pool shorting .
Gamma Squeeze… https://t.co/laCbS2pVqs",FALSE,0,NA,2021-11-04 20:57:54,TRUE,NA,"1456365110490918940",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","WsbmodR",1,FALSE,FALSE,NA,NA
"$PINS has good amount of short and puts. It had more put than call options. Huge dark pool shorting .
Gamma Squee… https://t.co/eW6T8zP8Gi",FALSE,0,NA,2021-11-04 20:57:44,TRUE,NA,"1456365066333286414",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","WsbmodR",0,FALSE,FALSE,NA,NA
"$PINS has good amount of short and puts. It had more put than call options. Huge dark pool shorting .
Gamma Squee… https://t.co/TREEicmShk",FALSE,0,NA,2021-11-04 20:57:35,TRUE,NA,"1456365029939310624",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","WsbmodR",0,FALSE,FALSE,NA,NA
"Bullish earnings. We were on the right side of this one for some nice gains.""
$SSPK $SUNW $SVVC $SZK $THBR $TWM… https://t.co/CdVAu7gXGk",FALSE,0,NA,2021-11-04 20:57:28,TRUE,NA,"1456364998981152771",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","SheldonKooper7",0,FALSE,FALSE,NA,NA
"The Coming Teleshock Will Transform the U.S. Economy $AAPL $MSFT https://t.co/ZCBXCxZFmt",FALSE,0,NA,2021-11-04 20:57:15,FALSE,NA,"1456364945210318850",NA,"<a href=""https://newsfilter.io"" rel=""nofollow"">Newsfilter.io</a>","newsfilterio",0,FALSE,FALSE,NA,NA
"Start trading 6months ago and made 5k to $49k Big thanks to this
$AMZN $FB $LOVE $WORK $AAPL $AMD $MNTA $GLD $TWR… https://t.co/Qlx9PnMvOW",FALSE,0,NA,2021-11-04 20:56:48,TRUE,NA,"1456364830403686420",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","SheldonKooper7",0,FALSE,FALSE,NA,NA
"RT @AdamSliverTrade: 11/4 Results 🏆
$AAPL - Very brief call trigger. Choppy.
$LCID 40c - .39 ➡️ .49 ✅ 25%
(Very quick move, mostly chop t…",FALSE,0,NA,2021-11-04 20:56:19,FALSE,NA,"1456364711562276898",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","THEICETRADES",2,TRUE,FALSE,NA,NA
"RT @MarketRebels: $AAPL planning to discontinue mask mandates for customers beginning Friday",FALSE,0,NA,2021-11-04 20:55:32,FALSE,NA,"1456364511196336131",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","JonLong12392690",14,TRUE,FALSE,NA,NA
"11/4 Results 🏆
$AAPL - Very brief call trigger. Choppy.
$LCID 40c - .39 ➡️ .49 ✅ 25%
(Very quick move, mostly cho… https://t.co/lJ4ahdm8rx",FALSE,27,NA,2021-11-04 20:55:20,TRUE,NA,"1456364460843708419",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AdamSliverTrade",2,FALSE,FALSE,NA,NA
"RT @trading_pof: An awesome doubler on $AMD in just under an hour!
Join us at https://t.co/quCDPm3lFM and enjoy your 1st month #FREE!
$AA…",FALSE,0,NA,2021-11-04 20:54:54,FALSE,NA,"1456364353872187395",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","mmptrades1",2,TRUE,FALSE,NA,NA
"RT @IGSquawk: FANG+ Constituents:
$AAPL 150.98 -0.33%
$AMZN 3473.77 +2.64%
$BABA 164.97 -0.69%
$BIDU 162.69 -1.64%
$FB 335.95 +1.28%
$GOOG…",FALSE,0,NA,2021-11-04 20:54:49,FALSE,NA,"1456364332728606725",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","robertojirusta",3,TRUE,FALSE,NA,NA
"@JimJame74888138 Today was the first time $VIX perked up meaningfully as we made new ATHs. Big blocks of $MSFT and… https://t.co/xAh69HNJfX",FALSE,0,"JimJame74888138",2021-11-04 20:54:44,TRUE,"1456362566540795914","1456364313032093720","1329405770224570368","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","gr8fultrading",0,FALSE,FALSE,NA,NA
"Given $tsla, a $10 $aapl AH run would not surprise.",FALSE,0,NA,2021-11-04 20:54:30,FALSE,NA,"1456364254081265670",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","apwriter",0,FALSE,FALSE,NA,NA
"$TQQQ, $AMZN, $NVDA, $GOOG, $UPRO, $F, $AMD, $MU, and $COIN were all winners today, $COIN, $NFLX, $AAPL, and $ETH l… https://t.co/c4VnNnXFbQ",FALSE,0,NA,2021-11-04 20:54:23,TRUE,NA,"1456364222124859398",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradeableCap",0,FALSE,FALSE,NA,NA
"Unusual Options Activity $NVDA $BKKT $CCJ $QCOM $F $BMRN $KR $TSLA $V $BBY $KO $EBAY $AMD $NIO $BBBY $ROKU $AAPL… https://t.co/Lc4vAZnss4",FALSE,1,NA,2021-11-04 20:54:16,TRUE,NA,"1456364193217605641",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TeresaTrades",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/DP2QcV6CQh",FALSE,0,NA,2021-11-04 20:52:43,TRUE,NA,"1456363805596954628",NA,"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","gigstarr",0,FALSE,FALSE,NA,NA
"Look like legit traders include this chat and making profits. FREE Check out now...
$NVDA $TVIX $NVAX $UVXY $WFC… https://t.co/9COM7Hl8ob",FALSE,0,NA,2021-11-04 20:52:38,TRUE,NA,"1456363784365240320",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"$LYFT IN TALKS WITH $TSLA FOR MAJOR
$2.4BILLION CASH #TESLA #EV CASH PURCHASE
🚀🇺🇸
https://t.co/MghrTYD2wq $VALE… https://t.co/sI37jeU2YF",FALSE,0,NA,2021-11-04 20:52:35,TRUE,NA,"1456363769936834573",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","PesseMessy",0,FALSE,FALSE,NA,NA
"RT @IGSquawk: FANG+ Constituents:
$AAPL 150.98 -0.33%
$AMZN 3473.77 +2.64%
$BABA 164.97 -0.69%
$BIDU 162.69 -1.64%
$FB 335.95 +1.28%
$GOOG…",FALSE,0,NA,2021-11-04 20:52:32,FALSE,NA,"1456363758230593541",NA,"<a href=""https://dennis.services"" rel=""nofollow"">69NiceBot69</a>","69NiceBot69",3,TRUE,FALSE,NA,NA
"$FB 325C $5.20-$14.50 (178%) TRIM & HOLD $340 Break Coming
HOW TO SUBSCRIBE 👇
https://t.co/NAFHzLLG03… https://t.co/cpSSM19d9A",FALSE,0,NA,2021-11-04 20:52:25,TRUE,NA,"1456363727255711746",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Atlas_options",0,FALSE,FALSE,NA,NA
"FANG+ Constituents:
$AAPL 150.98 -0.33%
$AMZN 3473.77 +2.64%
$BABA 164.97 -0.69%
$BIDU 162.69 -1.64%
$FB 335.95 +1… https://t.co/pm9ZSps2ER",FALSE,4,NA,2021-11-04 20:52:21,TRUE,NA,"1456363711875137544",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","IGSquawk",3,FALSE,FALSE,NA,NA
"STOCK, OPTIONS updates, alerts Free chatroom
Don't forget to take a trial!
$SPY $BABA $DVAX $ACB $OSTK $TRIL… https://t.co/JMmmeZ6lGo",FALSE,0,NA,2021-11-04 20:52:21,TRUE,NA,"1456363711468236813",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"Another great week! I made over 66k, A big thank you
$POLA $AAPL $NETE $TSLA $OEG $SPI $AAL $QQQ $ADXS $CBAT $AMD… https://t.co/GzfSQGFDLG",FALSE,0,NA,2021-11-04 20:51:04,TRUE,NA,"1456363389945475086",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"RT @charliebilello: Apple has bought back $435 billion in stock over the past 8 years, which is greater than the market cap of 490 companie…",FALSE,0,NA,2021-11-04 20:50:45,FALSE,NA,"1456363310421512196",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","JohnKaplanidis",210,TRUE,FALSE,NA,NA
"Look like legit traders include this chat and making profits. FREE Check out now..
$LOMA $DZSI $LAC $VOXX $SWBI… https://t.co/ctcgljWgw6",FALSE,0,NA,2021-11-04 20:50:45,TRUE,NA,"1456363310320807988",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"Live Day-Trading room, Free access this room and get live alerts. Check out now..
$SUNW $JE $POLA $AAPL $SQQQ… https://t.co/zVLRNVtWft",FALSE,0,NA,2021-11-04 20:50:32,TRUE,NA,"1456363254314266626",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"Most active Trading Group 💯
Alerts,Analysis
Stocks ☑️
Options ✅
Day trading ✅
Swing Trading ☑️
🔥
$SPY $TSLA… https://t.co/IvYYdaOiVe",FALSE,0,NA,2021-11-04 20:50:13,TRUE,NA,"1456363172948963344",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Most Traded Contracts
$AAPL 5 November $152.50 Call
$NVDA 5 November $300 Call
$AAPL 5 November $130 Call
$F 5 November…",FALSE,0,NA,2021-11-04 20:50:00,FALSE,NA,"1456363121635905545",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","goofmarlet2",5,TRUE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/2LqiQnf609",FALSE,0,NA,2021-11-04 20:49:51,TRUE,NA,"1456363083429994496",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","joalroal",0,FALSE,FALSE,NA,NA
"Notable that the 2 lowest growth companies had the most sentiment change and the best 5 year return. Might ruffle s… https://t.co/ycTMtbGjEv",FALSE,15,NA,2021-11-04 20:49:49,TRUE,NA,"1456363074986913800",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","LiviamCapital",0,FALSE,FALSE,NA,NA
"RT @defichain: $TSLA $AAPL $AMZN there is no limit!
Pick your 3 favorite stocks 👇 https://t.co/qVrO81avN2",FALSE,0,NA,2021-11-04 20:49:44,FALSE,NA,"1456363052710998017",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","planic0815",37,TRUE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 20:49:24,FALSE,NA,"1456362968778690565",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","F1LOVINGFOODIE",2448,TRUE,FALSE,NA,NA
"... @eric_seufert on $aapl's brazen disadvantaging of its SKAdNetwork for 3rd parties vs its proprietary Apple Sear… https://t.co/QnifhQgo1m",FALSE,3,"AnthPB",2021-11-04 20:49:19,TRUE,"1415401413224669185","1456362947111006212","3013702747","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AnthPB",0,FALSE,FALSE,NA,NA
"I was able to pay off my student loans with a trade on $AMZN ! I can't thank this discord community enough for prac… https://t.co/VYzi81KWpN",FALSE,0,NA,2021-11-04 20:48:23,TRUE,NA,"1456362712171114517",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","vanhiha",0,FALSE,FALSE,NA,NA
"$viac
All the phd's think that even if theory of PARTIAL relativity is UNWILLINGLY applied to $VIAC then it should… https://t.co/bJYBZZmnLE",FALSE,0,NA,2021-11-04 20:48:08,TRUE,NA,"1456362652016406565",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","KrayaV",0,FALSE,FALSE,NA,NA
"Have a quick look over charts in AH, and tell me what did you find, no exception, all stocks. 😂😂
$AMZN
$SPY
$AAPL… https://t.co/VwK66qkDBZ",FALSE,0,NA,2021-11-04 20:48:05,TRUE,NA,"1456362638116626433",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","UNSAMIl",0,FALSE,FALSE,NA,NA
"$AAPL #Options OI chart. Free stock apps https://t.co/7Rm8mjs1IV https://t.co/tNaVGeUDoa",FALSE,0,NA,2021-11-04 20:47:51,FALSE,NA,"1456362577831751683",NA,"<a href=""https://appsto.re/us/viPH2.i"" rel=""nofollow"">OptionsProOI</a>","OptionsProOI",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 20:47:44,FALSE,NA,"1456362549222404102",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","DeadSna07022014",10,TRUE,FALSE,NA,NA
"Profitable Crypto Trading Group
$BTC $BABA $GOOGL $AXP $AMZN $AAPL $BIDU $BYND $BLK $CEI $WMT $V $SPCE $UBER $TWTR… https://t.co/p1BLPXOvPF",FALSE,0,NA,2021-11-04 20:47:37,TRUE,NA,"1456362520692748305",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","William46266251",0,FALSE,FALSE,NA,NA
"$AAPL stalling for now but feeling is this gets moving very soon https://t.co/bKc7ickT0c",FALSE,3,NA,2021-11-04 20:47:18,FALSE,NA,"1456362442678751233",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","Chrisaltisanti",0,FALSE,FALSE,NA,NA
"The discord server has saved my account and turned trading into my full time job! Up over 25k this month on $AMZN c… https://t.co/Zcw8Tujem3",FALSE,0,NA,2021-11-04 20:46:26,TRUE,NA,"1456362224088338433",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","vanhiha",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 20:45:46,FALSE,NA,"1456362056509177857",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","CapitalArias",10,TRUE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 20:44:57,FALSE,NA,"1456361849352605698",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","LiveSquawk",10,TRUE,FALSE,NA,NA
"RT @legendaryTuna: @defichain sry $TSLA and $AAPL, I am going with $AMZN, $BLK and $GOOGL 😉✌️",FALSE,0,NA,2021-11-04 20:44:41,FALSE,NA,"1456361784416382982",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","SmartCrypto78",3,TRUE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 20:44:32,FALSE,NA,"1456361744847224836",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","petenajarian",10,TRUE,FALSE,NA,NA
"Not all crypto currencies are created equal.
#money #millionaire #growth #mindset #investing #cryptocurrencies… https://t.co/MBxq1tRrMA",FALSE,0,NA,2021-11-04 20:44:30,TRUE,NA,"1456361734743240704",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","RobMcCarthyJr",0,FALSE,FALSE,NA,NA
"RT @BunkerHedging: Didn't manage to update recently. Long $ZM (2/11), LONG $AAPL (3/11), LONG $JNJ (2/11)",FALSE,0,NA,2021-11-04 20:44:27,FALSE,NA,"1456361721992450049",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BunkerHedging",1,TRUE,FALSE,NA,NA
"Another great day. Relaxing 🔥. Maybe we should make a #lottofriday Algo. @ECTstocksroom $spy $spx $qqq $iwm $aapl… https://t.co/GVQHEhxWNG",FALSE,3,NA,2021-11-04 20:44:18,TRUE,NA,"1456361687788003343",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","elitecaptrader",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Most Traded Contracts
$AAPL 5 November $152.50 Call
$NVDA 5 November $300 Call
$AAPL 5 November $130 Call
$F 5 November…",FALSE,0,NA,2021-11-04 20:44:16,FALSE,NA,"1456361677763620867",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","jonnajarian",5,TRUE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 20:43:54,FALSE,NA,"1456361584947867655",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","theoptionoracle",10,TRUE,FALSE,NA,NA
"Just because someone who’s been holding longer than you took profit at an ATH don’t mean said project is a scam.… https://t.co/5o4DvaYlDS",FALSE,3,NA,2021-11-04 20:43:27,TRUE,NA,"1456361473341542400",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Cryptomaniac_69",0,FALSE,FALSE,NA,NA
"Pinterest Gains After Reporting Profit That Tops Estimates $PYPL $AAPL $PINS https://t.co/WzyiZA6lwv",FALSE,1,NA,2021-11-04 20:43:15,FALSE,NA,"1456361421894209543",NA,"<a href=""https://newsfilter.io"" rel=""nofollow"">Newsfilter.io</a>","newsfilterio",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/jnCcAvknqH",FALSE,0,NA,2021-11-04 20:42:18,TRUE,NA,"1456361182344867865",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Fizzleish",0,FALSE,FALSE,NA,NA
"So $AAPL revs dropped as they can’t meet demand b/c of supply chain so do you think a bike with a cheap ipad, low d… https://t.co/fP579PxPxe",FALSE,2,NA,2021-11-04 20:41:10,TRUE,NA,"1456360895894876177",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","GREAT_EETS",0,FALSE,FALSE,NA,NA
"Best USB-C and Thunderbolt displays for Mac [November] https://t.co/xhBZZh1eKQ $AAPL https://t.co/hn6uWDAUDw",FALSE,0,NA,2021-11-04 20:41:03,FALSE,NA,"1456360869365903360",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 20:40:29,FALSE,NA,"1456360727241973763",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","fightandtrade",10,TRUE,FALSE,NA,NA
"$mara $fsr $tsla $bbig $gme $fb $aapl $riot $sndl $nio $coin $msft $wkhs $pltr $amd $sos $dkng $mvis $btbt $nakd… https://t.co/LmqqudXGjg",FALSE,0,NA,2021-11-04 20:40:00,TRUE,NA,"1456360602784329733",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Right__Stocks",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18% put)…",FALSE,0,NA,2021-11-04 20:39:52,FALSE,NA,"1456360569250922501",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Leop5182",10,TRUE,FALSE,NA,NA
"RT @LimitlessT1: Another solid day!💪
$AMZN 3450c 8.70 --> 17.50 🚀
$TGT 262.50c 2.89 --> 3.45 🔥
$FB 340c (still holding)
$AAPL 152.50c 🔽…",FALSE,0,NA,2021-11-04 20:39:38,FALSE,NA,"1456360513248522249",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","C_los2489",1,TRUE,FALSE,NA,NA
"$PINS 🔥🚀Break Out !! 50$ +
#wallstreetbets #ShortSqueeze
$AAPL $NIO $SPY $WMT $FB $PT $PTON $GME $TSLA $MVIS… https://t.co/DRx2TNFktn",FALSE,0,NA,2021-11-04 20:39:37,TRUE,NA,"1456360507091398664",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RunHot1",0,FALSE,FALSE,NA,NA
"Another solid day!💪
$AMZN 3450c 8.70 --> 17.50 🚀
$TGT 262.50c 2.89 --> 3.45 🔥
$FB 340c (still holding)
$AAPL 152.… https://t.co/7TNvMIl3l5",FALSE,11,NA,2021-11-04 20:39:16,TRUE,NA,"1456360420449689605",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","LimitlessT1",1,FALSE,FALSE,NA,NA
"WOW #CHINA UNBELIEVABLE
TOO MANY $TSLA ORDERS IN 24 HOURS
NEVER BEFORE SEEN DEMAND
#TESLA $1500 IMMINENT… https://t.co/Im26GTz8WG",FALSE,0,NA,2021-11-04 20:39:08,TRUE,NA,"1456360384701493255",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","PesseMessy",0,FALSE,FALSE,NA,NA
"Check out our discord group
for trading Chatroom/community ☝️
📊📈
$EDSA
$KODK
$DOW
$GNUS
$IDEX
$BSBS
$TSLA
$TAOP… https://t.co/xPxCEg13nd",FALSE,0,NA,2021-11-04 20:39:07,TRUE,NA,"1456360382201688074",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Tiger01255",0,FALSE,FALSE,NA,NA
"WOW #CHINA UNBELIEVABLE
TOO MANY $TSLA ORDERS IN 24 HOURS
NEVER BEFORE SEEN DEMAND
#TESLA $1500 IMMINENT… https://t.co/NQ2QVTrf1Q",FALSE,0,NA,2021-11-04 20:39:05,TRUE,NA,"1456360372458319891",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","PesseMessy",0,FALSE,FALSE,NA,NA
"Thursday Option Volumes
$NVDA 2.364m (72% call/28% put)
$TSLA 1.894m (54% call/46% put)
$AAPL 1.655m (82% call/18%… https://t.co/Hwze5hVXTN",FALSE,39,NA,2021-11-04 20:38:53,TRUE,NA,"1456360321568882689",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MarketRebels",10,FALSE,FALSE,NA,NA
"RT @stocksera_bot: Most mentioned tickers in #WSB in last 1H
1. $NVDA (194)
2. $SPY (58)
3. $TSLA (56)
4. $AMD (23)
5. $SQ (18)
6. $DKNG (…",FALSE,0,NA,2021-11-04 20:37:25,FALSE,NA,"1456359952834973696",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","BestGirlTexas",1,TRUE,FALSE,NA,NA
"RT @MarketRebels: Most Traded Contracts
$AAPL 5 November $152.50 Call
$NVDA 5 November $300 Call
$AAPL 5 November $130 Call
$F 5 November…",FALSE,0,NA,2021-11-04 20:37:12,FALSE,NA,"1456359897705050125",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","JohnCarlos",5,TRUE,FALSE,NA,NA
"RT @MarketRebels: Most Traded Contracts
$AAPL 5 November $152.50 Call
$NVDA 5 November $300 Call
$AAPL 5 November $130 Call
$F 5 November…",FALSE,0,NA,2021-11-04 20:36:57,FALSE,NA,"1456359838020104200",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","MarketDraft",5,TRUE,FALSE,NA,NA
"“Hey how about we buy all your IP as well.” Tim $AAPL
$LGF talking to people strategically is GREAT. https://t.co/CMIHeiLBTy",FALSE,2,NA,2021-11-04 20:36:44,FALSE,NA,"1456359780839211019",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","BluthCapital",0,FALSE,FALSE,NA,NA
"$PTON 🔥Oversold at 65$, Volume short cover
#wallstreetbets #ShortSqueeze
$AAPL $NIO $SPY $WMT $FB $PT $PTON… https://t.co/9oneKgy0rH",FALSE,0,NA,2021-11-04 20:36:00,TRUE,NA,"1456359599095926786",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RunHot1",0,FALSE,FALSE,NA,NA
"But really- I want the free share of $AAPL. Whoever doesn’t have #webull out there- wanna help out yer pal… https://t.co/00dKZxZpWl",FALSE,0,NA,2021-11-04 20:35:52,TRUE,NA,"1456359561753923593",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","WadeStonks",0,FALSE,FALSE,NA,NA
"Thursday's Top Flow in #technology sector, Buy Flow & Sell Flow $ADI $QCOM $NVDA $XLNX $GOOGL $MSFT $STX $LRCX $V… https://t.co/k6xeg7UOXW",FALSE,0,NA,2021-11-04 20:35:47,TRUE,NA,"1456359542153900034",NA,"<a href=""https://itunes.apple.com/us/app/stock-station-stock-market/id655425604?mt=8"" rel=""nofollow"">minteractapp</a>","MinteractApp",0,FALSE,FALSE,NA,NA
"$VIAC streaming subs 10% growth
$4.00 FY 2021 EPS 2.70% div yield.
P/E of 9
$NFLX streaming subs 10% growth
$10.80… https://t.co/lGtJytsmWq",FALSE,2,NA,2021-11-04 20:35:36,TRUE,NA,"1456359497971208195",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","StockGravity",0,FALSE,FALSE,NA,NA
"@ParikPatelCFA Until $AAPL releases the iBike, charges twice as much as $PTON and is hailed as a visionary for reinventing home exercise.",FALSE,10,"ParikPatelCFA",2021-11-04 20:34:33,FALSE,"1456358529514852353","1456359231934787600","1295526279194828800","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","ehern87",0,FALSE,FALSE,NA,NA
"Shook off weak hands. $aapl opens at $155. It's pissed.",FALSE,1,NA,2021-11-04 20:34:13,FALSE,NA,"1456359149630103555",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","apwriter",0,FALSE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 20:33:48,FALSE,NA,"1456359041840582657",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",2448,TRUE,FALSE,NA,NA
"RT @ElliottForecast: $AAPL is favouring more upside in medium cycles, while above 138.25 further upside is favoured to take place. It is cu…",FALSE,0,NA,2021-11-04 20:33:33,FALSE,NA,"1456358982537424897",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","WallStCopywrite",1,TRUE,FALSE,NA,NA
"@Hi_Bassel @qcapital2020 If you really take things seriously and do (semi-)professional triathlon or road cycling,… https://t.co/bkIjUZAC0u",FALSE,1,"Hi_Bassel",2021-11-04 20:32:01,TRUE,"1456357977577955330","1456358594400636928","1361400506048995333","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","PhoenixtownM",0,FALSE,FALSE,NA,NA
"$AAPL is favouring more upside in medium cycles, while above 138.25 further upside is favoured to take place. It is… https://t.co/3COpo0nvTJ",FALSE,1,NA,2021-11-04 20:30:12,TRUE,NA,"1456358138995777538",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","ElliottForecast",1,FALSE,FALSE,NA,NA
"$AAPL closed today at $150.96.
If you bought 1 share of #AAPL at its closing price every day this week, you’ve gai… https://t.co/ggEu3uAKKR",FALSE,1,NA,2021-11-04 20:30:00,TRUE,NA,"1456358089049862157",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AAPLsilicon",0,FALSE,FALSE,NA,NA
"Nevada Sold More Than $1 Billion In Marijuana In One Year, Officials Report' #Cannabis #Stocks
$AAPL $MSFT $AMZN… https://t.co/NOexJ2U9tn",FALSE,2,NA,2021-11-04 20:30:00,TRUE,NA,"1456358087514853380",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MacaoChina",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Most Traded Contracts
$AAPL 5 November $152.50 Call
$NVDA 5 November $300 Call
$AAPL 5 November $130 Call
$F 5 November…",FALSE,0,NA,2021-11-04 20:28:56,FALSE,NA,"1456357817321938946",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","theoptionoracle",5,TRUE,FALSE,NA,NA
"RT @EvelynK83132413: Starting with $7k, down to $3k, back up to $29k, Lot of thanks to this chat
https://t.co/vOSS8J1Ipa
$NVDA $AMD $NIO $…",FALSE,0,NA,2021-11-04 20:28:50,FALSE,NA,"1456357795696152581",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",1,TRUE,FALSE,NA,NA
"$COIN not bad today! Still at 50% gain here so far, picked by our AI on October 5th 🔥🦾
Pro trader performance made… https://t.co/ZlQ9vfy1rF",FALSE,1,NA,2021-11-04 20:28:26,TRUE,NA,"1456357694525292546",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","StocksignalAI",0,FALSE,FALSE,NA,NA
"$PTON 🔥🚀 Oversold at 65$, Volume incoming, short cover.. 75$+
#wallstreetbets #ShortSqueeze
$AAPL $NIO $SPY $WMT… https://t.co/sF5nN0bL0x",FALSE,0,NA,2021-11-04 20:27:34,TRUE,NA,"1456357474953535495",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RunHot1",0,FALSE,FALSE,NA,NA
"Most Traded Contracts
$AAPL 5 November $152.50 Call
$NVDA 5 November $300 Call
$AAPL 5 November $130 Call
$F 5 Nov… https://t.co/WU6vog1Q0a",FALSE,27,NA,2021-11-04 20:27:12,TRUE,NA,"1456357383463182344",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MarketRebels",5,FALSE,FALSE,NA,NA
"#HotOptions Report For End Of Day November 4, 2021 – $NVDA, $TSLA, $AAPL, $AMD, $F, $AMZN, $FB, $NIO, $QCOM, $UBER,… https://t.co/huJyVxaEIo",FALSE,1,NA,2021-11-04 20:26:09,TRUE,NA,"1456357119070986243",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","Options",0,FALSE,FALSE,NA,NA
"RT @crypto_hodler1: The next $gme and $amc $BBIG and $SPRT is here. Dont miss it this time!
Click here! >>>>>>>> https://t.co/W…",FALSE,0,NA,2021-11-04 20:26:02,FALSE,NA,"1456357087731126272",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",1,TRUE,FALSE,NA,NA
"RT @MarketRebels: $AAPL finishes down 0.35% to $150.96",FALSE,0,NA,2021-11-04 20:25:57,FALSE,NA,"1456357068126842880",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","sandeep75093900",1,TRUE,FALSE,NA,NA
"RT @crypto_hodler1: The next $gme and $amc $BBIG and $SPRT is here. Dont miss it this time!
Click here! >>>>>>>> https://t.co…",FALSE,0,NA,2021-11-04 20:25:50,FALSE,NA,"1456357040696303618",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",1,TRUE,FALSE,NA,NA
"@Trendspider_J $AAPL ichimoku cloud future turned green today.",FALSE,0,"Trendspider_J",2021-11-04 20:25:50,FALSE,NA,"1456357036686458881","887754279125221378","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","jamessalcedo",0,FALSE,FALSE,NA,NA
"RT @MikieDaPoet: Buy $Shib & Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share…",FALSE,0,NA,2021-11-04 20:25:46,FALSE,NA,"1456357022870511619",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AP09812980",7,TRUE,FALSE,NA,NA
"The next $gme and $amc $BBIG and $SPRT is here. Dont miss it this time!
Click here! 👍🏼📈… https://t.co/FYN6CSgpGl",FALSE,0,NA,2021-11-04 20:25:01,TRUE,NA,"1456356831295533063",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","crypto_hodler1",0,FALSE,FALSE,NA,NA
"$PTON 🔥🚀 LOAD! Oversold at 65$, earnings calls squeeze easy run up 70$+
#wallstreetbets #ShortSqueeze
$AAPL $NIO… https://t.co/nh9XWbtAK0",FALSE,0,NA,2021-11-04 20:24:32,TRUE,NA,"1456356710113849349",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RunHot1",0,FALSE,FALSE,NA,NA
"Apple overhauls Apple ID website with all-new design https://t.co/04SRcunKLh $AAPL https://t.co/nXglpn1QQF",FALSE,0,NA,2021-11-04 20:24:03,FALSE,NA,"1456356591305846810",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"(11/5): Daily Plan (2/2) 🌞
$UPST : Calls > 337 | Puts < 320.33
$BYND : Calls > 107.2 | Puts < 102.5
$ORCL : Calls… https://t.co/BNQxui4lb5",FALSE,0,"MetaOptions",2021-11-04 20:24:03,TRUE,"1456356583609356293","1456356588751622145","1288517012340211713","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MetaOptions",0,FALSE,FALSE,NA,NA
"(11/5): Daily Plan (1/2) 🌞
$M : Calls > 31.74 | Puts < 30.39
$CSX : Calls > 35.75 | Puts < 35.29
$AZN : Calls > 63… https://t.co/45ts4Xn4RF",FALSE,0,NA,2021-11-04 20:24:01,TRUE,NA,"1456356583609356293",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MetaOptions",0,FALSE,FALSE,NA,NA
"Thursday's Top Flow in S&P 500 #SP500, Buy Flow & Sell Flow $ADI $QCOM $AMZN $WMT $TMUS $NVDA $XLNX $MRNA $MPWR… https://t.co/2qr5malPWx",FALSE,0,NA,2021-11-04 20:23:45,TRUE,NA,"1456356515036557312",NA,"<a href=""https://itunes.apple.com/us/app/stock-station-stock-market/id655425604?mt=8"" rel=""nofollow"">minteractapp</a>","MinteractApp",0,FALSE,FALSE,NA,NA
"$AAPL finishes down 0.35% to $150.96",FALSE,17,NA,2021-11-04 20:23:28,FALSE,NA,"1456356443087638530",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MarketRebels",1,FALSE,FALSE,NA,NA
"$AAPL v $PTON Two days later:
$PTON -28% After earnings today https://t.co/Qf1SirF7BP",FALSE,1,NA,2021-11-04 20:22:43,FALSE,NA,"1456356254046203906",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","exileofthemain",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: $AAPL planning to discontinue mask mandates for customers beginning Friday",FALSE,0,NA,2021-11-04 20:21:56,FALSE,NA,"1456356059346575361",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","DYLANmmc",14,TRUE,FALSE,NA,NA
"Thursday's Top Flow in #StockMarket, Buy Flow & Sell Flow $SPY $ADI $QQQ $QCOM $AMZN $WMT $IEF $TMUS $HYG $VGIT… https://t.co/5JObHezc6U",FALSE,0,NA,2021-11-04 20:21:10,TRUE,NA,"1456355864751656961",NA,"<a href=""https://itunes.apple.com/us/app/stock-station-stock-market/id655425604?mt=8"" rel=""nofollow"">minteractapp</a>","MinteractApp",0,FALSE,FALSE,NA,NA
"Starting with $7k, down to $3k, back up to $29k, Lot of thanks to this chat
https://t.co/vOSS8J1Ipa
$NVDA $AMD… https://t.co/edA1LQsiJY",FALSE,0,NA,2021-11-04 20:20:49,TRUE,NA,"1456355775488614401",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","EvelynK83132413",1,FALSE,FALSE,NA,NA
"Very much so. More dollars in circulation=dollars less valuable=stock price goes up per dollar. Also many of the la… https://t.co/mrwHxcRREe",FALSE,2,NA,2021-11-04 20:20:46,TRUE,NA,"1456355763694280704",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","AlphaAcquirers",0,FALSE,FALSE,NA,NA
"$AAPL Dark Cloud Cover
Daily appearances since 2010: 109
Close 5 days later ±:
Avg: 0.39
SD: 1.37
Worst: -2.77
Best… https://t.co/38T4R8cE5F",FALSE,0,NA,2021-11-04 20:20:39,TRUE,NA,"1456355735034490895",NA,"<a href=""https://xavier.otero.com"" rel=""nofollow"">Candlestick Stats</a>","dailycandlestix",0,FALSE,FALSE,NA,NA
"RT @BigDongProfits: $FUBO 35c 0.63–>0.70… 11% ✅
$FUBO 33p 0.44–>0.61… 39% ✅
$NKE 175c 0.62–>0.78… 26% ✅
$AAPL 152.5c 0.50–>0.35… -30% 🔴
(Th…",FALSE,0,NA,2021-11-04 20:20:13,FALSE,NA,"1456355623197630467",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","AdamSliverTrade",1,TRUE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 20:20:02,FALSE,NA,"1456355579115495424",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","GodelTrabuco69",2448,TRUE,FALSE,NA,NA
"$FUBO 35c 0.63–>0.70… 11% ✅
$FUBO 33p 0.44–>0.61… 39% ✅
$NKE 175c 0.62–>0.78… 26% ✅
$AAPL 152.5c 0.50–>0.35… -30% 🔴… https://t.co/6drp7zuxIM",FALSE,4,NA,2021-11-04 20:18:38,TRUE,NA,"1456355228178018310",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","BigDongProfits",1,FALSE,FALSE,NA,NA
"@Prophitcy don't take it personal, $AAPL has been my largest holding for a very long time, thinking we would be hom… https://t.co/vhuYEx1EYH",FALSE,0,"Prophitcy",2021-11-04 20:18:15,TRUE,"1456279319869800449","1456355130794668053","1345256608901828612","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Victor_Valdez",0,FALSE,FALSE,NA,NA
"RT @trading_pof: An awesome doubler on $AMD in just under an hour!
Join us at https://t.co/quCDPm3lFM and enjoy your 1st month #FREE!
$AA…",FALSE,0,NA,2021-11-04 20:17:42,FALSE,NA,"1456354993431265281",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","crews343",2,TRUE,FALSE,NA,NA
"Fundamental Income Generator trading system: https://t.co/POeECWTOhM #fundamental #income $PSX $MON $BUD $UTX $AAPL $BAC $SBUX $NKE",FALSE,0,NA,2021-11-04 20:17:09,FALSE,NA,"1456354853970759681",NA,"<a href=""https://profectussystems.autotradenow.com/"" rel=""nofollow"">Profectus Systems App</a>","ProfectuSystems",0,FALSE,FALSE,NA,NA
"An awesome doubler on $AMD in just under an hour!
Join us at https://t.co/quCDPm3lFM and enjoy your 1st month… https://t.co/QAMqRbmEI8",FALSE,3,NA,2021-11-04 20:16:41,TRUE,NA,"1456354735792037893",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","trading_pof",2,FALSE,FALSE,NA,NA
"Starting with $7k, down to $3k, back up to $29k, Lot of thanks to this chat
https://t.co/njHUH0ac1M
$NVDA $AMD… https://t.co/6uSA1S5RPt",FALSE,0,NA,2021-11-04 20:16:37,TRUE,NA,"1456354717911617537",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Afisayi2",0,FALSE,FALSE,NA,NA
"RT @TheAlphaThought: Don't buy Starbucks coffee
Buy $SBUX stock ☕
Don't buy an iPhone
Buy $AAPL stock 📱
Don't eat at McDonald's
Buy $M…",FALSE,0,NA,2021-11-04 20:14:25,FALSE,NA,"1456354166255886337",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","bedarkhorse",23,TRUE,FALSE,NA,NA
"@StewartButton @Barrtecforever @arthur_eckart @JohnSmi59189712 @helgy2 @mike_lucullus @Gforse1 @afewpoints… https://t.co/AgNFwB4qjO",FALSE,1,"StewartButton",2021-11-04 20:14:01,TRUE,"1456351146092732417","1456354064195854336","130631135","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","l_lucullus",0,FALSE,FALSE,NA,NA
"RT @ZevFima: REALLY need to differentiate companies that report on GAAP basis from those that report on adjusted non-GAAP basis. Not to men…",FALSE,0,NA,2021-11-04 20:13:38,FALSE,NA,"1456353969874227200",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Rushmeliss",1,TRUE,FALSE,NA,NA
"@Sarah48992269 100x on $GGPI would put its market cap at $2.5 trillion, which is currently the market cap of only t… https://t.co/zqTFGWfwP5",FALSE,2,"Sarah48992269",2021-11-04 20:13:19,TRUE,"1456352507236655117","1456353889771417604","1453946905914871811","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","bobbyheard",0,FALSE,FALSE,NA,NA
"RT @Deen0Tradez: $DDOG $175 CALL 11/5
$SQ $255 CALL 11/5
$AAPL $155 CALL 11/12
$UBER $50 CALL 11/12
SWINGING ALL INTO TM
$DDOG $SQ $UBER AL…",FALSE,0,NA,2021-11-04 20:12:38,FALSE,NA,"1456353718631288832",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",1,TRUE,FALSE,NA,NA
"$PINS also looks like is not affected by $AAPL privacy update that destroyed stocks depending on advertisement like $SNAP",FALSE,1,NA,2021-11-04 20:12:10,FALSE,NA,"1456353600213590020",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","devr_mf",0,FALSE,FALSE,NA,NA
"RT @tradermike1234: It isn't just stock trading in the 1% Club it's #optiontrading as well!
@ZeroCoolOptions in here changing sooo many li…",FALSE,0,NA,2021-11-04 20:11:52,FALSE,NA,"1456353524669837320",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","GordonBTFD",2,TRUE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 20:11:36,FALSE,NA,"1456353455799427074",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","loidaspace1",2448,TRUE,FALSE,NA,NA
"@Prophitcy should we hold $aapl calls ?",FALSE,0,"Prophitcy",2021-11-04 20:10:28,FALSE,NA,"1456353169596952576","1345256608901828612","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","mayur9333",0,FALSE,FALSE,NA,NA
"$LCID, $MSFT, $AAPL Blocks after the close https://t.co/zd74QDHeZk",FALSE,10,NA,2021-11-04 20:10:27,FALSE,NA,"1456353167885561869",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","vwaptrader1",0,FALSE,FALSE,NA,NA
"$PENN $AAPL
Well this was the right call. ✨",FALSE,1,NA,2021-11-04 20:10:14,FALSE,NA,"1456353112596246551",NA,"<a href=""https://gift-feed.com"" rel=""nofollow"">Twitter-Feed-Bot</a>","gift_feed",0,FALSE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 20:10:12,FALSE,NA,"1456353106279624739",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","iEC0MMERCE",2448,TRUE,FALSE,NA,NA
"Nobody buying overpriced exercise bikes anymore? $PTON Shocker. Would rather buy 3 iPhones and a PS5 than some sill… https://t.co/6oQR7p3sTA",FALSE,2,NA,2021-11-04 20:09:39,TRUE,NA,"1456352965648949251",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","XMCapitalGroup",0,FALSE,FALSE,NA,NA
"November 4 Recap 📈
We had a quick scalp on $AAPL this morning for about a 30% return before it fell through the 15… https://t.co/odE5rtkpGo",FALSE,1,NA,2021-11-04 20:08:55,TRUE,NA,"1456352779841138696",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","HighStrikeInc",0,FALSE,FALSE,NA,NA
"Unusual > Ask [Stock]
Ticker: $AAPL
Expiry: 01/21/2022
Strike: $51.25
P/C: Call
Size: 50
Price: $99.90
Pr… https://t.co/gsnVq6IYJa",FALSE,0,NA,2021-11-04 20:08:32,TRUE,NA,"1456352685372882949",NA,"<a href=""https://www.ayrshare.com"" rel=""nofollow"">Ayrshare</a>","vigtheapp",0,FALSE,FALSE,NA,NA
"S&P 500 closes at another record for its sixth positive day in a row!
$MSFT $AAPL $GOOGL $AMZN $CMCSA $CRM $AMD… https://t.co/DCxDEhTeDh",FALSE,3,NA,2021-11-04 20:07:45,TRUE,NA,"1456352488416849928",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Alpha_Bronze",0,FALSE,FALSE,NA,NA
"RT @TheAlphaThought: Don't buy Starbucks coffee
Buy $SBUX stock ☕
Don't buy an iPhone
Buy $AAPL stock 📱
Don't eat at McDonald's
Buy $M…",FALSE,0,NA,2021-11-04 20:06:55,FALSE,NA,"1456352276537303043",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Gelsominoo__",23,TRUE,FALSE,NA,NA
"If you took just 1 of each contract you could’ve made $5,003
(11/1-11/4) $shib $baba $googl $aapl $snap $hd $nflx… https://t.co/5V2pHSFCD2",FALSE,3,NA,2021-11-04 20:06:29,TRUE,NA,"1456352169305776133",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","optiontradingpr",0,FALSE,FALSE,NA,NA
"Watching $nvda $cat $sbux $bynd $aapl $tsal for tomorrow.
50♥️ for detailed watchlist
$shib #shiba #shibainu
GIV… https://t.co/7q6uFGNjZW",FALSE,1,NA,2021-11-04 20:06:23,TRUE,NA,"1456352143095607302",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","optiontradingpr",0,FALSE,FALSE,NA,NA
"Symbol : $AAPL
1 Day Vol Change: 14.25%
7 Day Vol Change: -32.23%
30 Day Vol Change: -3.01%
Powered By #VolumeFlow",FALSE,0,NA,2021-11-04 20:06:06,FALSE,NA,"1456352073868529668",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">tweet-bot-roth-ira</a>","RothIRAOptions",0,FALSE,FALSE,NA,NA
"Apple ID Website Gets Design Overhaul https://t.co/kVWpAciTU3 $AAPL https://t.co/J46S4MasBN",FALSE,0,NA,2021-11-04 20:06:03,FALSE,NA,"1456352060492836866",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"RT @exileofthemain: $AAPL V $PTON
Called it.
Since June 23rd, $AAPL +12.4% v $PTON -24.5% https://t.co/QUsNxalig8",FALSE,0,NA,2021-11-04 20:05:53,FALSE,NA,"1456352019397160965",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","or_fade",1,TRUE,FALSE,NA,NA
"Top #moneyflow for #sp500 today
$AAPL $T $AMD $ABT $BLK $HUM $PFE $COP $AXP $MS ...
https://t.co/S59zN18Con",FALSE,0,NA,2021-11-04 20:05:04,FALSE,NA,"1456351811447648274",NA,"<a href=""http://www.tickwatcher.com"" rel=""nofollow"">tickwatcher</a>","MITickWatcher",0,FALSE,FALSE,NA,NA
"Top #moneyflow for #nasdaq today
$SBUX $AAPL $DLTR $NFLX $ORLY $WYNN $DELL $AKAM $GILD $BBBY ...
https://t.co/S59zN18Con",FALSE,0,NA,2021-11-04 20:05:02,FALSE,NA,"1456351804606738448",NA,"<a href=""http://www.tickwatcher.com"" rel=""nofollow"">tickwatcher</a>","MITickWatcher",0,FALSE,FALSE,NA,NA
"Top #moneyflow for whole #market today
$CDK $SBUX $AAPL $T $IWM $ROKU $TLT $EUFN $CDW $XLF ...
https://t.co/S59zN18Con",FALSE,0,NA,2021-11-04 20:05:00,FALSE,NA,"1456351797845520391",NA,"<a href=""http://www.tickwatcher.com"" rel=""nofollow"">tickwatcher</a>","MITickWatcher",0,FALSE,FALSE,NA,NA
"RT @Mayhem4Markets: $TSLA, $AAPL, $NVDA, and $AMZN stand outs in call premia paid today. https://t.co/xeWFOIafGn",FALSE,0,NA,2021-11-04 20:04:40,FALSE,NA,"1456351712273444875",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","DisruptorStocks",2,TRUE,FALSE,NA,NA
"Tomorrow $AAPL goes up 10%. You heard it here first.
🙄",FALSE,17,NA,2021-11-04 20:04:38,FALSE,NA,"1456351704639840263",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","WaitCapital",1,FALSE,FALSE,NA,NA
"#Markets Update: 11/04/2021 4PM EST
Index Performance🤡
Advances & Declines Distribution💩
Net Inflow💩🤡
$SPX $DJI… https://t.co/BeYUkesYla",FALSE,0,NA,2021-11-04 20:04:03,TRUE,NA,"1456351558338293768",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","DW3p4c",0,FALSE,FALSE,NA,NA
"RT @RicardinhoMuc: $Mark Remark 💪 🚨Buy 💪
#trading #investing #bitcoin #stocks $SPX $SPY $QQQ $NDX $DIA $AAPL $TSLA $MSFT…",FALSE,0,NA,2021-11-04 20:04:01,FALSE,NA,"1456351549232500742",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RicardinhoMuc",1,TRUE,FALSE,NA,NA
"The next $gme and $amc $BBIG and $SPRT is here. Dont miss it this time!
Click here! >>>>>>>>… https://t.co/lXuMh70oCi",FALSE,0,NA,2021-11-04 20:04:01,TRUE,NA,"1456351546531213320",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","crypto_hodler1",1,FALSE,FALSE,NA,NA
"@unusual_whales please tell me that stadium sized orders of $AAPL Cs is going to be an alert very soon.",FALSE,0,"unusual_whales",2021-11-04 20:03:58,FALSE,NA,"1456351535278039049","1200616796295847936","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Anonymus_Ape",0,FALSE,FALSE,NA,NA
"The next $gme and $amc $BBIG and $SPRT is here. Dont miss it this time!
Click here! >>>>>>>>… https://t.co/CQxFCa3kBn",FALSE,0,NA,2021-11-04 20:03:57,TRUE,NA,"1456351533516288008",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","crypto_hodler1",1,FALSE,FALSE,NA,NA
"RT @TicTocTick: Long terms valuation metrics are not working.
Stocks are not falling because some of them like $GOOG $MSFT $AAPL are the s…",FALSE,0,NA,2021-11-04 20:03:37,FALSE,NA,"1456351445993799686",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","PAEONIA111",6,TRUE,FALSE,NA,NA
"RT @charliebilello: Apple has bought back $435 billion in stock over the past 8 years, which is greater than the market cap of 490 companie…",FALSE,0,NA,2021-11-04 20:03:12,FALSE,NA,"1456351343443169286",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Mitush7W",210,TRUE,FALSE,NA,NA
"@InnocenceCapit1 @JoTrader4 @BahamaBen9 @stoolpresidente Lol so am I for that matter. Steve Jobs had a very public… https://t.co/HjZQwWuVJX",FALSE,0,"InnocenceCapit1",2021-11-04 20:03:09,TRUE,"1456350141875556353","1456351331082457094","1341185557003599872","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Cucolo24",0,FALSE,FALSE,NA,NA
"RT @OpenOutcrier: RECAP 11/4 -Neg Comments:
$EVR - UBS
$SEER - Bear Cave
$UI - Unemon1
$ATY - Lake St
$SSYS - JPM
$AAPL - Dan Niles
Live B…",FALSE,0,NA,2021-11-04 20:02:32,FALSE,NA,"1456351173062144000",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","GreenMonsterah",1,TRUE,FALSE,NA,NA
"Most mentioned tickers in #WSB in last 1H
1. $NVDA (194)
2. $SPY (58)
3. $TSLA (56)
4. $AMD (23)
5. $SQ (18)
6.… https://t.co/0OWDpFGwpW",FALSE,1,NA,2021-11-04 20:02:05,TRUE,NA,"1456351063687184404",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Stocksera</a>","stocksera_bot",1,FALSE,FALSE,NA,NA
"RT @avivhadar: “Arizona Vehicle Testing Site Rumored to Be Used by Apple Purchased for $125 Million” ~MacRumors $AAPL EV. https://t.co/gH7…",FALSE,0,NA,2021-11-04 20:01:48,FALSE,NA,"1456350990538469391",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","murph9669",4,TRUE,FALSE,NA,NA
"🎁 Holidays are coming. Think outside the box this Christmas 🎄
Open & fund your brokerage account and get 2 free s… https://t.co/cdbOYqo8mr",FALSE,0,NA,2021-11-04 20:01:36,TRUE,NA,"1456350939284074510",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","iDGoosby",0,FALSE,FALSE,NA,NA
"RECAP 11/4 -Neg Comments:
$EVR - UBS
$SEER - Bear Cave
$UI - Unemon1
$ATY - Lake St
$SSYS - JPM
$AAPL - Dan Niles… https://t.co/j3rvJhNBfv",FALSE,2,NA,2021-11-04 20:01:26,TRUE,NA,"1456350899970916353",NA,"<a href=""http://openoutcrier.com"" rel=""nofollow"">Open Outcrier</a>","OpenOutcrier",1,FALSE,FALSE,NA,NA
"@Prophitcy Thoughts on $AAPL?",FALSE,0,"Prophitcy",2021-11-04 20:01:26,FALSE,"1456350744328736771","1456350896720338945","1345256608901828612","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","NickCass_",0,FALSE,FALSE,NA,NA
"Top #money flow today. Free stock apps https://t.co/7Cz8yP8vDT
$CDK, $SPY, $SBUX, $QQQ, $AAPL, $QCOM, $T, $AMZN,… https://t.co/YkLgaZfUva",FALSE,0,NA,2021-11-04 20:01:06,TRUE,NA,"1456350815342391305",NA,"<a href=""https://www.tickwatcher.com"" rel=""nofollow"">TickwatcherMF</a>","TickwatcherMF",0,FALSE,FALSE,NA,NA
"RT @TheAlphaThought: Don't buy Starbucks coffee
Buy $SBUX stock ☕
Don't buy an iPhone
Buy $AAPL stock 📱
Don't eat at McDonald's
Buy $M…",FALSE,0,NA,2021-11-04 20:01:02,FALSE,NA,"1456350796262649858",NA,"<a href=""https://tweethunter.io"" rel=""nofollow"">Tweet Hunter Pro</a>","TheAlphaThought",23,TRUE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 20:00:42,FALSE,NA,"1456350715010506752",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","blexamedia",2448,TRUE,FALSE,NA,NA
"r/WallStreetBets daily discussion mentions over the last hour (rank 21-30)
21. $PYPL (6 mentions)
22. $SAVA (5)
23.… https://t.co/eT1HAea7rh",FALSE,0,NA,2021-11-04 20:00:37,TRUE,NA,"1456350693049184263",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Quiver Updates</a>","QuiverUpdates",0,FALSE,FALSE,NA,NA
"RT @ZacksResearch: Big Tech, Tesla & An ETF to Invest in Disruption. $AMZN $TSLA $AAPL $COIN $LOUP https://t.co/YSCEAE5Sba",FALSE,0,NA,2021-11-04 20:00:35,FALSE,NA,"1456350684052287517",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","maihamakid",1,TRUE,FALSE,NA,NA
"RT @MikieDaPoet: Buy $Shib & Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share…",FALSE,0,NA,2021-11-04 20:00:29,FALSE,NA,"1456350660111200264",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Shibaunitedus",7,TRUE,FALSE,NA,NA
"$AAPL why going down?",FALSE,0,NA,2021-11-04 20:00:27,FALSE,NA,"1456350651311607815",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","Lutful2016",0,FALSE,FALSE,NA,NA
"🚀 Today's Top 10 Active Stocks 🚀
Thu, Nov 04, 2021 @ 04:00 PM EST
1. $F (+4.22%)
2. $NVDA (+11.95%)
3. $AMD (+5.33%… https://t.co/w0WqBHcuKq",FALSE,0,NA,2021-11-04 20:00:17,TRUE,NA,"1456350610555613191",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">The Stonk Machine</a>","thestonkmachine",0,FALSE,FALSE,NA,NA
"these are the most active stocks right now $F $NVDA $OCGN $AMD $T $ITUB $NIO $PENN $VALE $AAPL https://t.co/uMvKfbwhgS",FALSE,0,NA,2021-11-04 20:00:02,FALSE,NA,"1456350546919579651",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">yk303</a>","get_blow",0,FALSE,FALSE,NA,NA
"$AAPL $GOOG $GLD $QQQ $SPY
""Not only do you get alerts from top traders at Xtrades-net, but you can alert your own… https://t.co/fwzvalFSCh",FALSE,0,NA,2021-11-04 20:00:00,TRUE,NA,"1456350537587339272",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AlanaNienow",0,FALSE,FALSE,NA,NA
"RT @MikieDaPoet: Buy $Shib & Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share…",FALSE,0,NA,2021-11-04 19:59:59,FALSE,NA,"1456350534307307521",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Dogeusdt",7,TRUE,FALSE,NA,NA
"The next $gme and $amc $BBIG and $SPRT is here. Dont miss it this time!
Click here! >>>>>>>>… https://t.co/Pz1F76WzvU",FALSE,0,NA,2021-11-04 19:59:06,TRUE,NA,"1456350313066098690",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","crypto_hodler1",0,FALSE,FALSE,NA,NA
"RT @charliebilello: Apple has bought back $435 billion in stock over the past 8 years, which is greater than the market cap of 490 companie…",FALSE,0,NA,2021-11-04 19:58:44,FALSE,NA,"1456350220875350021",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","FortuneJonny",210,TRUE,FALSE,NA,NA
"RT @AzirStocks: After spending 1 on 1 with @AdamSliverTrade , today was a day for trying his strategy!
Didn’t get in unless they cross th…",FALSE,0,NA,2021-11-04 19:58:29,FALSE,NA,"1456350154508877826",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AdamSliverTrade",2,TRUE,FALSE,NA,NA
"*Starting with $15k, down to $7k, back up to $90k, Lot of thanks to this chat https://t.co/BaAq5fv70z
$bkkt $dwac… https://t.co/m9TZaiORsw",FALSE,0,NA,2021-11-04 19:58:17,TRUE,NA,"1456350105481711618",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","xagit4",0,FALSE,FALSE,NA,NA
"RT @RealBrianWatt: ""Although you trade $AAPL i know you hate single stock risk for your long term career survival, what is your favorite ET…",FALSE,0,NA,2021-11-04 19:58:15,FALSE,NA,"1456350098548527107",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","NBG_Machiavelli",1,TRUE,FALSE,NA,NA
"After spending 1 on 1 with @AdamSliverTrade , today was a day for trying his strategy!
Didn’t get in unless they… https://t.co/by83NZ1u0v",FALSE,8,NA,2021-11-04 19:58:10,TRUE,NA,"1456350076968767488",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","AzirStocks",2,FALSE,FALSE,NA,NA
"RT @MarketRebels: $AAPL planning to discontinue mask mandates for customers beginning Friday",FALSE,0,NA,2021-11-04 19:58:08,FALSE,NA,"1456350066118176772",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","dorcusmafia",14,TRUE,FALSE,NA,NA
"Top Stock picks for now:
$AMD $FB $SQ $TSLA $NVDA $MSFT $AAPL $TER $TSM $DIS $GOOG",FALSE,3,"the_alphatrades",2021-11-04 19:58:00,FALSE,"1456350033192882177","1456350034853777411","876494440369717248","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","the_alphatrades",0,FALSE,FALSE,NA,NA
"$AAPL holiday rally ahead? Weekly looks bullish. $DIA $QQQ $SPY https://t.co/O41KEk8Voa",FALSE,0,NA,2021-11-04 19:57:53,FALSE,NA,"1456350004205993990",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","ThrashCapital",0,FALSE,FALSE,NA,NA
"Pinterest Is About to Report Earnings. Buckle Up for the Ride. $PINS $PYPL $AAPL https://t.co/jjqAtOwoL6",FALSE,1,NA,2021-11-04 19:57:24,FALSE,NA,"1456349882323775493",NA,"<a href=""https://newsfilter.io"" rel=""nofollow"">Newsfilter.io</a>","newsfilterio",0,FALSE,FALSE,NA,NA
"$AAPL 150C
Played key level break and cut almost immediately because it started to stall. I think the trade would'v… https://t.co/HzCjSdPwSf",FALSE,1,"JustJoshinTrade",2021-11-04 19:56:56,TRUE,"1456349760592523264","1456349767643156484","1443375377678798851","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","JustJoshinTrade",0,FALSE,FALSE,NA,NA
"The manipulation w/ $AAPL is very frustrating but remember imo this stock I call the “gentleman stock” lets everyon… https://t.co/gHGJbi8cf5",FALSE,1,NA,2021-11-04 19:56:30,TRUE,NA,"1456349654707286019",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","GGatsby77",0,FALSE,FALSE,NA,NA
"RT @chuckthetrader: @MarketRebels Dan Niles said to sell $AAPL when I bot it at $170 *Pre split* This guy is cray",FALSE,0,NA,2021-11-04 19:56:27,FALSE,NA,"1456349644678737930",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","chainz_svage",1,TRUE,FALSE,NA,NA
"RT @MarketRebels: Dan Niles says that $AAPL is the most overpriced tech stock",FALSE,0,NA,2021-11-04 19:56:15,FALSE,NA,"1456349592891629569",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","chainz_svage",11,TRUE,FALSE,NA,NA
"Have a great evening everyone
Will be back with some more charts
$AAPL $TSLA $LCID $FB $AMZN $CAR $COIN $PYPL… https://t.co/LBDvjJiWUF",FALSE,6,NA,2021-11-04 19:55:38,TRUE,NA,"1456349437622509568",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TamirTiko2110",0,FALSE,FALSE,NA,NA
"RT @avivhadar: “Arizona Vehicle Testing Site Rumored to Be Used by Apple Purchased for $125 Million” ~MacRumors $AAPL EV. https://t.co/gH7…",FALSE,0,NA,2021-11-04 19:55:26,FALSE,NA,"1456349389031567388",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","brain_trader",4,TRUE,FALSE,NA,NA
"$AAPL lagging here.",FALSE,1,NA,2021-11-04 19:55:24,FALSE,NA,"1456349380039094278",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","cezluvs",0,FALSE,FALSE,NA,NA
"All degenerates are hell bent on making Nancy Pelosi as rich as fucking possible. @SpeakerPelosi $TSLA $NVDA $RBLX $AB $AMZN $AAPL $GOOGL",FALSE,0,NA,2021-11-04 19:54:46,FALSE,NA,"1456349219250376707",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","rattlesnakey2",0,FALSE,FALSE,NA,NA
"$AMD $140 INCOMING! TO THE MOON!!
$NVDA 11.64% up
WERE NEXT!!!! $AMD $140 then $160
$AMD HAS HALF $NVDA FLOAT… https://t.co/DoomI4ECAe",FALSE,0,NA,2021-11-04 19:54:41,TRUE,NA,"1456349201529401350",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingForGod",0,FALSE,FALSE,NA,NA
"4/5 today $CNCE $SAVA $CCRN $AAPL https://t.co/J2hUZGJsUN",FALSE,0,NA,2021-11-04 19:54:39,FALSE,NA,"1456349190687281154",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","brodie__bets",0,FALSE,FALSE,NA,NA
"RT @avivhadar: “Arizona Vehicle Testing Site Rumored to Be Used by Apple Purchased for $125 Million” ~MacRumors $AAPL EV. https://t.co/gH7…",FALSE,0,NA,2021-11-04 19:54:33,FALSE,NA,"1456349165190107152",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","iamapkaran",4,TRUE,FALSE,NA,NA
"RT @avivhadar: “Arizona Vehicle Testing Site Rumored to Be Used by Apple Purchased for $125 Million” ~MacRumors $AAPL EV. https://t.co/gH7…",FALSE,0,NA,2021-11-04 19:54:13,FALSE,NA,"1456349083187257345",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","chamo_miller",4,TRUE,FALSE,NA,NA
"Most winning trading chat!!! For a limited time, we are opening our trading chatroom to the public!
$YANG $BMA… https://t.co/aOJOFBQ3dj",FALSE,0,NA,2021-11-04 19:53:50,TRUE,NA,"1456348987699732488",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AgeingTrex",0,FALSE,FALSE,NA,NA
"The best place for Traders to Gain
$SPY $AMZN $NVDA $BA $BABA $AMD $NFLX $FB $USO $DAL $UGAZ $DIS $QQQ $TSLA… https://t.co/qNQHSk6wjm",FALSE,0,NA,2021-11-04 19:53:38,TRUE,NA,"1456348935170236424",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AgeingTrex",0,FALSE,FALSE,NA,NA
"Live day trading, detailed analysis on stocks with entry, exit, stop losses, price targets,mentoring and live news… https://t.co/haXwzKCnkB",FALSE,0,NA,2021-11-04 19:53:24,TRUE,NA,"1456348876219240448",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AgeingTrex",0,FALSE,FALSE,NA,NA
"""Although you trade $AAPL i know you hate single stock risk for your long term career survival, what is your favori… https://t.co/8mKXqs88dB",FALSE,44,NA,2021-11-04 19:53:21,TRUE,NA,"1456348863288250374",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RealBrianWatt",1,FALSE,FALSE,NA,NA
"“Arizona Vehicle Testing Site Rumored to Be Used by Apple Purchased for $125 Million” ~MacRumors $AAPL EV. https://t.co/gH7jkWlz8l",FALSE,20,NA,2021-11-04 19:53:11,FALSE,NA,"1456348823169626118",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","avivhadar",4,FALSE,FALSE,NA,NA
"*Make as much as you want, i've made 35K+ last week. Best room on the internet .
$AAPL $TSLA $GEVO $QQQ $MSFT… https://t.co/STSqHtGvDo",FALSE,0,NA,2021-11-04 19:53:07,TRUE,NA,"1456348803485913090",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AgeingTrex",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/IlzMKsstRw",FALSE,0,NA,2021-11-04 19:52:50,TRUE,NA,"1456348735450005512",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Sandotax",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/ZKN7fUoJ0Z",FALSE,0,NA,2021-11-04 19:52:29,TRUE,NA,"1456348646371471367",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","ramirezosvaldo",0,FALSE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 19:51:49,FALSE,NA,"1456348478355820546",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","PCKedharnath",2448,TRUE,FALSE,NA,NA
"$AMD $140 INCOMING! TO THE MOON!!
$NVDA 17.15% up
WERE NEXT!!!! $AMD $140 then $160
$AMD HAS HALF $NVDA FLOAT… https://t.co/OTnN8xFITy",FALSE,0,NA,2021-11-04 19:51:41,TRUE,NA,"1456348445308973067",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingForGod",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: Intraday Option Volumes
$NVDA 1.343m (73% call/27% put)
$TSLA 1.309m (55% call/45% put)
$AMD 910k (77% call/23% put)
$F…",FALSE,0,NA,2021-11-04 19:51:11,FALSE,NA,"1456348318410366986",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","mo_mhmht2018",7,TRUE,FALSE,NA,NA
"Yet, another successful day in the stock market. $32,700 on the day, thanks to Xtrades analyst alerts!
$FB $LOVE… https://t.co/s2dMnszmIc",FALSE,0,NA,2021-11-04 19:51:05,TRUE,NA,"1456348293190098945",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"$26,700 on the day! I wouldn't have been able to do this without the help of Xtrades and their community. Everyone… https://t.co/lVTb7xsvOW",FALSE,0,NA,2021-11-04 19:50:44,TRUE,NA,"1456348204224679941",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"$DDOG $175 CALL 11/5
$SQ $255 CALL 11/5
$AAPL $155 CALL 11/12
$UBER $50 CALL 11/12
SWINGING ALL INTO TM
$DDOG $SQ $UBER ALL LOTTOS",FALSE,0,NA,2021-11-04 19:50:20,FALSE,NA,"1456348104853229577",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Deen0Tradez",1,FALSE,FALSE,NA,NA
"When you forgot to cancel a limit order and spend 1k usd on apple calls. Dont fail me $aapl 🙃",FALSE,0,NA,2021-11-04 19:49:56,FALSE,NA,"1456348002822598660",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","panda_investing",0,FALSE,FALSE,NA,NA
"It’s really amazing Place,
Lot of thanks to this community...
$SPY $QQQ $BA $VXX $TSM $AAPL $AMD $MSFT $FB $DJIA… https://t.co/rHG8Cdnzkw",FALSE,0,NA,2021-11-04 19:49:45,TRUE,NA,"1456347957306044425",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"Join us where all the traders in our room work together to keep you focused on what's moving before the market open… https://t.co/9jnc6rhof9",FALSE,0,NA,2021-11-04 19:49:23,TRUE,NA,"1456347866939727875",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"Our top 5 stock plays closed by the Xtrades members on today.
$BNB $BCH $THETA $TRX $TZX $AMZN $SPY $XVG $DDTG… https://t.co/fqCQsu5kxc",FALSE,0,NA,2021-11-04 19:49:13,TRUE,NA,"1456347824405221380",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"Most Searched Stocks 🔎
Ticker · Price · Change · Change(%)
$AAPL 151.19$ -0.30$ -0.20%
$FB 33… https://t.co/rar1EyKj7b",FALSE,0,NA,2021-11-04 19:48:38,TRUE,NA,"1456347677294161943",NA,"<a href=""https://twitter.com"" rel=""nofollow"">Aida_bot</a>","Aidabot1",0,FALSE,FALSE,NA,NA
"Stock Market Top Actives ⇆
Ticker · Price · Change · Change(%)
$CEI 1.24$ -0.01$ -1.20%
$AAPL… https://t.co/zfo4YnJpVK",FALSE,0,NA,2021-11-04 19:48:36,TRUE,NA,"1456347669283041282",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Twitter Bot Tweepy</a>","Bot4DTU",0,FALSE,FALSE,NA,NA
"Everyone buy their calls at close for the gap up! $spy $qqq $dia $aapl $tsla",FALSE,3,NA,2021-11-04 19:48:06,FALSE,NA,"1456347541860143106",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","jbranchini1",0,FALSE,FALSE,NA,NA
"Comment: How macOS Monterey gave extra life to my Intel MacBook Pro https://t.co/gxN6Tpjxvv $AAPL https://t.co/wWWwivQgaQ",FALSE,0,NA,2021-11-04 19:48:03,FALSE,NA,"1456347531181387781",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/ENp6quzME9",FALSE,0,NA,2021-11-04 19:47:48,TRUE,NA,"1456347465913864196",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","ChrisSchmidt214",0,FALSE,FALSE,NA,NA
"RT @InvestrTrades: FREE ALERTS Recap 😍💵💰
$ROKU paid 113%💰
$ABNB paid 35% 💵
$NET paid 45%💵
🔁&❤️40 Likes for Tomorrow Picks!
$SPY $TSLA $…",FALSE,0,NA,2021-11-04 19:46:55,FALSE,NA,"1456347245176098822",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",6,TRUE,FALSE,NA,NA
"Live alert, alerts, and price targets allowed our members to catch the 117.80% on $AMZN today!
$SPY $TTD $SPCB… https://t.co/8qUcN9Ofti",FALSE,0,NA,2021-11-04 19:45:36,TRUE,NA,"1456346913020825602",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","vanhiha",0,FALSE,FALSE,NA,NA
"RT @dev_nanakay: Owning everything that you consume is the best way towards financial independence..I bought $AAPL before I bought their pr…",FALSE,0,NA,2021-11-04 19:44:56,FALSE,NA,"1456346743952584706",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","mawumimi",2,TRUE,FALSE,NA,NA
"$SPY $NVDA $AAPL $QQQ $CEI I’ve made $93,111.27 (⬆ 891.33%) in a day after Follow Them and using their alerts. high… https://t.co/A8Eo3Apx0o",FALSE,0,NA,2021-11-04 19:44:14,TRUE,NA,"1456346569817530369",NA,"<a href=""https://gift-feed.com"" rel=""nofollow"">Twitter-Feed-Bot</a>","gift_feed",0,FALSE,FALSE,NA,NA
"$AMD $140 INCOMING!!! TO THE MOON
$NVDA 12% up
WERE NEXT!!!! $AMD $140 then $160
$AMD HAS HALF $NVDA FLOAT… https://t.co/TpFl9qG7iO",FALSE,0,NA,2021-11-04 19:44:14,TRUE,NA,"1456346567892340742",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingForGod",0,FALSE,FALSE,NA,NA
"RT @MikieDaPoet: Buy $Shib & Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share…",FALSE,0,NA,2021-11-04 19:42:52,FALSE,NA,"1456346226824253443",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","NickPlusShibInu",7,TRUE,FALSE,NA,NA
"RT @InvestrTrades: FREE ALERTS Recap 😍💵💰
$ROKU paid 113%💰
$ABNB paid 35% 💵
$NET paid 45%💵
🔁&❤️40 Likes for Tomorrow Picks!
$SPY $TSLA $…",FALSE,0,NA,2021-11-04 19:42:51,FALSE,NA,"1456346222675980305",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","KeyCalhoun",6,TRUE,FALSE,NA,NA
"RT @chrissd1231: $BKKT looks like the $AAPL deal could be next https://t.co/Azv6W2ME11",FALSE,0,NA,2021-11-04 19:42:43,FALSE,NA,"1456346186781184006",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","jackothetrader",11,TRUE,FALSE,NA,NA
"RT @TheAlphaThought: Don't buy Starbucks coffee
Buy $SBUX stock ☕
Don't buy an iPhone
Buy $AAPL stock 📱
Don't eat at McDonald's
Buy $M…",FALSE,0,NA,2021-11-04 19:42:11,FALSE,NA,"1456346052429291526",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","KelmAlexander",23,TRUE,FALSE,NA,NA
"Buy $Shib & Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a… https://t.co/T975nTK5iB",FALSE,30,NA,2021-11-04 19:42:04,TRUE,NA,"1456346022691680266",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","MikieDaPoet",7,FALSE,FALSE,NA,NA
"RT @tradermike1234: FREE discord trading chatroom!
$AQMS $ARTL $AUR $CNCE $EVAX $IBIO $ITP $LGHL $LPCN $PETZ $XRTX $ZOM $SPY $AAPL $FB $NV…",FALSE,0,NA,2021-11-04 19:41:19,FALSE,NA,"1456345835340394498",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","StonkTrafficker",2,TRUE,FALSE,NA,NA
"RT @TraeSongz5: Choosing individual stocks is NOT for everyone. Statistically, you are way better off with index funds.
HOWEVER some expo…",FALSE,0,NA,2021-11-04 19:40:44,FALSE,NA,"1456345690968367107",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","good_knights21",1,TRUE,FALSE,NA,NA
"RT @NathanCRoth: METAVERSE ETF
Games:
$U $RBLX $ILV $WILD $ATLAS $AXIES $AURY $NAKA
Coins:
$ETH $MATIC $DOT $LINK $ATOM $SOL $RAY
VR:
$M…",FALSE,0,NA,2021-11-04 19:40:20,FALSE,NA,"1456345589298388992",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","koreyptwit",2448,TRUE,FALSE,NA,NA
"$mara $fsr $tsla $bbig $gme $fb $aapl $riot $nakd $nio $coin $msft $wkhs $pltr $amd $sos $btbt $fubo $amc $penn… https://t.co/YCutkd8OjW",FALSE,0,NA,2021-11-04 19:40:00,TRUE,NA,"1456345503386554370",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Right__Stocks",0,FALSE,FALSE,NA,NA
"📌Discord
Best stock traders group out there!
updates + Chatroom +analysis
📈📊⏳
$BIDU $SAVE $WORK $T $AAPL $C… https://t.co/fg6hwFvnk4",FALSE,0,NA,2021-11-04 19:39:04,TRUE,NA,"1456345270422228993",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Tiger01255",0,FALSE,FALSE,NA,NA
"$AAPL Why am I trading this instead of $AMD or $NVDA ?! ️ https://t.co/pgKyQpvT75",FALSE,1,NA,2021-11-04 19:38:56,FALSE,NA,"1456345235273904128",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">John-McClane-Bot</a>","McclaneOfficer",0,FALSE,FALSE,NA,NA
"It was a fun day, locked profits, swinging a runner and got a yolo $AAPL call ;)",FALSE,0,NA,2021-11-04 19:38:36,FALSE,NA,"1456345151954202630",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BizzyGainz",0,FALSE,FALSE,NA,NA
"RT @NewConstructs: Tesla’s $TSLA market cap is now greater than the next 10 largest auto manufacturers combined. Below, we’ll show the clea…",FALSE,0,NA,2021-11-04 19:38:25,FALSE,NA,"1456345104147439621",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","carstensenfin",3,TRUE,FALSE,NA,NA
"$BTBT Chop up/chop down - on low volume in to close.
No shares left to short... but, they are trying still.
A… https://t.co/mYvepWPamX",FALSE,1,NA,2021-11-04 19:38:19,TRUE,NA,"1456345081800118274",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BluePalm45",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/KsD2BLMT12",FALSE,0,NA,2021-11-04 19:37:41,TRUE,NA,"1456344921942732805",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","DJ_Ciego",0,FALSE,FALSE,NA,NA
"Our top traders caught this insane play which granted our members over 215% on $AMZN!
$AMZN $COIN $CAT $QQQ $ATH… https://t.co/OIfINDLgX9",FALSE,0,NA,2021-11-04 19:37:37,TRUE,NA,"1456344905362591747",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Tiger01255",0,FALSE,FALSE,NA,NA
"RT @InvestrTrades: FREE ALERTS Recap 😍💵💰
$ROKU paid 113%💰
$ABNB paid 35% 💵
$NET paid 45%💵
🔁&❤️40 Likes for Tomorrow Picks!
$SPY $TSLA $…",FALSE,0,NA,2021-11-04 19:37:37,FALSE,NA,"1456344903835807744",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","JDan30",6,TRUE,FALSE,NA,NA
"$AAPL If it doesn't work why stay with your hard earned $? Stopped for a total loss of 20$ on a position size of >… https://t.co/79Jyeri6d8",FALSE,4,"AlexsOptions",2021-11-04 19:37:14,TRUE,"1456344021031346176","1456344808017088512","1123768600836366337","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AlexsOptions",0,FALSE,FALSE,NA,NA
"Live analysis from experienced traders during the premarket hours granted our members over 100% on $AMZN .
$BTC… https://t.co/QS5gC37kHW",FALSE,2,NA,2021-11-04 19:37:11,TRUE,NA,"1456344794624581632",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Tiger01255",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/nSNvojjte0",FALSE,0,NA,2021-11-04 19:36:55,TRUE,NA,"1456344726722973701",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","DJ_Ciego",0,FALSE,FALSE,NA,NA
"$BCTX BOOM TOLD YA BREAKING OUT NHOD 10.22
NEXT 11.28
EPIC SHORT SQUEEZE ON LOW FLOAT WITH
UPCOMING CATALYSTS+… https://t.co/hrxWAjkH7M",FALSE,0,NA,2021-11-04 19:36:39,TRUE,NA,"1456344660608274437",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","CannabisCricket",0,FALSE,FALSE,NA,NA
"RT @MarketRebels: $AAPL planning to discontinue mask mandates for customers beginning Friday",FALSE,0,NA,2021-11-04 19:36:28,FALSE,NA,"1456344616345784329",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","medinacerecero",14,TRUE,FALSE,NA,NA
"Big Tech, Tesla & An ETF to Invest in Disruption. $AMZN $TSLA $AAPL $COIN $LOUP https://t.co/YSCEAE5Sba",FALSE,0,NA,2021-11-04 19:36:19,FALSE,NA,"1456344578794082313",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","ZacksResearch",1,FALSE,FALSE,NA,NA
"$AMD $140 INCOMING!!! TO THE MOON
$NVDA 12.00% up
WERE NEXT!!!! $AMD $140 then $160
$AMD HAS HALF $NVDA FLOAT… https://t.co/5pIBcUSTSL",FALSE,0,NA,2021-11-04 19:36:06,TRUE,NA,"1456344522124783628",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingForGod",0,FALSE,FALSE,NA,NA
"$AMD $140 INCOMING!!! TO THE MOON
$NVDA 12.38% up
WERE NEXT!!!! $AMD $140 then $160
$AMD HAS HALF $NVDA FLOAT… https://t.co/H49jsMsGJQ",FALSE,0,NA,2021-11-04 19:35:35,TRUE,NA,"1456344391040200714",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingForGod",0,FALSE,FALSE,NA,NA
"It’s pretty cool to invest in index funds AND have a selection of your highest convicted stocks.
If I could go ba… https://t.co/dEsDCQa0F1",FALSE,1,NA,2021-11-04 19:35:23,TRUE,NA,"1456344342042456065",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","CryptoTSLA",0,FALSE,FALSE,NA,NA
"$AAPL lets finish 🟢 !",FALSE,0,NA,2021-11-04 19:35:03,FALSE,NA,"1456344259834097665",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Gabriel_mtz01",0,FALSE,FALSE,NA,NA
"$AAPL Popping https://t.co/Tubwe6zWhs",FALSE,2,"AlexsOptions",2021-11-04 19:34:06,FALSE,"1456338951166472194","1456344021031346176","1123768600836366337","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AlexsOptions",0,FALSE,FALSE,NA,NA
"RT @AndrewHiesinger: Top Bullish Order Flow Gainers on the @quantdata
platform so far today:
$TSLA
$AAPL
$NVDA
$AMZN
$AMD
$FB
$MRNA
$CAR…",FALSE,0,NA,2021-11-04 19:33:44,FALSE,NA,"1456343925451542529",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",3,TRUE,FALSE,NA,NA
"RT @Verox_AICrypto: Next:
🔹️ The brilliance of VeroxAI-powered tools is coming to VeroxDex:
We will be showing VeroxAI Algo V2 signals on…",FALSE,0,NA,2021-11-04 19:33:25,FALSE,NA,"1456343846909063171",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","rakprocess",19,TRUE,FALSE,NA,NA
"Most Searched Stocks 🔎
Ticker · Price · Change · Change(%)
$AAPL 151.47$ -0.02$ -0.01%
$FB 33… https://t.co/tNKIe4QzGn",FALSE,0,NA,2021-11-04 19:33:23,TRUE,NA,"1456343840705548291",NA,"<a href=""https://twitter.com"" rel=""nofollow"">Aida_bot</a>","Aidabot1",0,FALSE,FALSE,NA,NA
"Stock Market Top Actives ⇆
Ticker · Price · Change · Change(%)
$CEI 1.23$ -0.02$ -1.60%
$AAPL… https://t.co/KgvXFAPVZp",FALSE,1,NA,2021-11-04 19:33:21,TRUE,NA,"1456343832811892740",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Twitter Bot Tweepy</a>","Bot4DTU",0,FALSE,FALSE,NA,NA
"Apple to Drop Mask Mandate at Many U.S. Stores on Falling Cases $AAPL bullish https://t.co/VzRZnUknlO",FALSE,1,NA,2021-11-04 19:33:14,FALSE,NA,"1456343801979670532",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","WallstJhonnyDip",0,FALSE,FALSE,NA,NA
"Been quiet today. Adding some calls here and there. $PENN $AAPL $MCD",FALSE,0,NA,2021-11-04 19:32:40,FALSE,NA,"1456343658756706310",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","MasterShakeStok",0,FALSE,FALSE,NA,NA
"Open & fund your brokerage account and get 2 free stocks! PLUS: refer 3 people to join Webull and get a share of… https://t.co/5BS2De4zox",FALSE,0,NA,2021-11-04 19:32:38,TRUE,NA,"1456343651504754693",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","CCapp33",0,FALSE,FALSE,NA,NA
"$SPY $TSLA $AAPL Jim's a big time lurker here https://t.co/k63use9O8h",FALSE,0,NA,2021-11-04 19:31:46,FALSE,NA,"1456343431618367496",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","Kansas_Cash",0,FALSE,FALSE,NA,NA
"RT @AndrewHiesinger: Top Bullish Order Flow Gainers on the @quantdata
platform so far today:
$TSLA
$AAPL
$NVDA
$AMZN
$AMD
$FB
$MRNA
$CAR…",FALSE,0,NA,2021-11-04 19:30:47,FALSE,NA,"1456343185333104642",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","sonnyrico",3,TRUE,FALSE,NA,NA
"$SPY $TSLA $AAPL Forgot I made so many thanksgiving memes lol https://t.co/vo5Hr4T9BX",FALSE,0,NA,2021-11-04 19:30:15,FALSE,NA,"1456343050750418960",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","Kansas_Cash",0,FALSE,FALSE,NA,NA
"Apple ordered to pay $1.9 million to Chinese publisher over copyright case https://t.co/km2d617O1A $AAPL https://t.co/5Cgs948DHq",FALSE,0,NA,2021-11-04 19:30:06,FALSE,NA,"1456343014385741832",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"Best deals Nov. 4: $299 for a 65-inch 4K TV, $500 off Intel 16-inch MacBook Pro, more! https://t.co/kbpqAz40Q9 $AAPL https://t.co/mutX3szE6d",FALSE,0,NA,2021-11-04 19:30:04,FALSE,NA,"1456343002780102670",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","MacHashNews",0,FALSE,FALSE,NA,NA
"$AAPL Bought last watch they had for the wife. No Macs No ipads. They blamed supply chain. Manager said the back orders are for ever",FALSE,0,NA,2021-11-04 19:29:36,FALSE,NA,"1456342887260696585",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","JoeWard96208965",0,FALSE,FALSE,NA,NA
"RT @moneymotive888: $AAPL 160c 11/26 @ 0.60 taking with @ProphitcyTrades for a swing trade. Patience",FALSE,0,NA,2021-11-04 19:29:08,FALSE,NA,"1456342769857974274",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","haarithbyinvest",5,TRUE,FALSE,NA,NA
"RT @InvestrTrades: FREE ALERTS Recap 😍💵💰