-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
spy_NOV_2021.csv
We can't make this file beautiful and searchable because it's too large.
8265 lines (6706 loc) · 905 KB
/
spy_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"
"The next $gme and $amc $BBIG and $SPRT is here. Dont miss it this time!
Click here! 😎📈… https://t.co/GQtb5x5Blz",FALSE,0,NA,2021-11-04 21:25:20,TRUE,NA,"1456372013472235534",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","crypto_hodler1",0,FALSE,FALSE,NA,NA
"RT @stoxrock: $SPY Today is 1826 Days from the March 6,2009 low, that equals the run from 2002 low; 77.07 to the 10/07 high of 157.52, Gann…",FALSE,0,NA,2021-11-04 21:25:09,FALSE,NA,"1456371966932238336",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Ew_trader",1,TRUE,FALSE,NA,NA
"RT @WuffettBarken: Rare phenomenon:
$SPY session VWAP is going down while price is going up.
VWAP went from 466.03 to 465.7 while price is…",FALSE,0,NA,2021-11-04 21:24:45,FALSE,NA,"1456371867321872393",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","HangNgu84113622",6,TRUE,FALSE,NA,NA
"@GAAoptionsVIP Looking forward to it, if folks cant make the live voice, will the announcement be posted later? Tha… https://t.co/4Z7M3WHfl4",FALSE,0,"GAAoptionsVIP",2021-11-04 21:24:28,TRUE,"1456371392509710339","1456371793195794438","1349412558218805248","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","OptionTrader187",0,FALSE,FALSE,NA,NA
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 21:23:43,FALSE,NA,"1456371605475573764",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Maximilianvict9",14,TRUE,FALSE,NA,NA
"$SPY $SPX $ES_F Tomorrow will be",FALSE,0,NA,2021-11-04 21:23:18,FALSE,NA,"1456371502362857475",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","FintwitMeter",0,FALSE,FALSE,NA,NA
"$SPY I think every is wrong about inflation.",FALSE,0,NA,2021-11-04 21:23:12,FALSE,NA,"1456371474315595782",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","LyfeOfPELK",0,FALSE,FALSE,NA,NA
"$SPY Brandon https://t.co/GtulTNMLZP",FALSE,0,NA,2021-11-04 21:22:05,FALSE,NA,"1456371194643554304",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TheBananaTrader",0,FALSE,FALSE,NA,NA
"Interesting how bullish setups are often accompanied by bullish news and Bearish setups are often accompanied by bearish news
$SPY $QQQ $IWM",FALSE,0,NA,2021-11-04 21:21:43,FALSE,NA,"1456371104033902593",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","SpecuIator_",0,FALSE,FALSE,NA,NA
"Hitting your targets Steve - WOW - nice work!!! $SPY $QQQ $SOXX $IWM $VXX https://t.co/dPK4dQKP1y",FALSE,0,NA,2021-11-04 21:20:25,FALSE,NA,"1456370776639262731",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RachelCordatus",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
"RT @SpyGuyTrading: This escalated quickly
$SPY https://t.co/2ATGibpqCW",FALSE,0,NA,2021-11-04 21:19:06,FALSE,NA,"1456370441841479693",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Chinichini11",3,TRUE,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
"RT @ukarlewitz: @TradewellApp Hit the top rail at HOD (scroll up). Probably hits it again $spy https://t.co/IY3Z4BlXHp",FALSE,0,NA,2021-11-04 21:18:56,FALSE,NA,"1456370403161477124",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","Whipsawedtrader",1,TRUE,FALSE,NA,NA
"RT @SpyGuyTrading: $SPY
Saw a sea of red start coming through the flow.
That paired with a beautiful wedge was the perfect recipe for $SPY…",FALSE,0,NA,2021-11-04 21:18:30,FALSE,NA,"1456370293379899400",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Chinichini11",3,TRUE,FALSE,NA,NA
"@TradewellApp Hit the top rail at HOD (scroll up). Probably hits it again $spy https://t.co/IY3Z4BlXHp",FALSE,5,"ukarlewitz",2021-11-04 21:18:25,FALSE,"1456274722618953730","1456370270277570561","37284991","<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","ukarlewitz",1,FALSE,FALSE,NA,NA
"POLL: will poors donate all or nearly 100% of the premium they spend on $SPY 468 strike put options tomorrow?
$SPX $QQQ $VIX",FALSE,0,NA,2021-11-04 21:17:42,FALSE,NA,"1456370089427705858",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","mikeo188",0,FALSE,FALSE,NA,NA
"RT @TKPTrader: $IWM breadth confirming the break out after a series of positive divergences $SPY https://t.co/IPkpYqifOQ",FALSE,0,NA,2021-11-04 21:17:18,FALSE,NA,"1456369990437941251",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Nvest_In_You",6,TRUE,FALSE,NA,NA
"RT @JimJame74888138: VIX vs $SPY https://t.co/uTPCJ1KxI2",FALSE,0,NA,2021-11-04 21:16:50,FALSE,NA,"1456369873521557509",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","White_RhinoCap",5,TRUE,FALSE,NA,NA
"$ABNB will move like a monster tomorrow. Beat earnings, 3x usage, reopening stock what else can you ask for? Rememb… https://t.co/D1UM6nAW8e",FALSE,0,NA,2021-11-04 21:16:45,TRUE,NA,"1456369853577695232",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","Imkingjon",0,FALSE,FALSE,NA,NA
"RT @jorgeacosta1299: God bless $spy & America 🇺🇸",FALSE,0,NA,2021-11-04 21:15:24,FALSE,NA,"1456369514430435329",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","jorgeacosta1299",1,TRUE,FALSE,NA,NA
"RT @trades_moto: This week has been absolute fire. @coltonoptions bringing the heat on the calls. Legacy group rocking it. Members getting…",FALSE,0,NA,2021-11-04 21:14:39,FALSE,NA,"1456369323094708225",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","coltonoptions",1,TRUE,FALSE,NA,NA
"Falling market prices occur a few days after a New Moon. Today we have a New Moon. Plus the markets been running la… https://t.co/1QXLWfoHxe",FALSE,0,NA,2021-11-04 21:14:34,TRUE,NA,"1456369303209615362",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","978ProfessorX",0,FALSE,FALSE,NA,NA
"I decided to swing my $ETH & sold around $4550 yesterday for a 6% profit.
I'm looking to reallocate that capital i… https://t.co/FBE1HaZ8yg",FALSE,1,NA,2021-11-04 21:14:32,TRUE,NA,"1456369293264838665",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","context_trading",0,FALSE,FALSE,NA,NA
"RT @BBaxter2020: $XLK: $SPY relative strength breakout out of multi month range, breaking to new ATH's https://t.co/xNu4rr3kni",FALSE,0,NA,2021-11-04 21:14:31,FALSE,NA,"1456369289108328452",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Biggreencandle",1,TRUE,FALSE,NA,NA
"This week has been absolute fire. @coltonoptions bringing the heat on the calls. Legacy group rocking it. Members g… https://t.co/dMAXOdfApD",FALSE,1,NA,2021-11-04 21:14:17,TRUE,NA,"1456369231361155077",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","trades_moto",1,FALSE,FALSE,NA,NA
"RT @TeresaTrades: $SPY $QQQ $IWM $DIA $VIX Fear & Greed Index https://t.co/4ECuQmHnMc",FALSE,0,NA,2021-11-04 21:12:12,FALSE,NA,"1456368705315618816",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","POYA_Univ_Grad",2,TRUE,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 @TKPTrader: $IWM breadth confirming the break out after a series of positive divergences $SPY https://t.co/IPkpYqifOQ",FALSE,0,NA,2021-11-04 21:11:07,FALSE,NA,"1456368434850246660",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","LesscoMatt",6,TRUE,FALSE,NA,NA
"RT @KeithMcCullough: BREAKING: 63rd and 40th all-time closing highs of 2021 for $SPY and $QQQ ...
are now the #history Old Wall fund mana…",FALSE,0,NA,2021-11-04 21:11:02,FALSE,NA,"1456368415518576643",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","thedualMandate",2,TRUE,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
"Bloomberg Index #Yield
U.S. #Treasury 1.15%
U.S. #MBS 1.89%
U.S. Investment Grade #Corporate 2.24%
U.S. #HighYield… https://t.co/dcSsgPLCmS",FALSE,0,NA,2021-11-04 21:09:46,TRUE,NA,"1456368095757410304",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BoB2Trader",0,FALSE,FALSE,NA,NA
"RT @JimJame74888138: VIX vs $SPY https://t.co/uTPCJ1KxI2",FALSE,0,NA,2021-11-04 21:08:59,FALSE,NA,"1456367896469327873",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingLucid",5,TRUE,FALSE,NA,NA
"$SPY another all time high tomorrow $AMD $NVDA ️",FALSE,2,NA,2021-11-04 21:08:55,FALSE,NA,"1456367882539966464",NA,"<a href=""https://sites.tufts.edu/ualab/"" rel=""nofollow"">UAL @ UEP</a>","SerafinFood",0,FALSE,FALSE,NA,NA
"RT @smashelito: #ES_F
Strong breakout from yesterday's main distribution - now support area. Two sets of single prints - will they get an…",FALSE,0,NA,2021-11-04 21:08:06,FALSE,NA,"1456367674535997440",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","hello_grady",13,TRUE,FALSE,NA,NA
"RT @sagestrategy: $SPY $TLT U.S. Trade Deficit Hits Fresh Record on Goods Demand, Higher Inflation https://t.co/1X3bYAKExt
This is no surpr…",FALSE,0,NA,2021-11-04 21:08:01,FALSE,NA,"1456367652507684865",NA,"<a href=""http://goalse.com"" rel=""nofollow"">Goalse</a>","goalsecom",1,TRUE,FALSE,NA,NA
"$QQQ $SPY hitting RSI reading I have been trimming leveraged index positions into the strength https://t.co/w9PwI7yy6V",FALSE,0,NA,2021-11-04 21:08:00,FALSE,NA,"1456367649760464897",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Amy_Klobuchar0",0,FALSE,FALSE,NA,NA
"S&P 500 E-mini #Futures #ES_F ⬆21 Points (0.45%) to 4,672.75 #SP500 $SPX $SPY #futurestrading #future #Investment… https://t.co/AfKQNYpIQ5",FALSE,0,NA,2021-11-04 21:07:57,TRUE,NA,"1456367635952648199",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
"A nice print for $SPY at 5:07pm
Click https://t.co/FEElA5dBZq
for more.
Runners 📈: https://t.co/VC1LdPHaJR
Losers 📉… https://t.co/DfKdxx0tf8",FALSE,0,NA,2021-11-04 21:07:03,TRUE,NA,"1456367410227957766",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">TradeWithAI</a>","TradeWithAlerts",0,FALSE,FALSE,NA,NA
"RT @manpreetkailon: $SPY
Powell Says Fed On Track To Begin Taper, Complete By Mid-2022",FALSE,0,NA,2021-11-04 21:06:52,FALSE,NA,"1456367365436977156",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Hopkins622",3,TRUE,FALSE,NA,NA
"$SPY oficially began the pullback....460 by tomorrow close",FALSE,0,NA,2021-11-04 21:06:47,FALSE,NA,"1456367342993215492",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","emboscado2010",0,FALSE,FALSE,NA,NA
"#Options #maxpain chart for $SPY. Free options app https://t.co/EQL2cBOq5n https://t.co/zfWZ28ATEr",FALSE,0,NA,2021-11-04 21:04:44,FALSE,NA,"1456366826808492037",NA,"<a href=""https://appsto.re/us/viPH2.i"" rel=""nofollow"">OptionsMaxPain_Post</a>","OptionsMaxPain",0,FALSE,FALSE,NA,NA
"RT @t1alpha: Spot up, Vol up:
In the past, when $SPX and the $VIX started moving in the same direction in a short period of time, the mark…",FALSE,0,NA,2021-11-04 21:04:21,FALSE,NA,"1456366733028102150",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","ArlineHunter11",2,TRUE,FALSE,NA,NA
"""We don't think it's time yet to raise interest rates. There is still ground to cover to reach maximum employment,… https://t.co/luHCpEFFT7",FALSE,0,NA,2021-11-04 21:03:16,TRUE,NA,"1456366460243046401",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BoB2Trader",0,FALSE,FALSE,NA,NA
"A nice print for $SPY at 5:03pm
Click https://t.co/FEElA5dBZq
for more.
Runners 📈: https://t.co/VC1LdPHaJR
Losers 📉… https://t.co/9FN8N38WCk",FALSE,0,NA,2021-11-04 21:03:12,TRUE,NA,"1456366441045823494",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">TradeWithAI</a>","TradeWithAlerts",0,FALSE,FALSE,NA,NA
"#izmit #youngjae 5up $troy $win jared leto sergio ramos $wex #prabhas $mttr $spy $atom #disneyplus $msft usman… https://t.co/kuTlXeAPuR",FALSE,0,NA,2021-11-04 21:02:57,TRUE,NA,"1456366377753776133",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","WeaselMomma",0,FALSE,FALSE,NA,NA
"A nice print for $SPY at 5:02pm
Click https://t.co/FEElA5dBZq
for more.
Runners 📈: https://t.co/VC1LdPHaJR
Losers 📉… https://t.co/buWNb9BiVB",FALSE,0,NA,2021-11-04 21:02:02,TRUE,NA,"1456366148006596610",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">TradeWithAI</a>","TradeWithAlerts",0,FALSE,FALSE,NA,NA
"There were warning signs today that I hope traders payed attention too. $ES $MES $SPY $SPX
https://t.co/YzHc85WXaX https://t.co/RzETRp0cuJ",FALSE,3,NA,2021-11-04 21:01:29,FALSE,NA,"1456366009443569668",NA,"<a href=""https://www.canva.com"" rel=""nofollow"">Canva</a>","_Mike_Swartz",1,FALSE,FALSE,NA,NA
"A nice print for $SPY at 5:01pm
Click https://t.co/FEElA5dBZq
for more.
Runners 📈: https://t.co/VC1LdPHaJR
Losers 📉… https://t.co/TGmICbm9Rw",FALSE,0,NA,2021-11-04 21:01:27,TRUE,NA,"1456366003705860101",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">TradeWithAI</a>","TradeWithAlerts",0,FALSE,FALSE,NA,NA
"Sending these into tomorrow’s session $SPY https://t.co/S1PDTgP4yD",FALSE,0,NA,2021-11-04 21:01:10,FALSE,NA,"1456365930225750024",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","fiend_stock",0,FALSE,FALSE,NA,NA
"r/WallStreetBets daily discussion mentions over the last hour (rank 1-10)
1. $PTON (149 mentions)
2. $NET (45)
3.… https://t.co/TaYqGFRlSs",FALSE,0,NA,2021-11-04 21:00:19,TRUE,NA,"1456365715116773380",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 @JimJame74888138: VIX vs $SPY https://t.co/uTPCJ1KxI2",FALSE,0,NA,2021-11-04 21:00:16,FALSE,NA,"1456365702575763459",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","billy_sweet",5,TRUE,FALSE,NA,NA
"$SPY 760,596 sats
1 hour change:
-771 (-0.10%)
24 hour change:
+18902 (+2.49%)
Calculations based on:
$BTC $61373.49
$SPY $466.91",FALSE,0,NA,2021-11-04 21:00:02,FALSE,NA,"1456365646711824405",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Sats Standard</a>","SatsStandard",0,FALSE,FALSE,NA,NA
"$spy $vix $qqq $vxx $amzn $gme $amc $nvda $amd $tsla
This insane rally up has surprised many just how “overbought… https://t.co/2BqXhIe0TN",FALSE,0,NA,2021-11-04 20:59:41,TRUE,NA,"1456365556987203600",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Davids199122",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
"I loaded some $Tlry calls today. Something awfully funny about Jpm and that prime statement. #mjna $spy $cgc earnin… https://t.co/X8JC97ePQM",FALSE,1,NA,2021-11-04 20:59:23,TRUE,NA,"1456365483427512323",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","theLEVerageurr",0,FALSE,FALSE,NA,NA
"RT @JimJame74888138: VIX vs $SPY https://t.co/uTPCJ1KxI2",FALSE,0,NA,2021-11-04 20:59:21,FALSE,NA,"1456365471607971847",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","ray_hessel",5,TRUE,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
"$XLK: $SPY relative strength breakout out of multi month range, breaking to new ATH's https://t.co/xNu4rr3kni",FALSE,2,NA,2021-11-04 20:58:20,FALSE,NA,"1456365217865211904",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BBaxter2020",1,FALSE,FALSE,NA,NA
"$SNAP $MU $GE $BA $BAC $SQ $F $GOOGL $GPRO $ACB $JNUG $ETH.X $SBUX $ROKU $INTC $SHOP $UBER $CRON $USO $SPX $IBOI… https://t.co/AnkcPeZkAM",FALSE,0,NA,2021-11-04 20:58:17,TRUE,NA,"1456365205416394773",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","SheldonKooper7",0,FALSE,FALSE,NA,NA
"Top alert posted by the Xtrades analysts today!
$BTC $ETH $ECH $BCH $LTC $AMPL $XTZ $XLM $XOM
$APPL $ZM $FB $SPY… https://t.co/MS7qanLkbp",FALSE,0,NA,2021-11-04 20:58:00,TRUE,NA,"1456365133630894096",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","SheldonKooper7",0,FALSE,FALSE,NA,NA
"$JAKK $DYNT $SPV $LMND $GNUS $GRAF $BIOL $NOVN $CHFS $AYRO $SOLO $CEMI $APT $NBY $CLSN $CHFS $MARK $SHLO $NIO $DLPN… https://t.co/4WUTgXmAwo",FALSE,0,NA,2021-11-04 20:57:44,TRUE,NA,"1456365068208140305",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","SheldonKooper7",0,FALSE,FALSE,NA,NA
"$SPY 3:24""So he drove out the man; and he placed at the east of the garden of Eden Cherubims, and a flaming sword w… https://t.co/TKUDCLzV9E",FALSE,0,"Fangtooth124875",2021-11-04 20:57:00,TRUE,"1456364051320168450","1456364882396336131","1284941311150350336","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Fangtooth124875",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
"Updated Fed Balance Sheet vs $SPX $SPY
Fed BS hits another ATH $8.57 (on it's way to 10T)
$NDX $QQQ $RUT $IWM https://t.co/peTo2y7YRy",FALSE,0,NA,2021-11-04 20:56:41,FALSE,NA,"1456364804474605572",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","PicassoCharts",0,FALSE,FALSE,NA,NA
"Since I don't believe in obvious chart patterns (head and shoulders are post move fake news) my bet is that Bond fu… https://t.co/c8IdPvIQXE",FALSE,0,NA,2021-11-04 20:56:18,TRUE,NA,"1456364705388261418",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","BlackLiteRelle",0,FALSE,FALSE,NA,NA
"RT @Kailash5086: Top CRYPTO Tokens by Social Activity
$CAKE $AXS $MATIC $LINK $POP $RARI $FTM $POODL $STARL $SPY https://t.co/Q4bvWYIVWQ",FALSE,0,NA,2021-11-04 20:56:14,FALSE,NA,"1456364687348666383",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","CRYPT0CRYPTO",2,TRUE,FALSE,NA,NA
"RT @HedgyAnalytics: iShares Country #ETFs holdings show that $EWH $MCHI $EEM have the worst #Sentiment while $EWG $SPY $EWQ have the best.…",FALSE,0,NA,2021-11-04 20:56:07,FALSE,NA,"1456364658848407560",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Due_Dillie",0,TRUE,FALSE,NA,NA
"@SStallionaires $SPY, ALGO called this and our Admins went to work. Are you missing out on #optionstrade… https://t.co/VHyOnt1KCd",FALSE,0,"SStallionaires",2021-11-04 20:56:02,TRUE,NA,"1456364637662892034","1369694803299102729","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","mrpeterchang",0,FALSE,FALSE,NA,NA
"Look at this meme stock. What pump & dump. $SPY $QQQ https://t.co/mFHBYZhSbo",FALSE,0,NA,2021-11-04 20:55:49,FALSE,NA,"1456364584097488897",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","decodefinance",0,FALSE,FALSE,NA,NA
"@JeffBooth The growth of crypto is dependent on the expansion of the money supply. If liquidity is reduced, only p… https://t.co/UWUmiNvFon",FALSE,0,"JeffBooth",2021-11-04 20:55:06,TRUE,"1455578402690318351","1456364402312155140","16461706","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Blofeld",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: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 @JimJame74888138: VIX vs $SPY https://t.co/uTPCJ1KxI2",FALSE,0,NA,2021-11-04 20:54:32,FALSE,NA,"1456364262453035008",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","JoeHarper",5,TRUE,FALSE,NA,NA
"$SPY $TLT U.S. Trade Deficit Hits Fresh Record on Goods Demand, Higher Inflation https://t.co/1X3bYAKExt
This is no… https://t.co/MBIXR9cb2M",FALSE,2,NA,2021-11-04 20:54:20,TRUE,NA,"1456364209302818821",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","sagestrategy",1,FALSE,FALSE,NA,NA
"RT @SpyHards: Cam and I are more Cross-No than Crossbow when it comes to flying a U1 rocket! 🚀
So strap yourselves in for our review of t…",FALSE,0,NA,2021-11-04 20:53:49,FALSE,NA,"1456364082978713626",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","PodcastRiddle",14,TRUE,FALSE,NA,NA
"A trader looking for a directional move by opening a straddle of $SPY 1000 May 20 '22 $468.",FALSE,0,NA,2021-11-04 20:53:49,FALSE,NA,"1456364081439404051",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","TheSetup_GHu",0,FALSE,FALSE,NA,NA
"$SPY What is the Tree of Life you think is, Wall street?",FALSE,0,"Fangtooth124875",2021-11-04 20:53:42,FALSE,"1456363829588332552","1456364051320168450","1284941311150350336","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Fangtooth124875",0,FALSE,FALSE,NA,NA
"$SPY there isnt pullback here? This bubble is bigger that anything i had ever seen before",FALSE,0,NA,2021-11-04 20:53:32,FALSE,NA,"1456364011738570757",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","emboscado2010",0,FALSE,FALSE,NA,NA
"$SPY No worries Wall Street, Nature will serve you up to Serpent the way he likes dust. 3:22 And the LORD God said… https://t.co/0sOBq2RRjC",FALSE,0,"Fangtooth124875",2021-11-04 20:52:49,TRUE,"1456363123980578824","1456363829588332552","1284941311150350336","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Fangtooth124875",0,FALSE,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
"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
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 20:52:05,FALSE,NA,"1456363644673945617",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","JohnCarlos",14,TRUE,FALSE,NA,NA
"$FB $PENN $SPY https://t.co/5zaG7mDpEs",FALSE,0,NA,2021-11-04 20:52:01,FALSE,NA,"1456363628697894917",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Hunter_407",0,FALSE,FALSE,NA,NA
"$SPY oh holy sh*t bears, it isn't even a blow off top either.",FALSE,1,NA,2021-11-04 20:51:24,FALSE,NA,"1456363472795672579",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TheDogeSon1",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
"$SPY $QQQ Earning pretty much suck. $MRNA $SQ $PTON Uber, Penn, Wayfair, Skyworks. Pinterest was decent
Growth is… https://t.co/qq1lGf7ytx",FALSE,0,NA,2021-11-04 20:51:04,TRUE,NA,"1456363388414554117",NA,"<a href=""https://github.com/aindriladhar"" rel=""nofollow"">test_ibm_andy_dhar</a>","Aindril25950347",0,FALSE,FALSE,NA,NA
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 20:50:53,FALSE,NA,"1456363341887197190",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","RogerGonzalezC3",14,TRUE,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
"$SPY ""3:19In the sweat of thy face shalt thou eat bread, till thou return unto the ground; for out of it wast thou… https://t.co/fMpndb6TNZ",FALSE,0,"Fangtooth124875",2021-11-04 20:50:01,TRUE,"1456362554431844361","1456363123980578824","1284941311150350336","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Fangtooth124875",0,FALSE,FALSE,NA,NA
"$IWM is continuing to grind upward as anticipated 👇 Recall that last Oct when IWM broke out, it marched straight u… https://t.co/ytNFwuc2A4",FALSE,2,NA,2021-11-04 20:49:44,TRUE,NA,"1456363054128525325",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AnnTrades",0,FALSE,FALSE,NA,NA
"RT @TeresaTrades: $SPY $QQQ $IWM $DIA $VIX Market momo & activity https://t.co/3K59kXqNDh",FALSE,0,NA,2021-11-04 20:49:14,FALSE,NA,"1456362927351533569",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","GiancarloChimie",1,TRUE,FALSE,NA,NA
"$SPY $QQQ $IWM $DIA $VIX Preliminary option volume of 50.1M today is 29% above recent average. Calls led puts 33.30M to 16.79M",FALSE,0,NA,2021-11-04 20:48:21,FALSE,NA,"1456362705846210575",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TeresaTrades",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
"VIX vs $SPY https://t.co/uTPCJ1KxI2",FALSE,37,NA,2021-11-04 20:47:48,FALSE,NA,"1456362566540795914",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","JimJame74888138",5,FALSE,FALSE,NA,NA
"market seems frothy right now. $spy $spx $qqq $ndx",FALSE,0,NA,2021-11-04 20:47:46,FALSE,NA,"1456362556994457600",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","C7VetteStingray",0,FALSE,FALSE,NA,NA
"$SPY ""3:14And the LORD God said unto the serpent, Because thou hast done this, thou art cursed above all cattle, an… https://t.co/ibqwhdRpjI",FALSE,0,"Fangtooth124875",2021-11-04 20:47:45,TRUE,"1456357877900251136","1456362554431844361","1284941311150350336","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Fangtooth124875",0,FALSE,FALSE,NA,NA
"$SPY $QQQ $IWM $DIA $VIX Closing imbalance = ~$361M to the BUY side https://t.co/keJ1L8dy7W",FALSE,0,NA,2021-11-04 20:47:43,FALSE,NA,"1456362546039074820",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TeresaTrades",0,FALSE,FALSE,NA,NA
"$SPY #Options OI chart. Free stock apps https://t.co/7Rm8mjs1IV https://t.co/tEOoiGPOYM",FALSE,0,NA,2021-11-04 20:47:43,FALSE,NA,"1456362544025661458",NA,"<a href=""https://appsto.re/us/viPH2.i"" rel=""nofollow"">OptionsProOI</a>","OptionsProOI",0,FALSE,FALSE,NA,NA
"$SPY $VXX $QQQ $DIA just realized I forgot to answer ppls q&a drop your questions make em’ count only answering 5… https://t.co/RgaCOQzfo5",FALSE,0,NA,2021-11-04 20:47:10,TRUE,NA,"1456362405441769478",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","joker_tradez",0,FALSE,FALSE,NA,NA
"RT @TeresaTrades: $SPY $QQQ $IWM $DIA $VIX Fear & Greed Index https://t.co/4ECuQmHnMc",FALSE,0,NA,2021-11-04 20:47:03,FALSE,NA,"1456362376530325511",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RameshV74174402",2,TRUE,FALSE,NA,NA
"RT @JesseCohenInv: At this rate, we'll be at '100' by Thanksgiving $SPY $QQQ https://t.co/RWTORnHPKi",FALSE,0,NA,2021-11-04 20:46:59,FALSE,NA,"1456362363196633115",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","ruri_invest",35,TRUE,FALSE,NA,NA
"$SPY $QQQ $IWM $DIA $VIX Market momo & activity https://t.co/3K59kXqNDh",FALSE,1,NA,2021-11-04 20:46:48,FALSE,NA,"1456362315025104907",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TeresaTrades",1,FALSE,FALSE,NA,NA
"RT @macroalgo: Waiting For The DIP! on SPY https://t.co/RdNEfJ1FEG $SPY",FALSE,0,NA,2021-11-04 20:46:40,FALSE,NA,"1456362280896000012",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","alpine1600sc",1,TRUE,FALSE,NA,NA
"$COIN to the moon! Huge gains thanks to the BSB Discord.
Pop5Min: $PTON $UBER $PINS $EXPE $SPY $SQ $DOGE $SHIB https://t.co/bAbyjltGmp",FALSE,0,NA,2021-11-04 20:46:18,FALSE,NA,"1456362189753917445",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","NikolaB61006558",0,FALSE,FALSE,NA,NA
"[SCAN RESULTS - 15m]
Exchange: #FTX
Top 5 bullish trend (#PERP futures)
1: $CUSDT
2: $BSV
3: $CRO
4: $OMG
5:… https://t.co/qUc0XKDsx6",FALSE,0,NA,2021-11-04 20:46:09,TRUE,NA,"1456362150721638402",NA,"<a href=""https://dyor.net"" rel=""nofollow"">DYORCryptoBot</a>","DYORCryptoBot",0,FALSE,FALSE,NA,NA
"$SPY $QQQ $IWM $DIA $VIX Fear & Greed Index https://t.co/4ECuQmHnMc",FALSE,1,NA,2021-11-04 20:45:57,FALSE,NA,"1456362099861561347",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TeresaTrades",2,FALSE,FALSE,NA,NA
"Chop day in the $SPY but take a 30,000 foot view of the action by looking at a 2-day, 2-minute chart w/volume profi… https://t.co/6nLD3aUFmK",FALSE,2,NA,2021-11-04 20:45:53,TRUE,NA,"1456362085101838342",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","portfolioptions",0,FALSE,FALSE,NA,NA
"Live alert bot, alerts, and price targets provided by analyst helped our members catch a 828% run on $DJI
$GNID… https://t.co/q5MIBtAXTI",FALSE,0,NA,2021-11-04 20:45:50,TRUE,NA,"1456362071084331053",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","vanhiha",0,FALSE,FALSE,NA,NA
"Zoom out lads, if this don't bother you, maybe it should, our 200ma is at the weekly/monthly pivot, we're nearing R… https://t.co/IJMyxd9eMq",FALSE,1,NA,2021-11-04 20:44:24,TRUE,NA,"1456361709568921600",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","PaddyOnAddy",0,FALSE,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
"Exactly that's basically the same reason why I said $SPY will reach 470 and then head back down. Just following the… https://t.co/Aaoq1Q2XMo",FALSE,0,NA,2021-11-04 20:43:46,TRUE,NA,"1456361551686889506",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","traderstan5",0,FALSE,FALSE,NA,NA
"Qs at 5 ATR. Welcome to Thunderdome. $QQQ $SPY",FALSE,1,NA,2021-11-04 20:43:12,FALSE,NA,"1456361409701457920",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","JBL73",0,FALSE,FALSE,NA,NA
"RT @Kailash5086: Top CRYPTO Tokens by Social Activity
$CAKE $AXS $MATIC $LINK $POP $RARI $FTM $POODL $STARL $SPY https://t.co/Q4bvWYIVWQ",FALSE,0,NA,2021-11-04 20:43:07,FALSE,NA,"1456361388906057728",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","B055Lady_Elle",2,TRUE,FALSE,NA,NA
"$SPY
Chip, growth shares lift S&P 500, Nasdaq to record highs
#Nasdaq
https://t.co/OsZjgYa1Rc",FALSE,0,NA,2021-11-04 20:42:41,FALSE,NA,"1456361280739045382",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">newapidogeattache</a>","dogeattache",0,FALSE,FALSE,NA,NA
"$PTON Hey guys. $ZM is next. That's going down hard after earnings imo. $SPY 👁",FALSE,2,NA,2021-11-04 20:41:44,FALSE,NA,"1456361039361044511",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">LiveIPLUpdates</a>","LiveIPLUpdates2",0,FALSE,FALSE,NA,NA
"$FB closed +$423 higher than the previous close. We’ll see at least $340 tomorrow, as long as $SPY & $QQQ behaves.… https://t.co/yo7Mu27XHN",FALSE,0,NA,2021-11-04 20:41:37,TRUE,NA,"1456361011737419777",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Solidified",0,FALSE,FALSE,NA,NA
"TOP COINS in crypto markets
$RUNE $SOL $FTM $MOVR $LUNA $EGLD $AVAX $SUPER $POLS $SPY https://t.co/t6YlRNBNDl",FALSE,2,NA,2021-11-04 20:41:36,FALSE,NA,"1456361006884548660",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Kailash5086",0,FALSE,FALSE,NA,NA
"$ROKU - lowest strike still worthless
$PINS - puts 🔥 fail
$BILL -calls (flowalgo had a $10 mil golden ticket on it… https://t.co/VRBh7arpKQ",FALSE,1,NA,2021-11-04 20:40:40,TRUE,NA,"1456360773429587978",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","VValt_Disney",0,FALSE,FALSE,NA,NA
"Result in multiple multipliers of buying. Algorithms are confused momentarily. The forecast is the $SPY trading at… https://t.co/tzXbFKkqKV",FALSE,0,"brotherlydon",2021-11-04 20:40:26,TRUE,"1456360712234799111","1456360714780745740","1449203086921281542","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","brotherlydon",0,FALSE,FALSE,NA,NA
"RT @seeitmarket: NEW Article: ""History Warns Federal Reserve Will Raise Rates More, Not Less"" - https://t.co/Fv96mhNrRx
by @MichaelLebowi…",FALSE,0,NA,2021-11-04 20:40:06,FALSE,NA,"1456360629619593219",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","1DownFinancial",3,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
"$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
"Since I don't believe in obvious chart patterns (head and shoulders are post move fake news) my bet is that Bond fu… https://t.co/wo0kIKu2C3",FALSE,0,NA,2021-11-04 20:39:13,TRUE,NA,"1456360407199739919",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","BlackLiteRelle",0,FALSE,FALSE,NA,NA
"$SPY $SPX $QQQ and for those IQ deficient lemmings who claim science while at the same time disregarding science...… https://t.co/uu2rAdqn8U",FALSE,1,NA,2021-11-04 20:39:08,TRUE,NA,"1456360387339816967",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TheBananaTrader",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
"$spy and $QQQ look interesting still tho imma stay on the sidelines",FALSE,0,NA,2021-11-04 20:39:06,FALSE,NA,"1456360375511834633",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","joker_tradez",0,FALSE,FALSE,NA,NA
"$SPY pullback or $468 tomorrow ? 🧐",FALSE,0,NA,2021-11-04 20:39:03,FALSE,NA,"1456360363004416001",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","cyberstocktrade",0,FALSE,FALSE,NA,NA
"$SPY Imma get some $400 dollar puts for April 14th",FALSE,0,NA,2021-11-04 20:38:52,FALSE,NA,"1456360319207493639",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","LyfeOfPELK",0,FALSE,FALSE,NA,NA
"And honestly, what a disgrace it would be if $SPX doesn't hit 4700.0
$SPY $QQQ
https://t.co/4kGo935W04",FALSE,1,NA,2021-11-04 20:38:50,FALSE,NA,"1456360311687159813",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","mikeo188",0,FALSE,FALSE,NA,NA
"Top CRYPTO Tokens by Social Activity
$CAKE $AXS $MATIC $LINK $POP $RARI $FTM $POODL $STARL $SPY https://t.co/Q4bvWYIVWQ",FALSE,2,NA,2021-11-04 20:38:40,FALSE,NA,"1456360269647540229",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Kailash5086",2,FALSE,FALSE,NA,NA
"$SPY Today is 1826 Days from the March 6,2009 low, that equals the run from 2002 low; 77.07 to the 10/07 high of 15… https://t.co/NGxrhDW0Vl",FALSE,15,NA,2021-11-04 20:38:22,TRUE,NA,"1456360192485072903",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","stoxrock",1,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 @AceOfWallSt: Closing bell.🔔
$SPY $SAVA $NRDS
$NVDA $EVAX $PETZ https://t.co/IT6JaTEFZE",FALSE,0,NA,2021-11-04 20:37:23,FALSE,NA,"1456359947177009154",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Aussie_Aurora",1,TRUE,FALSE,NA,NA
"I can’t wait to see $SPY @ $500",FALSE,0,NA,2021-11-04 20:37:02,FALSE,NA,"1456359857251135490",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","notalexmerkel",0,FALSE,FALSE,NA,NA
"I $SPY a new All-Time High.",FALSE,1,NA,2021-11-04 20:36:41,FALSE,NA,"1456359768466018312",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","PotatoBanker",0,FALSE,FALSE,NA,NA
"My most recent $SPY swing trade. I entered this yesterday, made 12.5% overnight.
I’m looking to exit either this u… https://t.co/cY2e5nhA0x",FALSE,0,NA,2021-11-04 20:36:24,TRUE,NA,"1456359697397673989",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","FlexinFinancial",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
"$SPY Craziest part is inverse head and shoulders generally to cover this much ground percentage wise in the past to… https://t.co/krT8J3lUo9",FALSE,0,NA,2021-11-04 20:35:40,TRUE,NA,"1456359511476801540",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","LyfeOfPELK",0,FALSE,FALSE,NA,NA
"🔮Dark Pool Print🔮
Symbol: $SPY
Size: 700.0K shares
Price: 466.91
Total: $326.8M",FALSE,0,NA,2021-11-04 20:34:36,FALSE,NA,"1456359246732292132",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">SelectOptionsFlow</a>","SelectOptions",0,FALSE,FALSE,NA,NA
"ALERT! $SPY Buy/Sell Trigger data as of 4:00 pm est
Hourly Trigger: 462.9 (LONG above/SHORT below)
Daily… https://t.co/7y3XuCaaHO",FALSE,1,NA,2021-11-04 20:34:01,TRUE,NA,"1456359096995749891",NA,"<a href=""https://www.apterminal.com/"" rel=""nofollow"">StockVelocity</a>","StockVelocity",0,FALSE,FALSE,NA,NA
"I just have to share this.
I think what happened a while ago is MM waited for the trader who bought aggressively t… https://t.co/BetNeddmf5",FALSE,2,NA,2021-11-04 20:33:42,TRUE,NA,"1456359017182285825",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","ez2000ph",0,FALSE,FALSE,NA,NA
"Tomorrow's #watchlist for #NYSE, #NASDAQ between $200 and $500: $ACN $CRM $DG $ENPH $FDX $IVV $IWF $LIN $LLY $LOW… https://t.co/wIC3u7qNaQ",FALSE,0,NA,2021-11-04 20:33:33,TRUE,NA,"1456358980280889348",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","simonstradeinc",0,FALSE,FALSE,NA,NA
"$SPY When $TSLA too tired to carry market
$NVDA and $AMD come to the rescue
Up forever
🙂🙂📈👍 ❗",FALSE,0,NA,2021-11-04 20:33:12,FALSE,NA,"1456358892158414894",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Cheeseman_test_1_1</a>","Cheesem45226635",0,FALSE,FALSE,NA,NA
"INSANE $DDOG up 8% AH up to 180, crazy to think I was trading this last year when it was only 80 and the options we… https://t.co/rahuNYYVJ1",FALSE,0,NA,2021-11-04 20:32:45,TRUE,NA,"1456358780640260102",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Banger_Swingz",0,FALSE,FALSE,NA,NA
"[SCAN RESULTS - 15m]
Exchange: #FTX
Top 5 bullish trend (#PERP futures)
1: $CUSDT
2: $CRO
3: $ALICE
4: $AUDIO
5:… https://t.co/5kqJJIJ83j",FALSE,1,NA,2021-11-04 20:31:19,TRUE,NA,"1456358417258397698",NA,"<a href=""https://dyor.net"" rel=""nofollow"">DYORCryptoBot</a>","DYORCryptoBot",0,FALSE,FALSE,NA,NA
"4th quarter 2021 real #GDP growth estimate +8.5% by the #FED GDPNow model on Nov. 4, up from +8.2% on Nov. 1.… https://t.co/WagrVe72wG",FALSE,0,NA,2021-11-04 20:31:10,TRUE,NA,"1456358381694984197",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","macroQmicro",0,FALSE,FALSE,NA,NA
"$ADTX posted this earlier and closed up +37% on the day. Research, research, you don't make money sitting on your a… https://t.co/aarVPn22mW",FALSE,0,NA,2021-11-04 20:31:04,TRUE,NA,"1456358355258253318",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","CaseysCharts",0,FALSE,FALSE,NA,NA
"$SPY This market is relentless",FALSE,0,NA,2021-11-04 20:30:46,FALSE,NA,"1456358279320322051",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","LyfeOfPELK",0,FALSE,FALSE,NA,NA
"Biggest Gains in the $SPY:
$ETSY +13.21%
$QCOM +12.73%
$LUMN +12.64%
Biggest Gains in the $QQQ :
$QCOM +12.73%
$NVDA +12.04%
$ANSS +6.52%",FALSE,0,NA,2021-11-04 20:30:22,FALSE,NA,"1456358180540256264",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BigTrend",0,FALSE,FALSE,NA,NA
"11/04/2021 Market Recap $SPY $SPX $ES_F
https://t.co/30ENPqSWNv",FALSE,0,NA,2021-11-04 20:30:07,FALSE,NA,"1456358118124933128",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","CobraMarketView",0,FALSE,FALSE,NA,NA
"$SPY Long: Almost hit my target.
I was busy in the last hour & unable to close the $SPX in time. Need to hold over… https://t.co/HJll0oLdl8",FALSE,5,NA,2021-11-04 20:30:03,TRUE,NA,"1456358100340969477",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","ProTrader_Vini",0,FALSE,FALSE,NA,NA
"$SPY to 469 tm.",FALSE,1,NA,2021-11-04 20:30:01,FALSE,NA,"1456358091080015875",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","fiend_stock",0,FALSE,FALSE,NA,NA
"@yonglimdjd @dab2010_ Yep , no one can get 100% eight . But in weekly and daily it s working .
Next bull target… https://t.co/7Xnlo55oiP",FALSE,0,"yonglimdjd",2021-11-04 20:29:00,TRUE,"1456059609722933249","1456357836070457347","1314795435479855104","<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","hedgefundsrati1",0,FALSE,FALSE,NA,NA
"Top Buy Flow Money - 11.04.2021 - $SPY $ADI $QQQ $QCOM via Super Stocks App https://t.co/V1KTVVd021",FALSE,1,NA,2021-11-04 20:28:57,FALSE,NA,"1456357822606843907",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","androsForm",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
"the wife went to work with me today.. so i took it easy. kept it lite.. what i played however.. PAID ME‼️ taking… https://t.co/VbEMNlwpnJ",FALSE,0,NA,2021-11-04 20:27:31,TRUE,NA,"1456357462261571585",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","xTypeSht",0,FALSE,FALSE,NA,NA
"Small Account Challenge Live Stream for today, Day 29
Beginning balance: $3,103.81
Ending balance: $3,378.81
no tra… https://t.co/fe2QH7Gyzd",FALSE,0,NA,2021-11-04 20:26:59,TRUE,NA,"1456357328182300679",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","ProphetableTrdr",0,FALSE,FALSE,NA,NA
"RT @TKPTrader: $IWM breadth confirming the break out after a series of positive divergences $SPY https://t.co/IPkpYqifOQ",FALSE,0,NA,2021-11-04 20:26:33,FALSE,NA,"1456357220828991491",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","LordxEkim",6,TRUE,FALSE,NA,NA
"Anyone hiring for six figure job that wants to hire me to chart stocks all day? It's all I really want to do...
$SPX
$SPY",FALSE,0,NA,2021-11-04 20:26:21,FALSE,NA,"1456357167502667782",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","SPX_Enthusiast",0,FALSE,FALSE,NA,NA
"$spy $iwm no mercy on all these small caps missing earnings. Just no mercy at all. I think we are seeing a rotation… https://t.co/fhd9A3OBEa",FALSE,0,NA,2021-11-04 20:26:08,TRUE,NA,"1456357115862339585",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Hangry29149637",0,FALSE,FALSE,NA,NA
"$SPY https://t.co/6rFYOywcoJ Wall Street are ready for more commentary? We all know I feel about you all right? But… https://t.co/Sb9UrUpEZR",FALSE,0,"Fangtooth124875",2021-11-04 20:26:08,TRUE,"1456307415461376013","1456357114448859142","1284941311150350336","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Fangtooth124875",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
"selling stocks, payin bills..
$BNGO call swing
$FCEL call swing
$SPY call swing
$HMHC call swing
$RBLX call swing… https://t.co/DSd2V26i83",FALSE,2,NA,2021-11-04 20:25:58,TRUE,NA,"1456357073382371359",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","_diane_",0,FALSE,FALSE,NA,NA
"RT @TradeLikeGates: WL Results: 5 Wins, 0 Loss, 0 Void
$AMD from the side chart WL hit for the gains also.
$SPY $MSFT $NVDA $HOOD $AFRM ht…",FALSE,0,NA,2021-11-04 20:25:56,FALSE,NA,"1456357065216204803",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",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
"The manipulation in $SPY $SPX is absurd 😬",FALSE,1,NA,2021-11-04 20:25:10,FALSE,NA,"1456356870763933719",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","MrApeCapone",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/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
"RT @PlugInFUD: looks like $googl is out of the woods and is now safe to continue contributing to $qqq and $spy indefinite melt-up. https://…",FALSE,0,NA,2021-11-04 20:24:42,FALSE,NA,"1456356755194138630",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","MisterRahool",2,TRUE,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
"Are we doing a stock split when $spy hits 500?",FALSE,0,NA,2021-11-04 20:24:30,FALSE,NA,"1456356704845713409",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","WoodyTradez",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
"Bull Forecasts
November 04, 2021 13:15:00 PDT
🐂🐂🐂🐂🐂
ticker : log change intraday
$SPY : 0.09
$SLQT : -6.25
$TAN : 0… https://t.co/JUnHoHfG94",FALSE,1,NA,2021-11-04 20:23:58,TRUE,NA,"1456356567347982341",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Bear Snacks</a>","WallStSnacks",0,FALSE,FALSE,NA,NA
"RT @TradingWarz: Just put together a $SPY VIP trade recap for yall
These are the callouts I do in the discord everyday
So far on the week…",FALSE,0,NA,2021-11-04 20:23:27,FALSE,NA,"1456356437999898628",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","xbilo007x",1,TRUE,FALSE,NA,NA
"This is the reasoning behind my $SPY callout along with news. https://t.co/axdCtnE266",FALSE,22,NA,2021-11-04 20:22:53,FALSE,NA,"1456356296827957252",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","seanroz14",0,FALSE,FALSE,NA,NA
"$SPX Gamma Exposure replay for November 4th:
Spot price kept finding some resistance in all that heavy gamma betwe… https://t.co/5ZbjfcKQxI",FALSE,1,NA,2021-11-04 20:22:51,TRUE,NA,"1456356288447737864",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","t1alpha",0,FALSE,FALSE,NA,NA
"$SPY EOD snapshot of today's #darkpool activity https://t.co/FaktxhKMQy",FALSE,9,NA,2021-11-04 20:22:30,FALSE,NA,"1456356199507574789",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MelStone31",0,FALSE,FALSE,NA,NA
"Last five years of HST model, simply shifting among three positions with a daily signal.
Average CAGR 61.7% , max… https://t.co/Ziyg8JgcqL",FALSE,0,NA,2021-11-04 20:22:22,TRUE,NA,"1456356167802830849",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","HariSel44371153",0,FALSE,FALSE,NA,NA
"Played the nasty dip , played Earnings ( risky ). The good and the bad. Cut losses when needed as always mentione… https://t.co/DF6Ixx5Xag",FALSE,0,NA,2021-11-04 20:22:12,TRUE,NA,"1456356124903493635",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","mrpeterchang",0,FALSE,FALSE,NA,NA
"$SPY nice day https://t.co/f5G2456Oet",FALSE,0,NA,2021-11-04 20:22:02,FALSE,NA,"1456356080943079431",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","print_trading",0,FALSE,FALSE,NA,NA
"So far this week, Thursday, $SPY is higher than the previous close all weekdays. This has happened 100 times since… https://t.co/cUADnQPTC7",FALSE,5,NA,2021-11-04 20:22:01,TRUE,NA,"1456356077684109319",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","OddmundGrotte",0,FALSE,FALSE,NA,NA
"Starting with $7k, down to $3k, back up to $29k, Lot of thanks to this chat
https://t.co/CRqyCjApgs
$Z $XLF $CEI… https://t.co/r4jOPGAU4h",FALSE,0,NA,2021-11-04 20:21:26,TRUE,NA,"1456355931869130758",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","DorisSt01902228",0,FALSE,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
"$SPY has broken through all of the trend lines & gone almost parabolic. Glad I'm not short. Yellow lights are flash… https://t.co/tiuWXV1bjg",FALSE,2,NA,2021-11-04 20:21:06,TRUE,NA,"1456355845550350342",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","JackWestfield",0,FALSE,FALSE,NA,NA
"RT @incomewithchey: Waiting to see if we get this bullish pennant breakout for $SPY https://t.co/wfQuvqvztZ",FALSE,0,NA,2021-11-04 20:21:05,FALSE,NA,"1456355842928910337",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","VidalLo2802",3,TRUE,FALSE,NA,NA
"$SPY($466.76) Have you guys heard of $NVDA($295.77), looks like a good entry at 300 https://t.co/T9bXhzu115",FALSE,1,NA,2021-11-04 20:20:52,FALSE,NA,"1456355788201488408",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Twits Tweets</a>","tryingBot05",0,FALSE,FALSE,NA,NA
"$SPY Major Breakout
Daily appearances since 2010: 153
Close 5 days later ±:
Avg: 0.70
SD: 3.95
Worst: -23.65
Best:… https://t.co/xGTh08aJq4",FALSE,0,NA,2021-11-04 20:20:42,TRUE,NA,"1456355746635935755",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
"did those #chicoms figure out what ta do with them couple boats near LA yet
or no?
#fakenews #fakeeconomy $spx $spy https://t.co/7u61uOBfPk",FALSE,0,NA,2021-11-04 20:19:31,FALSE,NA,"1456355450220277761",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","erik_lander",0,FALSE,FALSE,NA,NA
"Sold our $SPY 458 calls from last week for a +37% gain. Our signals said we were going higher and who am I to argu… https://t.co/mWg658KPbI",FALSE,0,NA,2021-11-04 20:19:28,TRUE,NA,"1456355435506716675",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","tradinglicks",0,FALSE,FALSE,NA,NA
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 20:19:25,FALSE,NA,"1456355422739312640",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","InvestorXI",14,TRUE,FALSE,NA,NA
"Symbol: ES 🇺🇸
Alert: Summary 📝
Closing Level: 4672.75
R-Value = 0.37R (14.00 pts) | Trend = 0.34R (12.75 pts), Exit… https://t.co/lh8jXBSqzJ",FALSE,0,NA,2021-11-04 20:19:13,TRUE,NA,"1456355374001438720",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">STEAM_B</a>","trades_social",0,FALSE,FALSE,NA,NA
"@AlphaAcquirers good point on cash. need to do some reading up on this. so the unprecedented growth of $SPY can mos… https://t.co/WO3ncV5udf",FALSE,0,"AlphaAcquirers",2021-11-04 20:18:54,TRUE,"1456354467411017737","1456355292820623361","1343629472105459721","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Tylervanb2",0,FALSE,FALSE,NA,NA
"Ill take it! Solid day with $NVDA $AMZN $SPY $AMD
All you need is Setups you know well and its Bank city!
Lets do… https://t.co/Vc1CoFhU0O",FALSE,4,NA,2021-11-04 20:18:39,TRUE,NA,"1456355232250748928",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","magicmiketrader",0,FALSE,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
"Tomorrow I am expecting $SPY $QQQ all will be down. Today why all reporting bad ER other than $PINS",FALSE,0,NA,2021-11-04 20:18:28,FALSE,NA,"1456355183718326278",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","topmama_ape",0,FALSE,FALSE,NA,NA
"$SPY Final MOC - 11.04.2021 https://t.co/9qu4W5AkYG",FALSE,1,NA,2021-11-04 20:17:51,FALSE,NA,"1456355029699358738",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","androsForm",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
"RT @StockBrosTrades: $PINS reported earnings
- Q3 rev grew 43% year over year
- Monthly active users grew 1% year over year
- Net income…",FALSE,0,NA,2021-11-04 20:17:32,FALSE,NA,"1456354949462429700",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","BLRCooper",1,TRUE,FALSE,NA,NA
"Bull Forecasts
November 04, 2021 13:10:00 PDT
🐂🐂🐂🐂🐂
ticker : log change intraday
$SPY : 0.11
$SLQT : -6.25
$IWM : -… https://t.co/PJ4WTyA0bA",FALSE,1,NA,2021-11-04 20:17:30,TRUE,NA,"1456354940331323411",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Bear Snacks</a>","WallStSnacks",0,FALSE,FALSE,NA,NA
"$SPY closed at record high with declining volume. $AMD advanced another 5%. $F +4% $GM testing a cup handle pivot +… https://t.co/GpSWh2ahZT",FALSE,0,NA,2021-11-04 20:17:29,TRUE,NA,"1456354937823236098",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","CharlesPennison",0,FALSE,FALSE,NA,NA
"RT @PKDayTrading1: I appreciate you all!!! Hope everyone had a great run up
Do not focus on crash...when its time i will alert you all
Ju…",FALSE,0,NA,2021-11-04 20:16:49,FALSE,NA,"1456354768041885698",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","Dennis_Bizzel",18,TRUE,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
$Z $XLF $CEI… https://t.co/lC7XReNzcg",FALSE,0,NA,2021-11-04 20:16:38,TRUE,NA,"1456354721489371140",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Afisayi2",0,FALSE,FALSE,NA,NA
"[SCAN RESULTS - 15m]
Exchange: #FTX
Top 5 bullish trend (#PERP futures)
1: $CUSDT
2: $ALICE
3: $AUDIO
4: $BSV
5:… https://t.co/hlKod8OEgu",FALSE,0,NA,2021-11-04 20:16:09,TRUE,NA,"1456354601196736516",NA,"<a href=""https://dyor.net"" rel=""nofollow"">DYORCryptoBot</a>","DYORCryptoBot",0,FALSE,FALSE,NA,NA
"RT @JesseCohenInv: At this rate, we'll be at '100' by Thanksgiving $SPY $QQQ https://t.co/RWTORnHPKi",FALSE,0,NA,2021-11-04 20:15:54,FALSE,NA,"1456354538491842566",NA,"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","mitsu_pi",35,TRUE,FALSE,NA,NA
"$PINS reported earnings
- Q3 rev grew 43% year over year
- Monthly active users grew 1% year over year
- Net inc… https://t.co/4SnsLemlE2",FALSE,2,NA,2021-11-04 20:15:28,TRUE,NA,"1456354431524610050",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","StockBrosTrades",1,FALSE,FALSE,NA,NA
"$SPY market action for Thursday, November 4, 2021: https://t.co/8CqTagtFz2",FALSE,0,NA,2021-11-04 20:15:23,FALSE,NA,"1456354408233582592",NA,"<a href=""https://investingbrew.com"" rel=""nofollow"">Investing Brew</a>","InvestingBrew",0,FALSE,FALSE,NA,NA
"Check out the Top WhaleFlow from today!
Sign up for #WhaleStream & get a FREE WEEK to see all the #WhaleFlow in Re… https://t.co/qCprMSCB6H",FALSE,2,NA,2021-11-04 20:15:17,TRUE,NA,"1456354383592054789",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Web App Automation</a>","WhaleStream",0,FALSE,FALSE,NA,NA
"Stock market sentiment for Thursday, November 4, 2021 from CNN's Fear & Greed Index for $SPY $QQQ $DIA: https://t.co/tHqZdxHIeV",FALSE,0,NA,2021-11-04 20:15:17,FALSE,NA,"1456354382950305796",NA,"<a href=""https://investingbrew.com"" rel=""nofollow"">Investing Brew</a>","InvestingBrew",0,FALSE,FALSE,NA,NA
"US House Speaker Nancy Pelosi Says Joint Tax Committee Analysis Of Revenue From Biden Domestic Spending Bill Omits… https://t.co/0XxUocVDC3",FALSE,0,NA,2021-11-04 20:15:02,TRUE,NA,"1456354321818284036",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MyStockNewsfeed",0,FALSE,FALSE,NA,NA
"#MFAAANNGT
$AMZN $APPL $GOOGL $AMD $NFLX $MSFT
$FB $NVDA $TSLA
$SPY $QQQ $YM $NQ $ES
Listening in need of a li… https://t.co/VXIHA2R7ts",FALSE,1,NA,2021-11-04 20:14:56,TRUE,NA,"1456354293905297411",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Pappa_Young",0,FALSE,FALSE,NA,NA
"RT @FlowDissecting: Blue Doji on $spy 🧐 https://t.co/8puPo8tXBX",FALSE,0,NA,2021-11-04 20:14:55,FALSE,NA,"1456354293343154201",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","GeorgeStrongIII",1,TRUE,FALSE,NA,NA
"$SPY $PFE $MRNA $JNJ US #COVID19 #Vaccine Tracker: ▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░ 58.2% ➟ Fully vaccinated living in the USA,… https://t.co/Uo0vLFHIkQ",FALSE,0,NA,2021-11-04 20:13:04,TRUE,NA,"1456353826936549387",NA,"<a href=""https://dlvrit.com/"" rel=""nofollow"">dlvr.it</a>","TowelieTrades",0,FALSE,FALSE,NA,NA
"Trade Recap Nov 4th 21' 📌
Highlights
$BGFV 35 overnight +91% 🔥
$BGFV 40 day scalp +55% 🔥
$SPY 466 P scalp +62% and… https://t.co/miXROZZQ66",FALSE,2,NA,2021-11-04 20:12:45,TRUE,NA,"1456353746116567045",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MoneyMindTweets",0,FALSE,FALSE,NA,NA
"S&P 500 goes meme stock.. $SPX $SPY",FALSE,2,NA,2021-11-04 20:12:07,FALSE,NA,"1456353587471192067",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BobHous24678424",0,FALSE,FALSE,NA,NA
"@Marc_McLovin It'll be $SPY points soon 😱",FALSE,3,"Marc_McLovin",2021-11-04 20:11:58,FALSE,"1456353286416654345","1456353549508505629","4220715161","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","DereckCoatney",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
"Bought $SPY and $ES puts",FALSE,2,NA,2021-11-04 20:11:44,FALSE,NA,"1456353489160921102",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Jamesey76",0,FALSE,FALSE,NA,NA
"$SPY not before being bankrupted from all the federal lawsuits. Good luck Brandon. https://t.co/DOEE7Xb5J3",FALSE,0,NA,2021-11-04 20:10:35,FALSE,NA,"1456353202215981060",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","TheBananaTrader",0,FALSE,FALSE,NA,NA
"Who trades delta neutral to $SPY and can explain to me how to make it work? I'm constantly getting slammed on the c… https://t.co/0fC47lrkou",FALSE,1,NA,2021-11-04 20:10:33,TRUE,NA,"1456353194125127708",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","toomuchcoffie",0,FALSE,FALSE,NA,NA
"Just put together a $SPY VIP trade recap for yall
These are the callouts I do in the discord everyday
So far on t… https://t.co/23toiMN9i8",FALSE,60,NA,2021-11-04 20:10:25,TRUE,NA,"1456353160394645511",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradingWarz",1,FALSE,FALSE,NA,NA
"$QQQ $SPY everything is down on earnings but the rigged market probably trades higher. I wonder if China nuked us i… https://t.co/AhSVyUpWRW",FALSE,0,NA,2021-11-04 20:10:14,TRUE,NA,"1456353114710110209",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","JimBobMcgill1",0,FALSE,FALSE,NA,NA
"POLL: is $QQQ rigged if it doesn't hit 400.00 tomorrow?
$SPX $SPY $VIX $NVDA $TSLA",FALSE,0,NA,2021-11-04 20:10:09,FALSE,NA,"1456353092795080706",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","mikeo188",0,FALSE,FALSE,NA,NA
"@DereckCoatney @yuriymatso @mcm_ct A.K.A - Who has skin in the game. ie trading V/S Who is just posting charts? $spy $qqq $es $nq",FALSE,1,"DereckCoatney",2021-11-04 20:10:03,FALSE,"1456352541894119427","1456353066978996252","3266165605","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BullTurf",0,FALSE,FALSE,NA,NA
"We got legitimate chemists out here driving for Uber now but new $SPY ATHs everyday otherwise we might start to for… https://t.co/dXC0iJAdGO",FALSE,2,NA,2021-11-04 20:09:30,TRUE,NA,"1456352929754009600",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","0Fedbear2",0,FALSE,FALSE,NA,NA
"The S&P 500 and Nasdaq both closed at record highs on Thursday | $QQQ $SPY",FALSE,0,NA,2021-11-04 20:09:20,FALSE,NA,"1456352888456888324",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MarketNFlash",0,FALSE,FALSE,NA,NA
"That's 16 days in a row trading above the +1SD line on the daily for #ES_F $ES. $VVIX starting to creep up with the… https://t.co/c6Q8VsJAEU",FALSE,0,NA,2021-11-04 20:09:07,TRUE,NA,"1456352829866602512",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","EsportsDealer",0,FALSE,FALSE,NA,NA
"Solid day on the streets! The $SPY slaps two bucks on the total, finishing the day up .46%, what a battle. I really… https://t.co/fhjXpf5DDe",FALSE,0,NA,2021-11-04 20:08:55,TRUE,NA,"1456352782982782977",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","brotherlydon",0,FALSE,FALSE,NA,NA
"RT @ISABELNET_SA: 🇺🇸 Sentiment
The Fear & Greed Index stands at 82, signaling extreme greed in the US stock market
👉 https://t.co/jJ1iAXzd…",FALSE,0,NA,2021-11-04 20:08:53,FALSE,NA,"1456352775047049223",NA,"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>","mitsu_pi",8,TRUE,FALSE,NA,NA
"Folks...follow @stephenharlinmd. He is starting to educate traders on Market Profile. If you want to learn it, this… https://t.co/1mhtNQ4ULR",FALSE,5,NA,2021-11-04 20:08:53,TRUE,NA,"1456352772153032707",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","ez2000ph",0,FALSE,FALSE,NA,NA
"Bull Forecasts
November 04, 2021 12:54:00 PDT
🐂🐂🐂🐂🐂
ticker : log change intraday
$TAN : 0.30
$SLQT : -6.60
$SPY : 0… https://t.co/0aMYxX6Nfr",FALSE,0,NA,2021-11-04 20:08:25,TRUE,NA,"1456352654297231365",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Bear Snacks</a>","WallStSnacks",0,FALSE,FALSE,NA,NA
"$SPY and $QQQ had some strong follow through after the Fed yesterday. Since the Fed was dovish, big tech/ growth na… https://t.co/OFUCCAenHc",FALSE,1,NA,2021-11-04 20:08:17,TRUE,NA,"1456352623066587136",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradeableCap",0,FALSE,FALSE,NA,NA
"@Jedi_ant now I’m not sure if I’m crazy but earlier today I pointed out huge sellers at 467 on $SPY, and at the clo… https://t.co/1AcBX4HjNz",FALSE,1,"Jedi_ant",2021-11-04 20:08:15,TRUE,NA,"1456352615411839004","954124082773143552","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","MattVanSmith",0,FALSE,FALSE,NA,NA
"No trades today, was tempted with $CPE and $PLL as those sectors are still strong, but just looking at $QQQ $SPY… https://t.co/jwepmtQzrQ",FALSE,5,NA,2021-11-04 20:07:58,TRUE,NA,"1456352542946996227",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","6ix_Trader",0,FALSE,FALSE,NA,NA
"$SPY for educational purposes:
-Symmetrical Triangle Pattern: finally broke out at the very end...… https://t.co/7mFqMxCXA9",FALSE,16,NA,2021-11-04 20:07:54,TRUE,NA,"1456352527063072769",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BlueCrypto_",0,FALSE,FALSE,NA,NA
"RT @WyckoffOnCrypto: I am LIVE right now‼️ Stocks mixed, #Bitcoin down 2+%, #alts down 3-6%📉. $SPY $BTC #Wyckoff #Elliott https://t.co/uMHy…",FALSE,0,NA,2021-11-04 20:07:31,FALSE,NA,"1456352430526918669",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","KTone",6,TRUE,FALSE,NA,NA
"$SAVA up 50% on a publisher saying a single paper among a sea of shenanigans being judged likely not fraud
$CMRX u… https://t.co/9Mwdl7Plzv",FALSE,1,NA,2021-11-04 20:07:31,TRUE,NA,"1456352429981806597",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RakijaFin",0,FALSE,FALSE,NA,NA
"Blue Doji on $spy 🧐 https://t.co/wLbn9Y4rD7 https://t.co/8puPo8tXBX",FALSE,4,NA,2021-11-04 20:07:16,FALSE,NA,"1456352365536178178",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","FlowDissecting",1,FALSE,FALSE,NA,NA
"$SPY sectors (and other stuff)
30 day correlation
$UUP $DIA $QQQ $GLD https://t.co/QjP9TyE3UJ",FALSE,1,NA,2021-11-04 20:06:55,FALSE,NA,"1456352279213314054",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","VaidotasSegenis",0,FALSE,FALSE,NA,NA
"Yet another fresh all time high for $SPX. 4 for 4 so far this week!
$SPY $VIX #stocks #volatility https://t.co/RxR5E4lGO9",FALSE,1,NA,2021-11-04 20:06:42,FALSE,NA,"1456352222665592832",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","t1alpha",0,FALSE,FALSE,NA,NA
"When in doubt Deep OTM calls $SPY 🤣😂🤝 https://t.co/ABZ0Ugsynj",FALSE,0,NA,2021-11-04 20:06:37,FALSE,NA,"1456352202298171398",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","DylF811",0,FALSE,FALSE,NA,NA
"Ron Insana says the Fed shouldn't raise rates because this inflation won't last https://t.co/Gx1pIb1RKK $SPY $DIA… https://t.co/DkRsqAKnlM",FALSE,0,NA,2021-11-04 20:06:25,TRUE,NA,"1456352150527766537",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BoB2Trader",0,FALSE,FALSE,NA,NA
"Infini you do realize me took 50% prrrrofits on me CL Longs above 83 and me added back those longs down here and no… https://t.co/6teIBdIh3l",FALSE,0,NA,2021-11-04 20:06:05,TRUE,NA,"1456352069607120896",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","SirJohnSteele",0,FALSE,FALSE,NA,NA
"RT @TraderMacoCosta: Record closes for S&P 500 and #Nasdaq. $SPY $QQQ $NDQ",FALSE,0,NA,2021-11-04 20:06:03,FALSE,NA,"1456352062170669059",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","clutchxcity",1,TRUE,FALSE,NA,NA
"Thank you $SPY https://t.co/daDt5RRMLp",FALSE,2,NA,2021-11-04 20:05:10,FALSE,NA,"1456351836902993921",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","DylF811",0,FALSE,FALSE,NA,NA
"RT @TraderMacoCosta: $SPY $QQQ S&P 500 and #Nasdaq post record closes",FALSE,0,NA,2021-11-04 20:04:57,FALSE,NA,"1456351784042123269",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","clutchxcity",1,TRUE,FALSE,NA,NA
"RT @EnhancedMarket: $SPY I warned you https://t.co/I4pnRTqxid",FALSE,0,NA,2021-11-04 20:04:42,FALSE,NA,"1456351718778851330",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","IrishInvestor",1,TRUE,FALSE,NA,NA
"10 Year T-Note 1.51 -0.06 Down -4.04%
$SPY $SPX $IVV $VOO $TLT $IEF $TYX $TNX $VIX $VVIX $IAU $BTC $ETH https://t.co/IzMbNSxPDG",FALSE,2,NA,2021-11-04 20:04:22,FALSE,NA,"1456351636486451212",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BoB2Trader",0,FALSE,FALSE,NA,NA
"RT @honeystocks1: We're inching toward levels where a short term Tech pull back can reasonably be expected.
It's why I prefer data over fe…",FALSE,0,NA,2021-11-04 20:04:18,FALSE,NA,"1456351621483573259",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","StreetCharts",1,TRUE,FALSE,NA,NA
"RT @RicardinhoMuc: $Mark Remark 💪 🚨Buy 💪
$KRFG $EEENF $IMTL $MWWC $APTY $NWGC $NSAV $GVSI $ILUS $BZWR $SWRM
$SPY $HOOD $QQQ $SPY $IWM $H…",FALSE,0,NA,2021-11-04 20:04:14,FALSE,NA,"1456351603737387015",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RicardinhoMuc",1,TRUE,FALSE,NA,NA
"✏️ down! 🐂 registered another W making it 15 of 17 for $SPY & $QQQ. The latter is on a 9-day winning streak! I have… https://t.co/rwU4A6b57d",FALSE,0,NA,2021-11-04 20:04:13,TRUE,NA,"1456351597634613268",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","15minofPham",0,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
"WL Results: 5 Wins, 0 Loss, 0 Void
$AMD from the side chart WL hit for the gains also.
$SPY $MSFT $NVDA $HOOD $AFRM https://t.co/2IpFHpPhKY",FALSE,3,NA,2021-11-04 20:03:59,FALSE,NA,"1456351538474102795",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","TradeLikeGates",1,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
"$SPY I warned you https://t.co/UT2c3o1Qzs https://t.co/I4pnRTqxid",FALSE,5,NA,2021-11-04 20:03:55,FALSE,NA,"1456351524137865217",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","EnhancedMarket",1,FALSE,FALSE,NA,NA
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 20:03:40,FALSE,NA,"1456351460497707011",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","MarketBlondes",14,TRUE,FALSE,NA,NA
"[SCAN RESULTS - 4h]
Exchange: #FTX
Top 5 bullish trend (#PERP futures)
1: $ALICE
2: $HNT
3: $CRO
4: $AXS
5: $TLM… https://t.co/up63jSS7mY",FALSE,0,NA,2021-11-04 20:03:32,TRUE,NA,"1456351427006279684",NA,"<a href=""https://dyor.net"" rel=""nofollow"">DYORCryptoBot</a>","DYORCryptoBot",0,FALSE,FALSE,NA,NA
"WH SAYS NOW IS TIME FOR OIL PRODUCING COUNTRIES TO PRODUCE AND NOT HAMSTRING THE GLOBAL ECONOM | $SPY",FALSE,0,NA,2021-11-04 20:03:25,FALSE,NA,"1456351395909705734",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","MarketNFlash",0,FALSE,FALSE,NA,NA
"Recap today🚀🚀
$spy 466c 1.11-1.26——15%",FALSE,1,NA,2021-11-04 20:03:21,FALSE,NA,"1456351380315201542",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","SMalacai",0,FALSE,FALSE,NA,NA
"The S&P 500 and #NASDAQ set new record high closes again today. $SPY $QQQ $NDQ",FALSE,0,NA,2021-11-04 20:03:21,FALSE,NA,"1456351379539341317",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","TraderMacoCosta",0,FALSE,FALSE,NA,NA
"Nov 4:
✅ +£1,399.58
$MRNA short and a little cover/bounce scalp (covered too early tbh)
Trimming some $PLUG/trad… https://t.co/vfiP1T2Prg",FALSE,0,NA,2021-11-04 20:03:03,TRUE,NA,"1456351304847138816",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","JimmyBoyStonks",0,FALSE,FALSE,NA,NA
"$SPY Gap and go incoming",FALSE,0,NA,2021-11-04 20:03:01,FALSE,NA,"1456351297431539716",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","siddhardhakared",0,FALSE,FALSE,NA,NA
"213 S&P Stocks up vs 290 down $SPY... index advances .46%. 63rd record closing high this year.
#fascinatin
Losers matter less.",FALSE,2,NA,2021-11-04 20:03:00,FALSE,NA,"1456351293941891075",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","frotuss",0,FALSE,FALSE,NA,NA
"$ES_F $SPY $SPX 4660 gets protected https://t.co/M3hrwcJEFW",FALSE,0,NA,2021-11-04 20:02:49,FALSE,NA,"1456351247473201155",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","print_trading",0,FALSE,FALSE,NA,NA
"Went profitably long $SPY briefly prior to the close",FALSE,0,NA,2021-11-04 20:02:44,FALSE,NA,"1456351226681966596",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","CremeDeMentha",0,FALSE,FALSE,NA,NA
"$SPY $QQQ S&P 500 and #Nasdaq post record closes",FALSE,0,NA,2021-11-04 20:02:35,FALSE,NA,"1456351186500702212",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","TraderMacoCosta",1,FALSE,FALSE,NA,NA
"@Jedi_ant any thoughts on $SPY tomorrow? I’d say 500 is a good target",FALSE,1,"Jedi_ant",2021-11-04 20:02:23,FALSE,NA,"1456351138488348692","954124082773143552","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","MattVanSmith",0,FALSE,FALSE,NA,NA
"RT @FintwitSynapse: Top Trending Stocks on #fintwit:
1. $SBET 🥇
2. $NVDA 🥈
3. $RDBX 🥉
4. $AMD
5. $TSLA
6. $ADTX
7. $PETZ
8. $SPY
9. $SGMO…",FALSE,0,NA,2021-11-04 20:02:20,FALSE,NA,"1456351123955142658",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","zmoney0724",1,TRUE,FALSE,NA,NA
"Record closes for S&P 500 and #Nasdaq. $SPY $QQQ $NDQ",FALSE,0,NA,2021-11-04 20:02:19,FALSE,NA,"1456351118796148739",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","TraderMacoCosta",1,FALSE,FALSE,NA,NA
"@TKPTrader $SpY finished green 15 out of the last 17 trading session. What more of a run do you need",FALSE,0,"TKPTrader",2021-11-04 20:02:06,FALSE,"1456326438366351372","1456351065604071435","1285018604","<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","RealJMarzilli",0,FALSE,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
"$SPY 468 strike put option premium is in sight now, @citsecurities. Pre-congrats
$SPX $QQQ
https://t.co/4oyUqzsCmR",FALSE,0,NA,2021-11-04 20:01:59,FALSE,NA,"1456351036495572995",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","mikeo188",0,FALSE,FALSE,NA,NA
"Read more in our Q3 Review Letter! $SPY $SPX $QQQ https://t.co/oSGuJmwP7f",FALSE,0,"IthacaWealth",2021-11-04 20:01:51,FALSE,"1456350999946448896","1456351002009952258","1225553787097665536","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","IthacaWealth",0,FALSE,FALSE,NA,NA
"Guess I can extend this out for the short trigger - we pushed it again - and reacted.
Again.
#ES_F $SPX $SPY https://t.co/zdcbma8MJq",FALSE,0,NA,2021-11-04 20:01:45,FALSE,NA,"1456350976697323532",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","traderjourney",0,FALSE,FALSE,NA,NA
"@WalterFRSA $SPY Gotta pull back towards 450 before end of month, I think…",FALSE,0,"WalterFRSA",2021-11-04 20:01:44,FALSE,"1456334186596507655","1456350973799059459","1166056874380337153","<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>","kingpazn",0,FALSE,FALSE,NA,NA
"#MFAAANNGT
$AMZN $APPL $GOOGL $AMD $NFLX $MSFT
$FB $NVDA $TSLA
$SPY $QQQ $YM $NQ $ES
Bid good night
ATHs are i… https://t.co/ojIv1IyZ8x",FALSE,0,NA,2021-11-04 20:01:20,TRUE,NA,"1456350872494030851",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Pappa_Young",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
"Thoughts and poors.
$SPX $SPY $QQQ
https://t.co/saIr0joqmv",FALSE,0,NA,2021-11-04 20:01:01,FALSE,NA,"1456350792747819010",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","mikeo188",0,FALSE,FALSE,NA,NA
"Filled my $SPY 466c at close for for 9% gain",FALSE,0,NA,2021-11-04 20:00:44,FALSE,NA,"1456350721406902283",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","NotDevinMichael",0,FALSE,FALSE,NA,NA
"RT @NancyTracker: October returns:
- Pelosi Capital Management: +120%
- Cloudflare $NET: +73%
- Ethereum $ETH: +46%
- Tesla $TSLA: +44%
- B…",FALSE,0,NA,2021-11-04 20:00:38,FALSE,NA,"1456350695532154888",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","BizTechia",546,TRUE,FALSE,NA,NA
"Detected 2 $SPY signals today: 2 𝗕𝗨𝗬 signals observed on Thu Nov 4, 2021.
Decisions: Bought 8 total shares across… https://t.co/sZNEzzQKSX",FALSE,0,NA,2021-11-04 20:00:23,TRUE,NA,"1456350635129933825",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">SPY Prophet</a>","SPYProphet42",0,FALSE,FALSE,NA,NA
"r/WallStreetBets daily discussion mentions over the last hour (rank 1-10)
1. $NVDA (136 mentions)
2. $TSLA (42)
3.… https://t.co/a5pkPNfClA",FALSE,0,NA,2021-11-04 20:00:16,TRUE,NA,"1456350604830421001",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 @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 20:00:09,FALSE,NA,"1456350576007069697",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Lady_of_the_Fog",14,TRUE,FALSE,NA,NA
"Top Trending Stocks on #fintwit:
1. $SBET 🥇
2. $NVDA 🥈
3. $RDBX 🥉
4. $AMD
5. $TSLA
6. $ADTX
7. $PETZ
8. $SPY
9.… https://t.co/BfyJPeyAUb",FALSE,3,NA,2021-11-04 20:00:08,TRUE,NA,"1456350570449604613",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">finapse2</a>","FintwitSynapse",1,FALSE,FALSE,NA,NA
"$SPY 761,367 sats
1 hour change:
-4408 (-0.58%)
24 hour change:
+20311 (+2.67%)
Calculations based on:
$BTC $61276.38
$SPY $466.81",FALSE,0,NA,2021-11-04 20:00:02,FALSE,NA,"1456350547825602566",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Sats Standard</a>","SatsStandard",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 @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 19:59:55,FALSE,NA,"1456350516452208640",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AdamB1438",14,TRUE,FALSE,NA,NA
"RT @KeithMcCullough: BREAKING: 63rd and 40th all-time closing highs of 2021 for $SPY and $QQQ ...
are now the #history Old Wall fund mana…",FALSE,0,NA,2021-11-04 19:59:35,FALSE,NA,"1456350432746422275",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","Hedgeye",2,TRUE,FALSE,NA,NA
"Stonks only go ⬆️ $SPX $SPY $QQQ https://t.co/aTN6B7PRCK",FALSE,1,NA,2021-11-04 19:59:13,FALSE,NA,"1456350339825758215",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","iharsha18",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/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: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 19:59:00,FALSE,NA,"1456350287355076615",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","UncleToughStuff",14,TRUE,FALSE,NA,NA
"$LRCX CALLS TRADING AT $4. UP 500%. WAIT TILL YOU SEE THE ACTION TOMORROW.
$SPY $ES $SPX $BTC $ETH $IRTC https://t.co/icZVD0M60n",FALSE,1,NA,2021-11-04 19:58:53,FALSE,NA,"1456350258288541697",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","billlionnaire",0,FALSE,FALSE,NA,NA
"RT @tfinancialcloud: Awesome 🙌
The service works and is still only $1 for a few more days! Get it before it’s gone! $NVDA $BABA $SPY $TSLA",FALSE,0,NA,2021-11-04 19:58:47,FALSE,NA,"1456350231847657472",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","Dariangr97",1,TRUE,FALSE,NA,NA
"A nice print for $SPY at 3:58pm
Click https://t.co/FEElA5dBZq
for more.
Runners 📈: https://t.co/VC1LdPHaJR
Losers 📉… https://t.co/2xeZ5K9QLD",FALSE,0,NA,2021-11-04 19:58:37,TRUE,NA,"1456350190605148166",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">TradeWithAI</a>","TradeWithAlerts",0,FALSE,FALSE,NA,NA
"RT @OptionsPastor: Over $5 trillion has been used to pump this market since the #Covid pandemic to date by the #FED. That's coming to an e…",FALSE,0,NA,2021-11-04 19:58:37,FALSE,NA,"1456350188965138435",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",0,TRUE,FALSE,NA,NA
"BREAKING: 63rd and 40th all-time closing highs of 2021 for $SPY and $QQQ ...
are now the #history Old Wall fund m… https://t.co/03Muvi8WTs",FALSE,16,NA,2021-11-04 19:58:24,TRUE,NA,"1456350134414069765",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","KeithMcCullough",2,FALSE,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
"$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
"RT @OptionsPastor: We trade $SPY at will. @stockspastor. Our buy support and exit resistance can quickly give you 20% to 100% profit with…",FALSE,0,NA,2021-11-04 19:57:51,FALSE,NA,"1456349996656304130",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @OptionsPastor: 100% on $FB weekly in our 1-1 room. $2 to $4.15.
It took less than 30 minutes. @stockspastor.
You should invest in your…",FALSE,0,NA,2021-11-04 19:57:41,FALSE,NA,"1456349954839097344",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @OptionsPastor: Two 20% profit on $SPY. One 100% profit on $FB. 50% on $SPY room monthly trade. 30% profit on $1k to $1million curren…",FALSE,0,NA,2021-11-04 19:57:37,FALSE,NA,"1456349936224714759",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"#BangerSwingz Trade idea💡
Ticker: $BA
Strike: 1/21/22 280c
Entry: .90
Target: 10.00-20.00
$UAL $DAL $JETS $SAVE… https://t.co/xb9qriiTv1",FALSE,1,NA,2021-11-04 19:57:35,TRUE,NA,"1456349930109366289",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Banger_Swingz",0,FALSE,FALSE,NA,NA
"RT @OptionsPastor: Let's wait and see what happens later in the afternoon after the #FED.
My assistant accidentally posted the room alert…",FALSE,0,NA,2021-11-04 19:57:33,FALSE,NA,"1456349921049731077",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @OptionsPastor: $SPY has done nothing all morning but chops around. Still holding our levels for day trades.",FALSE,0,NA,2021-11-04 19:57:18,FALSE,NA,"1456349856914608135",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"We're shooting for 471-472 on $SPY by no later than Monday.",FALSE,3,NA,2021-11-04 19:57:14,FALSE,NA,"1456349840015822854",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","PeterGhostine",0,FALSE,FALSE,NA,NA
"RT @OptionsPastor: The longer it takes to take profit on $SPY the lower the profit. Your exit must be accurately timely for better results…",FALSE,0,NA,2021-11-04 19:57:14,FALSE,NA,"1456349839562846210",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",0,TRUE,FALSE,NA,NA
"RT @OptionsPastor: I am the authority for this market. If you are not in the rooms, you are missing out big. $SPY @stockspastor",FALSE,0,NA,2021-11-04 19:57:09,FALSE,NA,"1456349819434381312",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"A nice print for $SPY at 3:56pm
Click https://t.co/FEElA5dBZq
for more.
Runners 📈: https://t.co/VC1LdPHaJR
Losers 📉… https://t.co/8YSy6rdu9H",FALSE,0,NA,2021-11-04 19:56:59,TRUE,NA,"1456349778778918914",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">TradeWithAI</a>","TradeWithAlerts",0,FALSE,FALSE,NA,NA
"#BangerSwingz Trade idea💡
Ticker: $BA
Strike: 1/21/22 300c
Entry: .51
Target: 10.00
$UAL $DAL $JETS $SAVE $SPY $AAL… https://t.co/qhdr09s2NI",FALSE,0,NA,2021-11-04 19:56:50,TRUE,NA,"1456349739390169096",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Banger_Swingz",0,FALSE,FALSE,NA,NA
"RT @OptionsPastor: With my virtual training, you can get ideas on how to trade puts and calls on $SPY without ever having to use a stop los…",FALSE,0,NA,2021-11-04 19:56:42,FALSE,NA,"1456349708771897344",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @OptionsPastor: 1-1 room stock alert premarket gave 100%. $1k to $1 million stock alert premarket gave 100%. $SPY room yesterday alert…",FALSE,0,NA,2021-11-04 19:56:34,FALSE,NA,"1456349675355791361",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",0,TRUE,FALSE,NA,NA
"#BangerSwingz Trade idea💡
Ticker: $BA
Strike: 1/21/22 300c
Entry: .51
Target: 10.00
$UAL $DAL $JETS $SAVE $SPY $AAl… https://t.co/5mH7vT7cOD",FALSE,0,NA,2021-11-04 19:56:32,TRUE,NA,"1456349665587195917",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Banger_Swingz",0,FALSE,FALSE,NA,NA
"RT @OptionsPastor: Profits disappear if you don't know where to take them. Trade with confidence @stockspastor $SPY",FALSE,0,NA,2021-11-04 19:56:28,FALSE,NA,"1456349650122911754",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @OptionsPastor: .55 to .84 in minutes on $SPY trade on the plane after taking .85 from .40 on calls earlier. Easy peasy!!!!!!",FALSE,0,NA,2021-11-04 19:56:18,FALSE,NA,"1456349608179863553",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",0,TRUE,FALSE,NA,NA
"RT @OptionsPastor: Is $SPY the next $TSLA to $1000+? All the buyings are unreal and incredibly ridiculous. 3 weeks of an uptrend movement…",FALSE,0,NA,2021-11-04 19:56:13,FALSE,NA,"1456349587166355460",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @TheMrDev: Re:Im short
Liquidity is weakening a bit after the Feds #FOMC Pump scheme now wait there may be a Dump.
Learn how to read Li…",FALSE,0,NA,2021-11-04 19:56:11,FALSE,NA,"1456349578945605637",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",2,TRUE,FALSE,NA,NA
"RT @OptionsPastor: I stand behind the trading service I provide, and I know its value. Until you realize the potentials behind the service…",FALSE,0,NA,2021-11-04 19:56:04,FALSE,NA,"1456349548893270019",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",2,TRUE,FALSE,NA,NA
"RT @OptionsPastor: $SPY is so tricky. If you don't know when to exit your trades, you will be left holding the bags. No doubts about it.…",FALSE,0,NA,2021-11-04 19:56:01,FALSE,NA,"1456349535924637703",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @OptionsPastor: $324 to almost $336 on $SPY room current monthly alert. @stockspastor",FALSE,0,NA,2021-11-04 19:55:53,FALSE,NA,"1456349500679888900",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,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
"Closing statement $SPY $SPX $ES_F
https://t.co/KxeFm6wXjl",FALSE,0,NA,2021-11-04 19:55:24,FALSE,NA,"1456349380454359043",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","CobraMarketView",0,FALSE,FALSE,NA,NA
"$spy heavy resistance 466 all day today should breakout tomorrow on volume",FALSE,0,NA,2021-11-04 19:55:03,FALSE,NA,"1456349290943688714",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","NotDevinMichael",0,FALSE,FALSE,NA,NA
"RT @OptionsPastor: Trading is all about levels. $SPY @stockspastor",FALSE,0,NA,2021-11-04 19:55:03,FALSE,NA,"1456349290746552320",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,FALSE,NA,NA
"RT @OptionsPastor: Many trading services can't even boldly give you precise entry and exit on trades. Is that the service you want?
All my…",FALSE,0,NA,2021-11-04 19:54:59,FALSE,NA,"1456349276154568708",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","stockspastor",1,TRUE,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
"$SPY $QQQ $AMZN $GOOGL INSANE RIPPY RIPPY TOMORROW",FALSE,0,NA,2021-11-04 19:54:40,FALSE,NA,"1456349195376463889",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","siddhardhakared",0,FALSE,FALSE,NA,NA
"The monthly job report is tomorrow, Friday the 5th, and can trigger many trading ideas in different asset classes.… https://t.co/SggRtKPp9a",FALSE,3,NA,2021-11-04 19:54:36,TRUE,NA,"1456349178615975937",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","OddmundGrotte",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
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 19:53:32,FALSE,NA,"1456348909278687253",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","jakelarkn",14,TRUE,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
"$SPY Gap-up Candidate",FALSE,2,NA,2021-11-04 19:53:23,FALSE,NA,"1456348871781715973",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","AlphaTradersinc",0,FALSE,FALSE,NA,NA
"So, I work for the mortgage department at $CFG bank, and they just laid off a bunch of folks (I survived, thankfull… https://t.co/KheLvJEnEV",FALSE,0,NA,2021-11-04 19:52:26,TRUE,NA,"1456348633473953796",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","DanShephardN7",0,FALSE,FALSE,NA,NA
"RT @WuffettBarken: Rare phenomenon:
$SPY session VWAP is going down while price is going up.
VWAP went from 466.03 to 465.7 while price is…",FALSE,0,NA,2021-11-04 19:52:20,FALSE,NA,"1456348607708377096",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","ThisGuy5656",6,TRUE,FALSE,NA,NA
"Bull Forecasts
November 04, 2021 12:30:00 PDT
🐂🐂🐂🐂🐂
ticker : log change intraday
$TAN : 0.23
$EWZ : -0.97
$IWM : -0… https://t.co/g7gtrpd2jy",FALSE,0,NA,2021-11-04 19:51:58,TRUE,NA,"1456348514355585024",NA,"<a href=""https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels"" rel=""nofollow"">Bear Snacks</a>","WallStSnacks",0,FALSE,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
"MOC talk of over $1Billion on BUY Side into close $SPY",FALSE,2,NA,2021-11-04 19:51:31,FALSE,NA,"1456348403919724546",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Stock_Hunter89",0,FALSE,FALSE,NA,NA
"$SPY, Volume Spike, 1 Minute, 15:51",FALSE,0,NA,2021-11-04 19:51:11,FALSE,NA,"1456348317584080896",NA,"<a href=""http://www.twitter.com"" rel=""nofollow"">CALcrcFeed</a>","CALcrcFeed",0,FALSE,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
"Something tells me Ron owns lots of stocks and has no real job.
$SPY https://t.co/TbIszQkilp",FALSE,0,NA,2021-11-04 19:50:46,FALSE,NA,"1456348212932055047",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","inverse_WallSt",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
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 19:50:16,FALSE,NA,"1456348088579223558",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","johnblank100",14,TRUE,FALSE,NA,NA
"RT @charliebilello: US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion
2018…",FALSE,0,NA,2021-11-04 19:50:04,FALSE,NA,"1456348036343402501",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","nola_trades",14,TRUE,FALSE,NA,NA
"$XLF $SPY $FB $CHWY $PTON $DIS $F $ADBE $CSCO $JPM $CCL $MGM $IWM $HD $VIDT $TWTR $XLE $XOM $AMD $BTC.X $BTC $ETH… https://t.co/TTYcpTs7ZX",FALSE,0,NA,2021-11-04 19:50:02,TRUE,NA,"1456348029879980035",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","AjithKu65",0,FALSE,FALSE,NA,NA
"If you want to take profits on $SPY it’s up to you, I took some but not all.",FALSE,9,NA,2021-11-04 19:49:51,FALSE,NA,"1456347983415492616",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","seanroz14",0,FALSE,FALSE,NA,NA
"RT @TheMrDev: Re:Im short
Liquidity is weakening a bit after the Feds #FOMC Pump scheme now wait there may be a Dump.
Learn how to read Li…",FALSE,0,NA,2021-11-04 19:49:45,FALSE,NA,"1456347957800972290",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","777flightcrew",2,TRUE,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
"Consolidation.
Ranging.
Value walk.
Same concept - different ways to say it.
#ES_F $SPX $SPY https://t.co/LvLkhuPho1",FALSE,1,NA,2021-11-04 19:49:37,FALSE,NA,"1456347924120711169",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","traderjourney",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
"Sling Short 4667.50
T1b -26
Long #ES_F from 4629
Questions? Free newsletter:
https://t.co/Rfsnm1hdvD
#quant… https://t.co/GjmTAXBa2e",FALSE,0,NA,2021-11-04 19:49:09,TRUE,NA,"1456347805941895173",NA,"<a href=""https://about.twitter.com/products/tweetdeck"" rel=""nofollow"">TweetDeck</a>","SteelTrades",0,FALSE,FALSE,NA,NA
"$SPY $QQQ $DIA $DXY $DJIA $SPX $BITO $BTC.X Stock Market Forecast: Lip Service to Inflation, Again https://t.co/ThUqVd1EoA",FALSE,0,NA,2021-11-04 19:48:58,FALSE,NA,"1456347761612308489",NA,"<a href=""https://stocktwits.com"" rel=""nofollow"">StockTwits Web</a>","LlcBillionaire",0,FALSE,FALSE,NA,NA
"US SPACs, IPO capital raised
2013: $1 billion
2014: $2 billion
2015: $4 billion
2016: $3 billion
2017: $11 billion… https://t.co/VhngTSrzCl",FALSE,83,NA,2021-11-04 19:48:43,TRUE,NA,"1456347699666640897",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","charliebilello",14,FALSE,FALSE,NA,NA
"RT @IfALawIsUnjust: hey wait a second, didn't cacheboi just buy 460 put contracts for december? $SPY
@SpacemanBTC https://t.co/BdntGs57gA",FALSE,0,NA,2021-11-04 19:48:32,FALSE,NA,"1456347653797670924",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","SpacemanBTC",1,TRUE,FALSE,NA,NA
"$SPY BIG 📈 INCOMING",FALSE,11,NA,2021-11-04 19:48:18,FALSE,NA,"1456347591600390146",NA,"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>","seanroz14",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
"$SPX $SPY $QQQ $DIA $VIX https://t.co/XG8MGz2ZSl",FALSE,0,NA,2021-11-04 19:47:46,FALSE,NA,"1456347459014303747",NA,"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Trading_Analyst",0,FALSE,FALSE,NA,NA
"$WSRC has been out performing major indexes for the past 12 months (+515%)! Out performing on 6 months(+217%)! Out… https://t.co/Nydd9xDyda",FALSE,2,NA,2021-11-04 19:47:46,TRUE,NA,"1456347457844129800",NA,"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>","TheOneRavenous",0,FALSE,FALSE,NA,NA
"Very interesting zone. $SPY $ES_F https://t.co/dytmo3kmxI",FALSE,0,"Stonkz1",2021-11-04 19:47:43,FALSE,"1456336078206504960","1456347447626633219","1143746488385728512","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Stonkz1",0,FALSE,FALSE,NA,NA
"RT @InvestrTrades: TODAYS Recap! 🔥
$MRNA putts paid 100%!!
$ABNB calls paid 40%!
$NET calls paid 40%!
$PTON puts paid 35!!
Flat on FUTU,…",FALSE,0,NA,2021-11-04 19:47:24,FALSE,NA,"1456347366861295627",NA,"<a href=""https://gambiste.com"" rel=""nofollow"">Gambiste</a>","Gambiste1",1,TRUE,FALSE,NA,NA
"$SPY $QQQ Calls vs Puts
Flow leaning a bit bear here as net Put premiums > Call premiums for indices.
Via… https://t.co/IdJhlZlHV9",FALSE,1,"PrintingProfit",2021-11-04 19:47:20,TRUE,"1456299823368261632","1456347347907080219","988646319504814081","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","PrintingProfit",0,FALSE,FALSE,NA,NA
"@stoolpresidente Makes sense, #WallSteet always wins $SPY $DIA $QQQ $SPX look #Jewish concentrated power run… https://t.co/7C4dY9Fgfd",FALSE,0,"stoolpresidente",2021-11-04 19:46:59,TRUE,"1456304390566993922","1456347260137189382","43775786","<a href=""https://mobile.twitter.com"" rel=""nofollow"">Twitter Web App</a>","Asherma123",0,FALSE,FALSE,NA,NA
"RT @InvestrTrades: FREE ALERTS Recap 😍💵💰