-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeb-11-2021 12.txt
1300 lines (1300 loc) · 110 KB
/
Feb-11-2021 12.txt
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
b'Before you panic for any stock dipping...`1`1.0`1`1613064576.0`'
b'Weed Stocks`7`0.82`19`1613064134.0`'
b'Lithium Chile (LTMCF)`4`0.75`2`1613064114.0`'
b'$BRQS China Blockchain Stock`3`0.8`1`1613064035.0`'
b'HPTY Question`1`0.67`2`1613063816.0`'
b'What happened to $ATOS`6`0.88`6`1613063787.0`'
b'Sun Pacific Power (SNPW) is a Biden and clean energy investment with proprietary solar technology and strong connections to the government`8`0.75`11`1613063687.0`'
b'Settlement date and good faith violations.`2`1.0`7`1613063274.0`'
b'Just bought a 40% dip on Supreme Cannabis Co Inc $53S1 whilst $FIRE only dipped 18%....why is there such a massive difference between the two?`10`0.81`24`1613063190.0`'
b'$WARM DD - A split in the dark DD -`10`0.81`8`1613063105.0`'
b'Cannabis correction today`14`0.94`14`1613063071.0`'
b'East discussion`5`0.78`6`1613062769.0`'
b'CTRM is set to make some gain`23`0.85`18`1613062127.0`'
b'How I do due diligence`61`0.95`16`1613062027.0`'
b'Relay Medical - System for rapid Covid Testing for Airports/Borders/Hospitals and so on.`4`0.83`3`1613061970.0`'
b"PULM offering play - buy the dip before it's too late`30`0.89`28`1613061789.0`"
b'PASO here we go again!`3`0.64`12`1613061335.0`'
b'$CBDD - CB of Denver`7`0.89`5`1613061310.0`'
b'$AGTC - Earnings update and takeoff from penny land`64`0.91`15`1613060718.0`'
b'GAXY-Galaxy Next Generation`7`0.71`6`1613060713.0`'
b'How big is your portfolio?`12`0.88`14`1613060536.0`'
b'CTRM to the MOON?!`14`0.72`13`1613060443.0`'
b'$TNXP just issued agreement`63`0.94`39`1613060395.0`'
b'What do you think the next popular stocks will be?`8`0.7`34`1613060360.0`'
b'Watch out for bad actors out there. There are people that do exactly this`629`0.98`100`1613059941.0`'
b'Anyone for Canadian weed penny stocks?`7`0.82`18`1613059904.0`'
b'When to Sell?`9`0.85`17`1613059875.0`'
b'NovaBay(NBY) Seems worthwhile trading at $1.20 something today.`4`0.83`7`1613059810.0`'
b'SGMD Mooning`28`0.91`26`1613059800.0`'
b'PLUUF / LIACF Lithium and arbitrage move`10`0.92`4`1613059714.0`'
b'Webull Question`0`0.5`7`1613059683.0`'
b'Does anyone know of any sustainable aviation fuel research companies?`3`0.8`2`1613059535.0`'
b'AGTC for the long haul!`14`0.82`4`1613059478.0`'
b'NDM is being slept on right now, room for a lot of growth, have some shares myself and will probably but more. (not financial advice)`3`0.71`6`1613059442.0`'
b'$HPTY - Hemp Technologies Strong Growth Potential ($0.004)`36`0.9`27`1613059251.0`'
b'CLHI, Unique opportunity after the reverse split ( huge sell- off)`4`0.83`5`1613059107.0`'
b'$ZSAN Short or Long Play`4`0.75`12`1613059104.0`'
b'DD: Zinc8 Energy Solutions - NYC building code approval + State Law requiring investment makes this a favorable pick.`58`0.98`11`1613059009.0`'
b'PSYC as Global Track Solutions vs PSYC Psyched Wellness?`2`0.75`3`1613058864.0`'
b'Lithium Carbonate 99.99% created from lithium ore $ABEPF. Do your own DD , total noob here but looks like a winner to me`4`0.6`7`1613058750.0`'
b"NAKD is gaining. Possibly due to the upcoming Valentine's Day`5`0.69`7`1613058693.0`"
b'App that lets you trade OTC without a brokers fee?`2`0.75`18`1613058571.0`'
b'I need to stop being influenced by this subs stocks, as I\xe2\x80\x99m always late to the party. What\xe2\x80\x99s a good news outlet or journal to get information on stocks?`26`0.93`18`1613058500.0`'
b'GeneDrive PLC - GDR`0`0.44`3`1613058013.0`'
b'Last stock on NASDAQ trading under a dollar GSV`18`0.85`15`1613057916.0`'
b'$SRMX about to break $0.01!`18`0.87`16`1613057909.0`'
b'$LIVC $NVNT Have been spiking on recent increased volume.`0`0.33`1`1613057809.0`'
b'Energy Fuels - $UUUU`9`0.74`10`1613057788.0`'
b'NASDAQ: $PRQR - ProQR Therapeutics.- Developing a cure for blindness in genetic disorders`4`0.83`5`1613057766.0`'
b'$XXII 3.3 Mil volume from 10am-11am. Feb 10`7`0.89`3`1613057732.0`'
b'$GTLL status and info - new website heads up`5`0.78`5`1613057722.0`'
b'$PULM direct offering.`51`0.95`18`1613057449.0`'
b'$BHTG I am salivating. Those green candles tell me something amazing is at play. Anyone playing this one? Low float for sure and minimal volume is sending it flying. I think it\xe2\x80\x99s easily got the legs to make it back to $4 by the weekend.`0`0.33`6`1613057384.0`'
b'Capstone Companies (CAPC) news out! The new Smart Mirror website is up at capstoneconnected.com and now the mirror has SCREEN MIRROR from your iPhone and Android device. Game changing technology! More DD at r/CAPC`109`0.85`26`1613057266.0`'
b'Argo Blockchain future`1`0.57`12`1613057233.0`'
b'EPAZ \xe2\x80\x93 Crypto, Blockchain, Marijuana/CBD/Battery Charging and Covid Hidden Gem With a Big Future`4`0.64`8`1613057229.0`'
b'How about KGKG`1`0.57`5`1613057217.0`'
b'DNN has a huge uptrend, why is this?`10`0.86`12`1613057066.0`'
b'$ORVRF - Orchid Ventures - Premium vape THC and CBD vape products`5`0.73`8`1613056955.0`'
b'What do you guys think of $RDHL?`3`0.67`1`1613056905.0`'
b'ABEPF might break out soon?`3`0.71`8`1613056835.0`'
b'EPAZ \xe2\x80\x93 Crypto, Blockchain, Marijuana/CBD/Battery Charging and Covid Hidden Gem Play`0`0.38`6`1613056820.0`'
b'Cashing out and REINVESTMENT DAY.`1`0.57`15`1613056810.0`'
b'Why is TD charging me commission on trades on US exchanges?`2`0.62`13`1613056802.0`'
b'Soligenix $SNGX to Present at the 2021 BIO CEO & Investor Digital Conference`30`0.94`9`1613056799.0`'
b'Are your positions down? Relax :)`75`0.95`42`1613056489.0`'
b'DD: $DN.TO $DN Delta-9 Cannabis (RIDE THAT GREEN MAPLE LEAF TRAIN)`14`0.89`9`1613056281.0`'
b'ARTL- My first try at DD`38`0.93`27`1613056135.0`'
b'Which penny stocks should I put my money into right now? (Read description)`0`0.18`13`1613055977.0`'
b'Aethlon Medical, Inc. (AEMD) - Positives from last nights call...BIG upside!`14`0.89`6`1613055968.0`'
b'LVVV is the penny stock for me!`9`0.8`16`1613055955.0`'
b'PULM - direct offering - swing play - down 22%`67`0.96`37`1613055797.0`'
b'Setting alerts from positions tab on fidelity app?`2`0.75`3`1613054861.0`'
b'How to become a millionaire`130`0.83`66`1613054239.0`'
b'$PTN Sec Patent filing`2`0.6`3`1613053473.0`'
b'CTRM- Castor Maritime Inc. Announces the En Bloc Acquisition of Two Aframax LR2 Tankers with Time Charters Attached`100`0.92`38`1613053160.0`'
b'Do you let pre market influence your decisions?`12`0.83`12`1613053034.0`'
b'Early stage, cheap, gold mining stock with large upside potential: GWMO`0`0.5`5`1613052894.0`'
b'$CORG - Audit then uplisting`21`0.86`39`1613052807.0`'
b'Noob question: How do people here track trades for tax season?`10`0.86`12`1613052771.0`'
b'2/11 Heads up on the runners`9`0.84`4`1613052768.0`'
b'$DNN looks to be a safe bet for +30% increase by next week`80`0.89`59`1613052578.0`'
b'EVE.V - Deep Value Weedstock due for breakout`23`0.73`18`1613052256.0`'
b'JAGX - Short Volume data, Anyone able to provide some insight?`2`0.62`1`1613051844.0`'
b'Revive Therapeutics Provides Update on Cannabinoid Pharmaceuticals Program`7`1.0`2`1613051733.0`'
b'Has anyone looked into $PAOG?`12`0.88`4`1613051628.0`'
b'$MXC ($MGCLF) - MGC Pharma DD`13`0.93`4`1613051329.0`'
b'Deep DD on Soligenix (SNGX) - READ it first`582`0.97`216`1613051175.0`'
b'Is there any way to filter out gain threads?`19`0.81`8`1613051165.0`'
b'TNXP Licenses Rare Disease Treatment that currently has no cure TODAY`172`0.95`57`1613050897.0`'
b'\xf0\x9f\x92\x8e3 Blockchain Stocks waiting for some Attention`10`0.92`10`1613050823.0`'
b'KushCo ($KSHB) is positioned to explode`9`0.71`5`1613050785.0`'
b'Chart of $ALYI .. after .20 breaks it\xe2\x80\x99s on!!!! .40/.60/.80/1.00 , expecting this to reach MUCH higher than 1.00 this year.`14`0.8`3`1613050509.0`'
b'Update from $ISW Holdings Negotiating Purchase of Additional 300 to 900 Cryptocurrency Miners in Preparation for Phase 3 Expansion in Mining Operations`5`0.86`1`1613050231.0`'
b"What's the best trading platform for penny stocks other than Robinhood or Webull?`5`0.69`42`1613050034.0`"
b'What is your strategy with keeping aside a % of your portfolio as cash?`6`0.88`5`1613049947.0`'
b'February 11th | Templar Trading Daily Watchlist`14`0.85`10`1613049517.0`'
b'Has anyone dealt with asset transfers before?`1`0.57`8`1613049405.0`'
b'MindMed Signs Partnership with Swiss Psychedelic Drug Discovery Startup MindShift Compounds AG, Expands Development Pipeline and IP Portfolio with Next-Gen Psychedelic and Empathogenic Compounds`59`0.93`17`1613049226.0`'
b'RHT/RQHTF Reliq Health Technologies Catalyst ***Reliq Hires Top Level Promotion Firm*** Price - 0.70cdn/0.55usd, as of Feb 10, 2021.`18`1.0`9`1613048986.0`'
b"TDA doesn't allow trailing stop losses on OTCs, any brokerages that do?`2`1.0`1`1613068092.0`"
b'Opinions on TLSS`1`1.0`2`1613068065.0`'
b"Thanks to some nice people in here I'm not a bagholder this morning! In HVROF at .12 out at .3`0`0.5`2`1613068056.0`"
b'Anyone on $LEE`1`1.0`1`1613068030.0`'
b'American Battery Metals Corp - CNBC mention this afternoon.`3`1.0`2`1613067799.0`'
b"Spineway is going insane.. Anyone knows what's going on?`4`0.75`8`1613067652.0`"
b'What is a stock split and why do companies do it ?`2`1.0`4`1613067644.0`'
b'Swing trade watchlist *update* 2/11/20`13`1.0`3`1613067469.0`'
b'Daily Catalyst List Possible?`22`1.0`10`1613067249.0`'
b'Boycott investorplace.com / why the fuck do they suddenly give a crap where we spend money? These shorts need to be blown away \xf0\x9f\x98\xa4\xf0\x9f\x98\xa4\xf0\x9f\x92\x8e\xf0\x9f\x92\x8e\xf0\x9f\xa4\x9a\xf0\x9f\x8f\xbb\xf0\x9f\xa4\x9a\xf0\x9f\x8f\xbb Every day we go up they have a news article ready to release on why they \xe2\x80\x9cthink its a bad investment\xe2\x80\x9d. Who asked them???`5`0.73`7`1613067078.0`'
b'Why is CBBT plummeting?`4`0.83`9`1613067067.0`'
b'ASTI listed as STOP on otcmarkets`1`0.6`2`1613066929.0`'
b'MSSTF- The Little Psychedelic That Could: New Patent News`3`1.0`1`1613066901.0`'
b'$GAXY - Galaxy Next Generation - A Penny Stock for the Ages? Not So Sure`13`0.93`6`1613066893.0`'
b'Are all pennystocks pump n dumps, or is there long holds?`0`0.32`25`1613066832.0`'
b'Know labs (TKR:knwn)`2`0.75`1`1613066790.0`'
b'FUNFF - Canadian Sports Betting expanding into US`3`1.0`5`1613066775.0`'
b'To all Maritime/potential investors : r/GLBS is here!`0`0.33`12`1613066678.0`'
b'Need help choosing what penny stock to invest in`1`0.56`18`1613066521.0`'
b'ETFM Name Change`1`0.57`5`1613066365.0`'
b'$Ogen Research`0`0.5`5`1613066304.0`'
b'RYMDF DD \xe2\x80\x93 02/11/21 - cross post from the german /r/pennystocks`5`0.86`5`1613066128.0`'
b'PennyStocks - Level 2 Data`2`1.0`6`1613066015.0`'
b'EVERYTHING IS FINE... I THINK *sweats profusely*`34`0.91`47`1613065975.0`'
b'Noob Canadian apps`4`1.0`11`1613065930.0`'
b'How bad is it to have a daily schedule?`4`1.0`5`1613065672.0`'
b'Your picks under 1c? Trying to find some stocks to research?`10`0.92`42`1613065026.0`'
b'Buy, hold or sell?`5`0.78`11`1613064958.0`'
b'It seems like there is a large group trying to pump HITIF`20`0.74`29`1613064664.0`'
b'Before you panic for any stock dipping...`57`0.96`40`1613064576.0`'
b'Weed Stocks`16`0.86`62`1613064134.0`'
b'Lithium Chile (LTMCF)`20`0.86`13`1613064114.0`'
b'$BRQS China Blockchain Stock`10`0.86`8`1613064035.0`'
b'HPTY Question`3`0.8`5`1613063816.0`'
b'Sun Pacific Power (SNPW) is a Biden and clean energy investment with proprietary solar technology and strong connections to the government`16`0.73`20`1613063687.0`'
b'Settlement date and good faith violations.`3`0.71`11`1613063274.0`'
b'Just bought a 40% dip on Supreme Cannabis Co Inc $53S1 whilst $FIRE only dipped 18%....why is there such a massive difference between the two?`24`0.87`28`1613063190.0`'
b'$WARM DD - A split in the dark DD -`24`0.9`15`1613063105.0`'
b'Cannabis correction today`27`0.94`23`1613063071.0`'
b'East discussion`4`0.7`8`1613062769.0`'
b'CTRM is set to make some gain`26`0.83`21`1613062127.0`'
b'How I do due diligence`135`0.96`33`1613062027.0`'
b'Relay Medical - System for rapid Covid Testing for Airports/Borders/Hospitals and so on.`5`0.86`4`1613061970.0`'
b"PULM offering play - buy the dip before it's too late`49`0.92`35`1613061789.0`"
b'PASO here we go again!`5`0.69`13`1613061335.0`'
b'$CBDD - CB of Denver`10`0.92`6`1613061310.0`'
b'$AGTC - Earnings update and takeoff from penny land`88`0.93`21`1613060718.0`'
b'GAXY-Galaxy Next Generation`7`0.69`8`1613060713.0`'
b'How big is your portfolio?`11`0.83`19`1613060536.0`'
b'CTRM to the MOON?!`17`0.74`15`1613060443.0`'
b'$TNXP just issued agreement`81`0.94`51`1613060395.0`'
b'What do you think the next popular stocks will be?`9`0.68`39`1613060360.0`'
b'Watch out for bad actors out there. There are people that do exactly this`1514`0.98`187`1613059941.0`'
b'Anyone for Canadian weed penny stocks?`8`0.83`19`1613059904.0`'
b'When to Sell?`11`0.87`17`1613059875.0`'
b'NovaBay(NBY) Seems worthwhile trading at $1.20 something today.`5`0.86`7`1613059810.0`'
b'SGMD Mooning`35`0.91`29`1613059800.0`'
b'PLUUF / LIACF Lithium and arbitrage move`9`0.85`5`1613059714.0`'
b'Webull Question`0`0.5`8`1613059683.0`'
b'Does anyone know of any sustainable aviation fuel research companies?`3`0.8`4`1613059535.0`'
b'AGTC for the long haul!`18`0.88`4`1613059478.0`'
b'NDM is being slept on right now, room for a lot of growth, have some shares myself and will probably but more. (not financial advice)`2`0.67`7`1613059442.0`'
b'$HPTY - Hemp Technologies Strong Growth Potential ($0.004)`41`0.89`37`1613059251.0`'
b'CLHI, Unique opportunity after the reverse split ( huge sell- off)`3`0.72`5`1613059107.0`'
b'$ZSAN Short or Long Play`5`0.86`12`1613059104.0`'
b'DD: Zinc8 Energy Solutions - NYC building code approval + State Law requiring investment makes this a favorable pick.`129`0.99`24`1613059009.0`'
b'PSYC as Global Track Solutions vs PSYC Psyched Wellness?`2`0.75`3`1613058864.0`'
b'Lithium Carbonate 99.99% created from lithium ore $ABEPF. Do your own DD , total noob here but looks like a winner to me`5`0.63`7`1613058750.0`'
b"NAKD is gaining. Possibly due to the upcoming Valentine's Day`7`0.73`7`1613058693.0`"
b'App that lets you trade OTC without a brokers fee?`2`0.75`19`1613058571.0`'
b'I need to stop being influenced by this subs stocks, as I\xe2\x80\x99m always late to the party. What\xe2\x80\x99s a good news outlet or journal to get information on stocks?`31`0.93`20`1613058500.0`'
b'GeneDrive PLC - GDR`0`0.38`4`1613058013.0`'
b'Last stock on NASDAQ trading under a dollar GSV`25`0.9`17`1613057916.0`'
b'$SRMX about to break $0.01!`22`0.89`22`1613057909.0`'
b'$LIVC $NVNT Have been spiking on recent increased volume.`0`0.33`1`1613057809.0`'
b'Energy Fuels - $UUUU`11`0.79`10`1613057788.0`'
b'NASDAQ: $PRQR - ProQR Therapeutics.- Developing a cure for blindness in genetic disorders`3`0.72`6`1613057766.0`'
b'$XXII 3.3 Mil volume from 10am-11am. Feb 10`7`0.89`3`1613057732.0`'
b'$GTLL status and info - new website heads up`5`0.78`7`1613057722.0`'
b'$PULM direct offering.`64`0.96`22`1613057449.0`'
b'$BHTG I am salivating. Those green candles tell me something amazing is at play. Anyone playing this one? Low float for sure and minimal volume is sending it flying. I think it\xe2\x80\x99s easily got the legs to make it back to $4 by the weekend.`0`0.33`8`1613057384.0`'
b'Capstone Companies (CAPC) news out! The new Smart Mirror website is up at capstoneconnected.com and now the mirror has SCREEN MIRROR from your iPhone and Android device. Game changing technology! More DD at r/CAPC`154`0.85`28`1613057266.0`'
b'Argo Blockchain future`2`0.67`14`1613057233.0`'
b'EPAZ \xe2\x80\x93 Crypto, Blockchain, Marijuana/CBD/Battery Charging and Covid Hidden Gem With a Big Future`5`0.67`8`1613057229.0`'
b'How about KGKG`2`0.63`6`1613057217.0`'
b'DNN has a huge uptrend, why is this?`10`0.82`13`1613057066.0`'
b'$ORVRF - Orchid Ventures - Premium vape THC and CBD vape products`4`0.67`8`1613056955.0`'
b'What do you guys think of $RDHL?`2`0.6`1`1613056905.0`'
b'ABEPF might break out soon?`3`0.71`8`1613056835.0`'
b'EPAZ \xe2\x80\x93 Crypto, Blockchain, Marijuana/CBD/Battery Charging and Covid Hidden Gem Play`0`0.33`6`1613056820.0`'
b'Cashing out and REINVESTMENT DAY.`2`0.62`15`1613056810.0`'
b'Why is TD charging me commission on trades on US exchanges?`2`0.62`13`1613056802.0`'
b'Soligenix $SNGX to Present at the 2021 BIO CEO & Investor Digital Conference`31`0.91`10`1613056799.0`'
b'Are your positions down? Relax :)`93`0.95`52`1613056489.0`'
b'DD: $DN.TO $DN Delta-9 Cannabis (RIDE THAT GREEN MAPLE LEAF TRAIN)`14`0.86`9`1613056281.0`'
b'ARTL- My first try at DD`40`0.92`29`1613056135.0`'
b'Which penny stocks should I put my money into right now? (Read description)`0`0.12`13`1613055977.0`'
b'Aethlon Medical, Inc. (AEMD) - Positives from last nights call...BIG upside!`14`0.89`6`1613055968.0`'
b'LVVV is the penny stock for me!`7`0.74`16`1613055955.0`'
b'PULM - direct offering - swing play - down 22%`85`0.95`46`1613055797.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`1`1.0`1`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`1`1.0`1`1613071718.0`'
b'$ADTX Blowing Up, No News`0`0.5`2`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`6`0.64`12`1613071019.0`'
b'How do you all put in stop/limit orders?`3`0.8`9`1613070574.0`'
b'Plan for Now?`4`0.75`17`1613070531.0`'
b'Legit or scam?`2`1.0`6`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`15`0.67`6`1613070350.0`"
b'Anyone have their avg price raised for one reason?`5`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`5`1.0`8`1613070268.0`'
b'$BDRBF is one of the last Pennystocks under $1 left on Robinhood`10`0.81`4`1613070246.0`'
b'Data Storage company MERGER news today. $DTST`5`1.0`2`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`1`1.0`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`0`0.5`16`1613069756.0`"
b'ECEZ on 2B Volume`4`1.0`4`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`2`0.67`5`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`4`1613069667.0`'
b'$BLSP info`0`0.38`5`1613069526.0`'
b'SNPW, TLOFF, CNIKF AND HITIF.`4`0.83`12`1613069228.0`'
b'Techniques`3`1.0`6`1613068783.0`'
b'Down today, up tomorrow -- potential longs?: GTEH, CBBT, BLSP, MJNA`4`0.83`2`1613068650.0`'
b'RTON is going to the moon`9`0.76`8`1613068552.0`'
b'Tekay Corp. $TK`0`0.5`1`1613068441.0`'
b"What's your pennystock you just own for fun without high expectations?`7`1.0`35`1613068239.0`"
b"TDA doesn't allow trailing stop losses on OTCs, any brokerages that do?`3`1.0`13`1613068092.0`"
b'Opinions on TLSS`9`1.0`11`1613068065.0`'
b'Anyone on $LEE`2`1.0`2`1613068030.0`'
b'American Battery Metals Corp - CNBC mention this afternoon.`16`1.0`12`1613067799.0`'
b"Spineway is going insane.. Anyone knows what's going on?`19`0.88`15`1613067652.0`"
b'What is a stock split and why do companies do it ?`6`1.0`7`1613067644.0`'
b'Swing trade watchlist *update* 2/11/20`20`1.0`6`1613067469.0`'
b'Daily Catalyst List Possible?`43`0.97`21`1613067249.0`'
b'Why is CBBT plummeting?`6`0.8`14`1613067067.0`'
b'MSSTF- The Little Psychedelic That Could: New Patent News`4`1.0`7`1613066901.0`'
b'$GAXY - Galaxy Next Generation - A Penny Stock for the Ages? Not So Sure`12`0.77`18`1613066893.0`'
b'Are all pennystocks pump n dumps, or is there long holds?`0`0.33`30`1613066832.0`'
b'Know labs (TKR:knwn)`4`0.83`2`1613066790.0`'
b'FUNFF - Canadian Sports Betting expanding into US`6`0.88`11`1613066775.0`'
b'To all Maritime/potential investors : r/GLBS is here!`0`0.4`14`1613066678.0`'
b'Need help choosing what penny stock to invest in`1`0.56`23`1613066521.0`'
b'ETFM Name Change`0`0.5`11`1613066365.0`'
b'$Ogen Research`0`0.43`6`1613066304.0`'
b'RYMDF DD \xe2\x80\x93 02/11/21 - cross post from the german /r/pennystocks`7`0.89`6`1613066128.0`'
b'PennyStocks - Level 2 Data`3`1.0`10`1613066015.0`'
b'EVERYTHING IS FINE... I THINK *sweats profusely*`75`0.94`79`1613065975.0`'
b'How bad is it to have a daily schedule?`5`0.86`8`1613065672.0`'
b'Your picks under 1c? Trying to find some stocks to research?`12`0.93`60`1613065026.0`'
b'Buy, hold or sell?`8`0.83`14`1613064958.0`'
b'It seems like there is a large group trying to pump HITIF`24`0.73`42`1613064664.0`'
b'Before you panic for any stock dipping...`70`0.96`43`1613064576.0`'
b'Weed Stocks`18`0.88`65`1613064134.0`'
b'Lithium Chile (LTMCF)`26`0.88`16`1613064114.0`'
b'$BRQS China Blockchain Stock`11`0.79`9`1613064035.0`'
b'HPTY Question`4`0.75`4`1613063816.0`'
b'Sun Pacific Power (SNPW) is a Biden and clean energy investment with proprietary solar technology and strong connections to the government`23`0.78`22`1613063687.0`'
b'Settlement date and good faith violations.`3`0.67`11`1613063274.0`'
b'Just bought a 40% dip on Supreme Cannabis Co Inc $53S1 whilst $FIRE only dipped 18%....why is there such a massive difference between the two?`25`0.86`28`1613063190.0`'
b'$WARM DD - A split in the dark DD -`27`0.89`22`1613063105.0`'
b'Cannabis correction today`33`0.97`32`1613063071.0`'
b'For New Investors: Understand Stop Loss`1`1.0`1`1613062841.0`'
b'East discussion`5`0.78`8`1613062769.0`'
b'CTRM is set to make some gain`27`0.83`22`1613062127.0`'
b'How I do due diligence`222`0.97`49`1613062027.0`'
b'Relay Medical - System for rapid Covid Testing for Airports/Borders/Hospitals and so on.`6`0.87`4`1613061970.0`'
b"PULM offering play - buy the dip before it's too late`64`0.93`43`1613061789.0`"
b'PASO here we go again!`5`0.69`13`1613061335.0`'
b'$CBDD - CB of Denver`14`0.94`7`1613061310.0`'
b'$AGTC - Earnings update and takeoff from penny land`111`0.94`25`1613060718.0`'
b'GAXY-Galaxy Next Generation`9`0.74`8`1613060713.0`'
b'How big is your portfolio?`13`0.88`26`1613060536.0`'
b'CTRM to the MOON?!`16`0.74`15`1613060443.0`'
b'$TNXP just issued agreement`107`0.95`53`1613060395.0`'
b'What do you think the next popular stocks will be?`9`0.67`41`1613060360.0`'
b'Watch out for bad actors out there. There are people that do exactly this`2439`0.97`271`1613059941.0`'
b'Anyone for Canadian weed penny stocks?`6`0.75`19`1613059904.0`'
b'When to Sell?`10`0.82`17`1613059875.0`'
b'NovaBay(NBY) Seems worthwhile trading at $1.20 something today.`4`0.83`7`1613059810.0`'
b'SGMD Mooning`38`0.91`31`1613059800.0`'
b'PLUUF / LIACF Lithium and arbitrage move`10`0.86`5`1613059714.0`'
b'Webull Question`0`0.5`8`1613059683.0`'
b'Does anyone know of any sustainable aviation fuel research companies?`4`0.83`5`1613059535.0`'
b'AGTC for the long haul!`19`0.85`5`1613059478.0`'
b'NDM is being slept on right now, room for a lot of growth, have some shares myself and will probably but more. (not financial advice)`3`0.67`9`1613059442.0`'
b'$HPTY - Hemp Technologies Strong Growth Potential ($0.004)`42`0.86`40`1613059251.0`'
b'CLHI, Unique opportunity after the reverse split ( huge sell- off)`4`0.83`5`1613059107.0`'
b'$ZSAN Short or Long Play`5`0.78`16`1613059104.0`'
b'DD: Zinc8 Energy Solutions - NYC building code approval + State Law requiring investment makes this a favorable pick.`168`0.98`37`1613059009.0`'
b'PSYC as Global Track Solutions vs PSYC Psyched Wellness?`2`0.75`3`1613058864.0`'
b'Lithium Carbonate 99.99% created from lithium ore $ABEPF. Do your own DD , total noob here but looks like a winner to me`5`0.63`7`1613058750.0`'
b"NAKD is gaining. Possibly due to the upcoming Valentine's Day`6`0.69`8`1613058693.0`"
b'App that lets you trade OTC without a brokers fee?`2`0.75`19`1613058571.0`'
b'I need to stop being influenced by this subs stocks, as I\xe2\x80\x99m always late to the party. What\xe2\x80\x99s a good news outlet or journal to get information on stocks?`33`0.92`22`1613058500.0`'
b'GeneDrive PLC - GDR`0`0.4`4`1613058013.0`'
b'Last stock on NASDAQ trading under a dollar GSV`27`0.91`18`1613057916.0`'
b'$SRMX about to break $0.01!`23`0.9`24`1613057909.0`'
b'$LIVC $NVNT Have been spiking on recent increased volume.`0`0.33`1`1613057809.0`'
b'Energy Fuels - $UUUU`11`0.79`10`1613057788.0`'
b'NASDAQ: $PRQR - ProQR Therapeutics.- Developing a cure for blindness in genetic disorders`3`0.72`7`1613057766.0`'
b'$XXII 3.3 Mil volume from 10am-11am. Feb 10`7`0.89`3`1613057732.0`'
b'$GTLL status and info - new website heads up`7`0.77`7`1613057722.0`'
b'Bad Stock Day - weed can\xe2\x80\x99t get high`5`1.0`5`1613075232.0`'
b"What's your best and cheapest sub-penny stock that is taking off right now?`3`1.0`6`1613075216.0`"
b'What happened with Medmen this morning?`1`1.0`1`1613075206.0`'
b'OTC IPO? Nine characters`1`1.0`1`1613075155.0`'
b'NPHC - Nutra Pharma Corp hovering around a penny`1`1.0`2`1613075146.0`'
b'Boy do I have a pennystock for everyone here. HUGE gains and set to double. $SHMP`0`0.4`8`1613074732.0`'
b'This Penny is getting ready to grow`0`0.17`9`1613074661.0`'
b'Tried to post my first DD on MOGO, trying again`0`0.33`5`1613074157.0`'
b'$TAKOF - Drone Delivery Canada About To TAKEOFF`47`0.93`20`1613073694.0`'
b'U.S. stock markets will not operate on Monday, Feb. 15.`27`0.91`16`1613073402.0`'
b'$WTER Q3 earnings 2/16/21 \xf0\x9f\x93\x88\xf0\x9f\x9a\xa8`2`0.67`11`1613073353.0`'
b'DD on a real Pennystock i think that fits here - Aequus Pharmaceuticals Inc. (TSX-V:AQS) (OTCQB:AQSZF)`5`0.86`2`1613073306.0`'
b'Paid research picks`15`0.76`18`1613073233.0`'
b'Anybody buying TRTC on today\xe2\x80\x99s dip?`0`0.25`10`1613072932.0`'
b'$WAVE - Waverly Pharma Inc. - 2 Cancer-Meds with upcoming approval for US and EU market. \xf0\x9f\x92\xa0 \xf0\x9f\x91\x90`0`0.29`11`1613072794.0`'
b'DSS Scalping Is Fun`0`0.35`6`1613072676.0`'
b'Discussion on CBBT Market Cap`0`0.33`2`1613072589.0`'
b'short squeeze in action`0`0.5`33`1613072400.0`'
b'What\xe2\x80\x99s the best way to reach 20k EOY with only $500 in your account?`4`0.59`21`1613072393.0`'
b'$RELI - how not to run a reverse split. What happened ?`4`0.83`4`1613072371.0`'
b'DD on a real penny stock: Spineway, french spinal implants manufacturer @ 0.0013 USD`24`0.85`15`1613072327.0`'
b'Worksport $wksp`1`0.67`2`1613072315.0`'
b'$TNXP DD as promised`49`0.96`9`1613072231.0`'
b'DD on Spineway. Huge Potential!`19`0.81`23`1613071822.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`5`0.73`5`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`9`0.91`6`1613071718.0`'
b'$ADTX Blowing Up, No News`1`0.57`5`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`3`0.53`22`1613071019.0`'
b'How do you all put in stop/limit orders?`3`0.8`16`1613070574.0`'
b'Plan for Now?`4`0.75`28`1613070531.0`'
b'Legit or scam?`2`1.0`8`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`41`0.74`10`1613070350.0`"
b'Anyone have their avg price raised for one reason?`6`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`2`0.63`9`1613070268.0`'
b'$BDRBF is one of the last Pennystocks under $1 left on Robinhood`13`0.74`16`1613070246.0`'
b'Data Storage company MERGER news today. $DTST`9`0.85`7`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`1`1.0`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`0`0.5`16`1613069756.0`"
b'ECEZ on 2B Volume`8`0.84`10`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`17`0.9`15`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`5`1613069667.0`'
b'$BLSP info`0`0.47`8`1613069526.0`'
b'SNPW, TLOFF, CNIKF AND HITIF.`8`0.84`24`1613069228.0`'
b'Techniques`3`1.0`6`1613068783.0`'
b'Down today, up tomorrow -- potential longs?: GTEH, CBBT, BLSP, MJNA`7`0.89`2`1613068650.0`'
b'RTON is going to the moon`10`0.73`15`1613068552.0`'
b'Tekay Corp. $TK`1`0.57`1`1613068441.0`'
b"What's your pennystock you just own for fun without high expectations?`12`1.0`44`1613068239.0`"
b"TDA doesn't allow trailing stop losses on OTCs, any brokerages that do?`3`1.0`13`1613068092.0`"
b'Opinions on TLSS`12`1.0`15`1613068065.0`'
b'Anyone on $LEE`4`1.0`3`1613068030.0`'
b'American Battery Metals Corp - CNBC mention this afternoon.`22`1.0`12`1613067799.0`'
b"Spineway is going insane.. Anyone knows what's going on?`22`0.83`19`1613067652.0`"
b'What is a stock split and why do companies do it ?`6`1.0`7`1613067644.0`'
b'Swing trade watchlist *update* 2/11/20`28`0.97`6`1613067469.0`'
b'Daily Catalyst List Possible?`46`0.97`22`1613067249.0`'
b'Why is CBBT plummeting?`5`0.73`14`1613067067.0`'
b'MSSTF- The Little Psychedelic That Could: New Patent News`4`1.0`7`1613066901.0`'
b'$GAXY - Galaxy Next Generation - A Penny Stock for the Ages? Not So Sure`14`0.75`20`1613066893.0`'
b'Are all pennystocks pump n dumps, or is there long holds?`0`0.31`30`1613066832.0`'
b'Know labs (TKR:knwn)`3`0.8`2`1613066790.0`'
b'FUNFF - Canadian Sports Betting expanding into US`5`0.86`15`1613066775.0`'
b'To all Maritime/potential investors : r/GLBS is here!`0`0.39`14`1613066678.0`'
b'Need help choosing what penny stock to invest in`0`0.5`24`1613066521.0`'
b'ETFM Name Change`2`0.58`11`1613066365.0`'
b'$Ogen Research`0`0.43`6`1613066304.0`'
b'RYMDF DD \xe2\x80\x93 02/11/21 - cross post from the german /r/pennystocks`6`0.81`6`1613066128.0`'
b'PennyStocks - Level 2 Data`3`1.0`11`1613066015.0`'
b'EVERYTHING IS FINE... I THINK *sweats profusely*`113`0.95`115`1613065975.0`'
b'How bad is it to have a daily schedule?`4`0.75`8`1613065672.0`'
b'Your picks under 1c? Trying to find some stocks to research?`12`0.93`63`1613065026.0`'
b'Buy, hold or sell?`8`0.79`14`1613064958.0`'
b'It seems like there is a large group trying to pump HITIF`24`0.71`47`1613064664.0`'
b'Before you panic for any stock dipping...`89`0.97`48`1613064576.0`'
b'Weed Stocks`17`0.85`67`1613064134.0`'
b'Lithium Chile (LTMCF)`28`0.89`18`1613064114.0`'
b'$BRQS China Blockchain Stock`16`0.86`10`1613064035.0`'
b'HPTY Question`4`0.75`6`1613063816.0`'
b'Sun Pacific Power (SNPW) is a Biden and clean energy investment with proprietary solar technology and strong connections to the government`25`0.79`23`1613063687.0`'
b'Settlement date and good faith violations.`3`0.71`11`1613063274.0`'
b'Just bought a 40% dip on Supreme Cannabis Co Inc $53S1 whilst $FIRE only dipped 18%....why is there such a massive difference between the two?`27`0.88`32`1613063190.0`'
b'$WARM DD - A split in the dark DD -`30`0.89`23`1613063105.0`'
b'Cannabis correction today`38`0.95`40`1613063071.0`'
b'For New Investors: Understand Stop Loss`1`1.0`1`1613062841.0`'
b'East discussion`4`0.7`8`1613062769.0`'
b'CTRM is set to make some gain`31`0.87`25`1613062127.0`'
b'How I do due diligence`311`0.97`57`1613062027.0`'
b'Relay Medical - System for rapid Covid Testing for Airports/Borders/Hospitals and so on.`5`0.86`5`1613061970.0`'
b"PULM offering play - buy the dip before it's too late`67`0.92`45`1613061789.0`"
b'PASO here we go again!`6`0.69`13`1613061335.0`'
b'$CBDD - CB of Denver`15`0.94`7`1613061310.0`'
b'$AGTC - Earnings update and takeoff from penny land`129`0.94`25`1613060718.0`'
b'GAXY-Galaxy Next Generation`10`0.71`8`1613060713.0`'
b'How big is your portfolio?`12`0.84`29`1613060536.0`'
b'CTRM to the MOON?!`19`0.75`17`1613060443.0`'
b'$TNXP just issued agreement`124`0.95`60`1613060395.0`'
b'What do you think the next popular stocks will be?`10`0.68`43`1613060360.0`'
b'Watch out for bad actors out there. There are people that do exactly this`3222`0.97`331`1613059941.0`'
b'Anyone for Canadian weed penny stocks?`7`0.82`19`1613059904.0`'
b'When to Sell?`10`0.82`17`1613059875.0`'
b'ACRL (OTC) rising 60% on News`2`1.0`1`1613078730.0`'
b'LTMCF PR RELEASE this week`0`0.5`2`1613078721.0`'
b'If you are a beginner like me with limited funds to start, I created a quick reference price per share chart to use. Hope it can help some of you all out!`9`0.91`3`1613078683.0`'
b'Where can I trade penny stocks in the uk from my mobile?`2`1.0`8`1613078228.0`'
b'$GHSI 3rd day of compliance and why it can run`8`1.0`4`1613078183.0`'
b'$PSYC - Time For The Mushroom Psychedelics Takeover`3`0.8`5`1613078033.0`'
b'Hello guys, you can literally become rich with this penny stonk...that\xe2\x80\x98s not a joke have a look`0`0.36`15`1613077653.0`'
b'Speculation as to why i think Revive Therapeutics phase 3 covid therapeutics drug (Bucillamine) trial results will be positive (RVVTF)`1`0.57`9`1613076710.0`'
b'I finally did something right - thank you r/pennystocks!`75`0.99`10`1613075504.0`'
b'Environment eerily similar to crypto 3 years ago`11`0.72`15`1613075440.0`'
b'$COMS - ComSovereign Holding Corp. 5G electronics Produktion in a 140,000 sq. ft. Manufacturing Facility. PT 7-10 $`2`0.67`9`1613075406.0`'
b'NPHC - Nutra Pharma Corp hovering around a penny`3`1.0`7`1613075146.0`'
b'Tried to post my first DD on MOGO, trying again`0`0.31`9`1613074157.0`'
b'$TAKOF - Drone Delivery Canada About To TAKEOFF`71`0.86`36`1613073694.0`'
b'U.S. stock markets will not operate on Monday, Feb. 15.`67`0.95`23`1613073402.0`'
b'$WTER Q3 earnings 2/16/21 \xf0\x9f\x93\x88\xf0\x9f\x9a\xa8`2`0.67`11`1613073353.0`'
b'DD on a real Pennystock i think that fits here - Aequus Pharmaceuticals Inc. (TSX-V:AQS) (OTCQB:AQSZF)`7`0.82`2`1613073306.0`'
b'Anybody buying TRTC on today\xe2\x80\x99s dip?`0`0.29`10`1613072932.0`'
b'$WAVE - Waverly Pharma Inc. - 2 Cancer-Meds with upcoming approval for US and EU market. \xf0\x9f\x92\xa0 \xf0\x9f\x91\x90`0`0.29`11`1613072794.0`'
b'DSS Scalping Is Fun`0`0.28`6`1613072676.0`'
b'Discussion on CBBT Market Cap`0`0.25`2`1613072589.0`'
b'What\xe2\x80\x99s the best way to reach 20k EOY with only $500 in your account?`2`0.54`25`1613072393.0`'
b'$RELI - how not to run a reverse split. What happened ?`6`0.87`7`1613072371.0`'
b'DD on a real penny stock: Spineway, french spinal implants manufacturer @ 0.0013 USD`27`0.8`19`1613072327.0`'
b'Worksport $wksp`1`0.6`3`1613072315.0`'
b'$TNXP DD as promised`70`0.96`17`1613072231.0`'
b'DD on Spineway. Huge Potential!`33`0.83`27`1613071822.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`5`0.73`6`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`10`0.92`9`1613071718.0`'
b'$ADTX Blowing Up, No News`0`0.5`9`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`5`0.54`26`1613071019.0`'
b'How do you all put in stop/limit orders?`2`0.67`18`1613070574.0`'
b'Plan for Now?`4`0.75`31`1613070531.0`'
b'Legit or scam?`2`1.0`9`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`56`0.76`16`1613070350.0`"
b'Anyone have their avg price raised for one reason?`7`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`2`0.63`10`1613070268.0`'
b'Data Storage company MERGER news today. $DTST`10`0.86`10`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`0`0.5`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`1`0.54`18`1613069756.0`"
b'ECEZ on 2B Volume`7`0.77`11`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`18`0.85`15`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`6`1613069667.0`'
b'$BLSP info`0`0.42`8`1613069526.0`'
b'SNPW, TLOFF, CNIKF AND HITIF.`8`0.83`26`1613069228.0`'
b'Techniques`3`1.0`6`1613068783.0`'
b'Down today, up tomorrow -- potential longs?: GTEH, CBBT, BLSP, MJNA`9`0.85`2`1613068650.0`'
b'RTON is going to the moon`10`0.71`17`1613068552.0`'
b'Tekay Corp. $TK`2`0.62`1`1613068441.0`'
b"What's your pennystock you just own for fun without high expectations?`12`0.94`48`1613068239.0`"
b"TDA doesn't allow trailing stop losses on OTCs, any brokerages that do?`3`1.0`13`1613068092.0`"
b'Opinions on TLSS`14`1.0`16`1613068065.0`'
b'Anyone on $LEE`5`1.0`3`1613068030.0`'
b'American Battery Metals Corp - CNBC mention this afternoon.`23`1.0`12`1613067799.0`'
b"Spineway is going insane.. Anyone knows what's going on?`28`0.87`23`1613067652.0`"
b'What is a stock split and why do companies do it ?`7`1.0`7`1613067644.0`'
b'Swing trade watchlist *update* 2/11/20`32`0.97`8`1613067469.0`'
b'Daily Catalyst List Possible?`50`0.99`23`1613067249.0`'
b'Why is CBBT plummeting?`6`0.8`14`1613067067.0`'
b'MSSTF- The Little Psychedelic That Could: New Patent News`5`1.0`8`1613066901.0`'
b'$GAXY - Galaxy Next Generation - A Penny Stock for the Ages? Not So Sure`14`0.73`27`1613066893.0`'
b'Are all pennystocks pump n dumps, or is there long holds?`0`0.29`30`1613066832.0`'
b'Know labs (TKR:knwn)`2`0.67`3`1613066790.0`'
b'FUNFF - Canadian Sports Betting expanding into US`6`1.0`15`1613066775.0`'
b'To all Maritime/potential investors : r/GLBS is here!`0`0.4`14`1613066678.0`'
b'Need help choosing what penny stock to invest in`0`0.5`25`1613066521.0`'
b'ETFM Name Change`1`0.54`13`1613066365.0`'
b'RYMDF DD \xe2\x80\x93 02/11/21 - cross post from the german /r/pennystocks`7`0.89`6`1613066128.0`'
b'PennyStocks - Level 2 Data`3`1.0`11`1613066015.0`'
b'EVERYTHING IS FINE... I THINK *sweats profusely*`181`0.96`150`1613065975.0`'
b'How bad is it to have a daily schedule?`5`0.78`8`1613065672.0`'
b'Your picks under 1c? Trying to find some stocks to research?`12`0.88`65`1613065026.0`'
b'Buy, hold or sell?`10`0.86`16`1613064958.0`'
b'It seems like there is a large group trying to pump HITIF`28`0.72`47`1613064664.0`'
b'Before you panic for any stock dipping...`96`0.97`52`1613064576.0`'
b'Weed Stocks`17`0.85`67`1613064134.0`'
b'Lithium Chile (LTMCF)`29`0.86`18`1613064114.0`'
b'$BRQS China Blockchain Stock`16`0.86`11`1613064035.0`'
b'HPTY Question`5`0.86`6`1613063816.0`'
b'Sun Pacific Power (SNPW) is a Biden and clean energy investment with proprietary solar technology and strong connections to the government`25`0.77`23`1613063687.0`'
b'Settlement date and good faith violations.`4`0.75`11`1613063274.0`'
b'Just bought a 40% dip on Supreme Cannabis Co Inc $53S1 whilst $FIRE only dipped 18%....why is there such a massive difference between the two?`28`0.89`33`1613063190.0`'
b'$WARM DD - A split in the dark DD -`34`0.92`25`1613063105.0`'
b'Cannabis correction today`44`0.97`41`1613063071.0`'
b'For New Investors: Understand Stop Loss`2`1.0`1`1613062841.0`'
b'East discussion`4`0.7`8`1613062769.0`'
b'CTRM is set to make some gain`34`0.88`25`1613062127.0`'
b'How I do due diligence`395`0.97`67`1613062027.0`'
b'Relay Medical - System for rapid Covid Testing for Airports/Borders/Hospitals and so on.`5`0.86`5`1613061970.0`'
b"PULM offering play - buy the dip before it's too late`70`0.92`50`1613061789.0`"
b'PASO here we go again!`6`0.69`25`1613061335.0`'
b'$CBDD - CB of Denver`15`0.94`8`1613061310.0`'
b'$AGTC - Earnings update and takeoff from penny land`141`0.94`30`1613060718.0`'
b'GAXY-Galaxy Next Generation`12`0.75`9`1613060713.0`'
b'How big is your portfolio?`13`0.88`29`1613060536.0`'
b'CTRM to the MOON?!`18`0.75`18`1613060443.0`'
b'$TNXP just issued agreement`138`0.95`69`1613060395.0`'
b'What do you think the next popular stocks will be?`9`0.68`44`1613060360.0`'
b'Watch out for bad actors out there. There are people that do exactly this`4014`0.97`387`1613059941.0`'
b'Anyone for Canadian weed penny stocks?`8`0.83`19`1613059904.0`'
b'FPVD - Cathie Underwood Connection`1`1.0`0`1613082564.0`'
b'Question about weird Neovasc graphs`1`1.0`1`1613082406.0`'
b'US suspends trading in penny stock as regulator sharpens gaze (SpectraScience)`0`0.36`5`1613082134.0`'
b'$GCPEF - highly shorted (446%) OTC involved in solar cell production`6`0.88`1`1613082074.0`'
b'question about Fidelity app`1`1.0`2`1613081922.0`'
b'Anyone have any good DD on $ADGO?`1`0.67`4`1613081859.0`'
b'Mine crypto on your mobile`0`0.21`8`1613081853.0`'
b'Daily Triple Zero/Lotto Plays - 02/12/21`6`1.0`2`1613081813.0`'
b'TLRY Put Credit Spread to profit off the recent pullback in the Pot stocks today`1`0.67`1`1613081785.0`'
b'Rate my DD`3`1.0`2`1613081608.0`'
b'So SPRWF/FIRE earnings were just released and they\xe2\x80\x99re looking quite nice \xf0\x9f\x94\xa5`29`0.94`16`1613081305.0`'
b'Anomalous Stonks, Thursday, February 11, 2021`5`1.0`2`1613081267.0`'
b'QUIS.V got gainz potential`1`1.0`2`1613080405.0`'
b'My stock screener`14`1.0`13`1613080341.0`'
b'Best way to diversify gains?`4`1.0`5`1613080212.0`'
b'Scalping / Swing Trading / Holding for the Stratosphere?`4`1.0`12`1613080008.0`'
b'$WTRH- Waitr, A profitable food delivery service`9`0.92`5`1613079870.0`'
b'Psychedelic Sector Summary - All Your Questions Answered - Countdown to Liftoff!`24`1.0`8`1613079786.0`'
b'Stocks you think will not go down tommorrow`6`0.81`33`1613079742.0`'
b'SING 1500% short`0`0.1`16`1613079664.0`'
b'ACRL (OTC) rising 60% on News`10`0.86`7`1613078730.0`'
b'If you are a beginner like me with limited funds to start, I created a quick reference price per share chart to use. Hope it can help some of you all out!`76`0.9`30`1613078683.0`'
b'Where can I trade penny stocks in the uk from my mobile?`2`0.75`14`1613078228.0`'
b'$GHSI 3rd day of compliance and why it can run`18`1.0`13`1613078183.0`'
b'$PSYC - Time For The Mushroom Psychedelics Takeover`8`0.83`12`1613078033.0`'
b'Hello guys, you can literally become rich with this penny stonk...that\xe2\x80\x98s not a joke have a look`0`0.31`20`1613077653.0`'
b'Speculation as to why i think Revive Therapeutics phase 3 covid therapeutics drug (Bucillamine) trial results will be positive (RVVTF)`0`0.5`20`1613076710.0`'
b'I finally did something right - thank you r/pennystocks!`147`0.99`19`1613075504.0`'
b'Environment eerily similar to crypto 3 years ago`13`0.71`27`1613075440.0`'
b'$COMS - ComSovereign Holding Corp. 5G electronics Produktion in a 140,000 sq. ft. Manufacturing Facility. PT 7-10 $`1`0.56`14`1613075406.0`'
b'NPHC - Nutra Pharma Corp hovering around a penny`5`1.0`12`1613075146.0`'
b'Tried to post my first DD on MOGO, trying again`0`0.32`10`1613074157.0`'
b'$TAKOF - Drone Delivery Canada About To TAKEOFF`90`0.86`56`1613073694.0`'
b'U.S. stock markets will not operate on Monday, Feb. 15.`99`0.96`33`1613073402.0`'
b'$WTER Q3 earnings 2/16/21 \xf0\x9f\x93\x88\xf0\x9f\x9a\xa8`2`0.67`11`1613073353.0`'
b'DD on a real Pennystock i think that fits here - Aequus Pharmaceuticals Inc. (TSX-V:AQS) (OTCQB:AQSZF)`9`0.85`3`1613073306.0`'
b'Anybody buying TRTC on today\xe2\x80\x99s dip?`0`0.43`10`1613072932.0`'
b'$WAVE - Waverly Pharma Inc. - 2 Cancer-Meds with upcoming approval for US and EU market. \xf0\x9f\x92\xa0 \xf0\x9f\x91\x90`0`0.36`13`1613072794.0`'
b'DSS Scalping Is Fun`0`0.28`6`1613072676.0`'
b'Discussion on CBBT Market Cap`0`0.4`3`1613072589.0`'
b'What\xe2\x80\x99s the best way to reach 20k EOY with only $500 in your account?`1`0.52`34`1613072393.0`'
b'$RELI - how not to run a reverse split. What happened ?`5`0.86`8`1613072371.0`'
b'DD on a real penny stock: Spineway, french spinal implants manufacturer @ 0.0013 USD`38`0.83`24`1613072327.0`'
b'Worksport $wksp`1`0.6`4`1613072315.0`'
b'$TNXP DD as promised`84`0.96`31`1613072231.0`'
b'DD on Spineway. Huge Potential!`43`0.83`29`1613071822.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`5`0.73`7`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`10`0.86`9`1613071718.0`'
b'$ADTX Blowing Up, No News`2`0.63`12`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`9`0.57`26`1613071019.0`'
b'How do you all put in stop/limit orders?`4`0.75`19`1613070574.0`'
b'Plan for Now?`5`0.78`36`1613070531.0`'
b'Legit or scam?`3`1.0`9`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`87`0.8`23`1613070350.0`"
b'Anyone have their avg price raised for one reason?`7`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`2`0.63`11`1613070268.0`'
b'Data Storage company MERGER news today. $DTST`11`0.92`10`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`0`0.5`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`2`0.57`18`1613069756.0`"
b'ECEZ on 2B Volume`6`0.72`19`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`21`0.89`16`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`6`1613069667.0`'
b'$BLSP info`0`0.5`8`1613069526.0`'
b'SNPW, TLOFF, CNIKF AND HITIF.`8`0.83`28`1613069228.0`'
b'Techniques`3`1.0`7`1613068783.0`'
b'Down today, up tomorrow -- potential longs?: GTEH, CBBT, BLSP, MJNA`13`0.93`3`1613068650.0`'
b'RTON is going to the moon`11`0.72`21`1613068552.0`'
b'Tekay Corp. $TK`0`0.5`1`1613068441.0`'
b"What's your pennystock you just own for fun without high expectations?`13`1.0`48`1613068239.0`"
b"TDA doesn't allow trailing stop losses on OTCs, any brokerages that do?`3`1.0`13`1613068092.0`"
b'Opinions on TLSS`13`1.0`15`1613068065.0`'
b'Anyone on $LEE`4`1.0`3`1613068030.0`'
b'American Battery Metals Corp - CNBC mention this afternoon.`25`1.0`12`1613067799.0`'
b"Spineway is going insane.. Anyone knows what's going on?`33`0.88`24`1613067652.0`"
b'What is a stock split and why do companies do it ?`6`1.0`7`1613067644.0`'
b'Swing trade watchlist *update* 2/11/20`36`0.97`11`1613067469.0`'
b'Daily Catalyst List Possible?`54`0.97`25`1613067249.0`'
b'Why is CBBT plummeting?`7`0.82`15`1613067067.0`'
b'MSSTF- The Little Psychedelic That Could: New Patent News`6`1.0`8`1613066901.0`'
b'$GAXY - Galaxy Next Generation - A Penny Stock for the Ages? Not So Sure`17`0.77`31`1613066893.0`'
b'Are all pennystocks pump n dumps, or is there long holds?`0`0.3`30`1613066832.0`'
b'Know labs (TKR:knwn)`2`0.67`3`1613066790.0`'
b'FUNFF - Canadian Sports Betting expanding into US`7`1.0`15`1613066775.0`'
b'To all Maritime/potential investors : r/GLBS is here!`0`0.4`14`1613066678.0`'
b'Need help choosing what penny stock to invest in`0`0.5`26`1613066521.0`'
b'ETFM Name Change`2`0.57`13`1613066365.0`'
b'RYMDF DD \xe2\x80\x93 02/11/21 - cross post from the german /r/pennystocks`8`0.9`6`1613066128.0`'
b'PennyStocks - Level 2 Data`3`1.0`11`1613066015.0`'
b'EVERYTHING IS FINE... I THINK *sweats profusely*`233`0.96`197`1613065975.0`'
b'How bad is it to have a daily schedule?`5`0.86`8`1613065672.0`'
b'Your picks under 1c? Trying to find some stocks to research?`12`0.88`68`1613065026.0`'
b'Buy, hold or sell?`9`0.81`17`1613064958.0`'
b'It seems like there is a large group trying to pump HITIF`29`0.71`53`1613064664.0`'
b'Before you panic for any stock dipping...`101`0.97`55`1613064576.0`'
b'Weed Stocks`18`0.88`69`1613064134.0`'
b'Lithium Chile (LTMCF)`31`0.9`20`1613064114.0`'
b'$BRQS China Blockchain Stock`17`0.87`12`1613064035.0`'
b'HPTY Question`5`0.78`7`1613063816.0`'
b'Sun Pacific Power (SNPW) is a Biden and clean energy investment with proprietary solar technology and strong connections to the government`29`0.8`23`1613063687.0`'
b'Settlement date and good faith violations.`2`0.63`11`1613063274.0`'
b'Did some DD hard last night and choose to add this 4 stocks to these the ETF I already had. Im hoping im good enough at researching as I am at reading so I can profit off of this. Anyone else have these stocks in their portfolio?`1`1.0`3`1613086026.0`'
b'Did I mess up? Red Maint Excess Questrade`1`1.0`2`1613085995.0`'
b'DD - DNN 3/19 $2.5 call options had 120 times normal volume today`3`1.0`2`1613085874.0`'
b'Should I Hold High Tides (HITI) or Sell at a Loss?`1`0.67`9`1613085667.0`'
b'Why $ZSAN is a steal @ 1.60`5`1.0`3`1613085542.0`'
b'Stop chasing the bucks with buying AFTER news hits.`7`0.89`7`1613085492.0`'
b'$CBBT pre-launch party check in`4`0.7`8`1613085336.0`'
b'Anyone else think investing in this company is a good idea?`0`0.5`3`1613085331.0`'
b'What do you guys think of $GNCP`1`1.0`2`1613084980.0`'
b'How do you find after-hours movers?`4`0.83`4`1613084781.0`'
b'Novan receives another US patent. Novan Only Goes Up`7`0.89`6`1613084628.0`'
b'How does S-3 filing affect share price?`1`1.0`2`1613084278.0`'
b'Growth % compounds`12`1.0`2`1613084236.0`'
b'Group chat`8`0.83`19`1613084046.0`'
b'Great news for NOVN holders!`6`0.88`8`1613083987.0`'
b'$NOU.V / $NMGRF - Nouveau Monde Graphite - DD`10`1.0`4`1613083963.0`'
b'Brickell Biotech \xe2\x80\x93 potential 500% gain porn`5`0.67`3`1613083900.0`'
b'$SILO - Silo Pharma - Streetwear Brand turned to Shroom Stock - A full DD on this Psychedelic Research and Development Company.`2`1.0`3`1613083887.0`'
b"Giant cup and handle forming for ZOM? (I'm new at this so I dunno really)`5`0.78`8`1613083864.0`"
b'Watch Your Stock Holdings Tomorrow (Pre-Holiday Effect)`27`0.88`17`1613083529.0`'
b'$FIRE Earnings report came out 10 minutes ago. Here is a TL: DR`118`0.96`60`1613083286.0`'
b'Misspelled a ticker and bought the wrong stock.`6`0.88`9`1613083205.0`'
b'INND is at 6 cents`6`0.75`18`1613083201.0`'
b'$FIRE - supreme cannabis company`33`0.92`15`1613083083.0`'
b'SPRWF Quarterly earnings published`18`1.0`2`1613083070.0`'
b'Ina world full of red, SGMD shines bright \xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85\xe2\x9c\x85. 800 shares @ .012`10`1.0`14`1613083027.0`'
b'Is there any catch to trading a penny stock such as BXNG that follows the same pattern every day?`1`0.67`10`1613082651.0`'
b'Question about weird Neovasc graphs`2`1.0`5`1613082406.0`'
b'US suspends trading in penny stock as regulator sharpens gaze (SpectraScience)`0`0.38`14`1613082134.0`'
b'$GCPEF - highly shorted (446%) OTC involved in solar cell production`6`0.69`6`1613082074.0`'
b'question about Fidelity app`0`0.5`2`1613081922.0`'
b'Anyone have any good DD on $ADGO?`0`0.5`6`1613081859.0`'
b'Daily Triple Zero/Lotto Plays - 02/12/21`12`1.0`10`1613081813.0`'
b'TLRY Put Credit Spread to profit off the recent pullback in the Pot stocks today`1`0.67`1`1613081785.0`'
b'Rate my DD`8`1.0`8`1613081608.0`'
b'So SPRWF/FIRE earnings were just released and they\xe2\x80\x99re looking quite nice \xf0\x9f\x94\xa5`88`0.98`40`1613081305.0`'
b'Anomalous Stonks, Thursday, February 11, 2021`7`1.0`3`1613081267.0`'
b'QUIS.V got gainz potential`1`1.0`3`1613080405.0`'
b'My stock screener`22`0.97`19`1613080341.0`'
b'Best way to diversify gains?`3`0.81`6`1613080212.0`'
b'Scalping / Swing Trading / Holding for the Stratosphere?`2`0.67`17`1613080008.0`'
b'$WTRH- Waitr, A profitable food delivery service`11`0.93`7`1613079870.0`'
b'Psychedelic Sector Summary - All Your Questions Answered - Countdown to Liftoff!`36`0.97`13`1613079786.0`'
b'Stocks you think will not go down tommorrow`6`0.81`43`1613079742.0`'
b'SING 1500% short`0`0.12`18`1613079664.0`'
b'ACRL (OTC) rising 60% on News`9`0.85`7`1613078730.0`'
b'If you are a beginner like me with limited funds to start, I created a quick reference price per share chart to use. Hope it can help some of you all out!`128`0.91`42`1613078683.0`'
b'Where can I trade penny stocks in the uk from my mobile?`1`0.6`14`1613078228.0`'
b'$GHSI 3rd day of compliance and why it can run`21`1.0`13`1613078183.0`'
b'$PSYC - Time For The Mushroom Psychedelics Takeover`6`0.76`13`1613078033.0`'
b'Hello guys, you can literally become rich with this penny stonk...that\xe2\x80\x98s not a joke have a look`0`0.35`22`1613077653.0`'
b'Speculation as to why i think Revive Therapeutics phase 3 covid therapeutics drug (Bucillamine) trial results will be positive (RVVTF)`2`0.6`20`1613076710.0`'
b'I finally did something right - thank you r/pennystocks!`214`0.99`38`1613075504.0`'
b'Environment eerily similar to crypto 3 years ago`13`0.68`29`1613075440.0`'
b'$COMS - ComSovereign Holding Corp. 5G electronics Produktion in a 140,000 sq. ft. Manufacturing Facility. PT 7-10 $`1`0.55`14`1613075406.0`'
b'NPHC - Nutra Pharma Corp hovering around a penny`5`0.86`15`1613075146.0`'
b'Tried to post my first DD on MOGO, trying again`0`0.39`10`1613074157.0`'
b'$TAKOF - Drone Delivery Canada About To TAKEOFF`101`0.87`61`1613073694.0`'
b'U.S. stock markets will not operate on Monday, Feb. 15.`137`0.97`37`1613073402.0`'
b'$WTER Q3 earnings 2/16/21 \xf0\x9f\x93\x88\xf0\x9f\x9a\xa8`3`0.71`12`1613073353.0`'
b'DD on a real Pennystock i think that fits here - Aequus Pharmaceuticals Inc. (TSX-V:AQS) (OTCQB:AQSZF)`10`0.86`3`1613073306.0`'
b'Anybody buying TRTC on today\xe2\x80\x99s dip?`0`0.43`10`1613072932.0`'
b'$WAVE - Waverly Pharma Inc. - 2 Cancer-Meds with upcoming approval for US and EU market. \xf0\x9f\x92\xa0 \xf0\x9f\x91\x90`0`0.33`13`1613072794.0`'
b'DSS Scalping Is Fun`0`0.33`7`1613072676.0`'
b'Discussion on CBBT Market Cap`0`0.4`3`1613072589.0`'
b'What\xe2\x80\x99s the best way to reach 20k EOY with only $500 in your account?`1`0.52`36`1613072393.0`'
b'$RELI - how not to run a reverse split. What happened ?`5`0.78`9`1613072371.0`'
b'DD on a real penny stock: Spineway, french spinal implants manufacturer @ 0.0013 USD`44`0.84`25`1613072327.0`'
b'Worksport $wksp`1`0.6`4`1613072315.0`'
b'$TNXP DD as promised`91`0.95`35`1613072231.0`'
b'DD on Spineway. Huge Potential!`47`0.83`30`1613071822.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`6`0.75`7`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`12`0.93`9`1613071718.0`'
b'$ADTX Blowing Up, No News`3`0.67`12`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`10`0.58`27`1613071019.0`'
b'Plan for Now?`5`0.78`37`1613070531.0`'
b'Legit or scam?`3`1.0`9`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`103`0.81`25`1613070350.0`"
b'Anyone have their avg price raised for one reason?`7`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`4`0.75`11`1613070268.0`'
b'Data Storage company MERGER news today. $DTST`10`0.92`10`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`0`0.5`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`0`0.5`18`1613069756.0`"
b'ECEZ on 2B Volume`9`0.8`19`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`22`0.85`17`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`9`1613069667.0`'
b'$BLSP info`0`0.45`8`1613069526.0`'
b'SNPW, TLOFF, CNIKF AND HITIF.`11`0.87`28`1613069228.0`'
b'Time for an actual pennystock: Spineway (ALSPW): Surgery implants manufacturer, 0.0013 USD`1`1.0`0`1613068833.0`'
b'Techniques`3`1.0`7`1613068783.0`'
b'Down today, up tomorrow -- potential longs?: GTEH, CBBT, BLSP, MJNA`14`0.94`3`1613068650.0`'
b'RTON is going to the moon`14`0.77`21`1613068552.0`'
b'Tekay Corp. $TK`1`0.57`1`1613068441.0`'
b"What's your pennystock you just own for fun without high expectations?`13`1.0`49`1613068239.0`"
b"TDA doesn't allow trailing stop losses on OTCs, any brokerages that do?`3`1.0`13`1613068092.0`"
b'Opinions on TLSS`14`1.0`15`1613068065.0`'
b'Anyone on $LEE`4`1.0`3`1613068030.0`'
b'American Battery Metals Corp - CNBC mention this afternoon.`25`0.94`13`1613067799.0`'
b"Spineway is going insane.. Anyone knows what's going on?`36`0.87`24`1613067652.0`"
b'What is a stock split and why do companies do it ?`5`0.86`7`1613067644.0`'
b"My first DD(ish) on $DNN--my write up is mediocre, but the stock doesn't seem to be`4`1.0`2`1613089532.0`"
b'App for penny stocks ??`2`1.0`6`1613089449.0`'
b'What happened with $SRMX`4`1.0`2`1613089366.0`'
b'Careful with people telling you to buy the dip...`3`1.0`4`1613089325.0`'
b'Huge drop AH`3`1.0`4`1613089262.0`'
b'$GMEV: Hydroponics + Vertical Farming = Investment to Mars!`3`0.71`4`1613088864.0`'
b'PASO - Heavy purchase traffic right before close today.`6`1.0`3`1613088751.0`'
b'GEVO - BUY the dip | Upcoming PR - Predictions`6`1.0`7`1613088581.0`'
b'Medical Analysis: Atossa Therapeutics (ATOS)`14`1.0`4`1613087929.0`'
b'VISION LITHIUM (ABEPF) closed at $0.615 today, how much more do you expect it to grow yet?`3`1.0`11`1613087859.0`'
b'HIPH - American Premium Water`0`0.5`13`1613086946.0`'
b'CBDD - Here is my DD on the CBD Market and a Company I Found in 2019`8`0.83`3`1613086793.0`'
b'$AZN.V pooped the bed today for no reason I can figure out. Any ideas?`2`0.75`7`1613086542.0`'
b'$MINE Minerco has some good news for us shareholders`28`0.91`16`1613086233.0`'
b'DD - DNN 3/19 $2.5 call options had 120 times normal volume today`16`1.0`6`1613085874.0`'
b'Why $ZSAN is a steal @ 1.60`15`0.89`19`1613085542.0`'
b'Stop chasing the bucks with buying AFTER news hits.`33`0.93`22`1613085492.0`'
b'$CBBT pre-launch party check in`16`0.86`32`1613085336.0`'
b'How does S-3 filing affect share price?`1`1.0`2`1613084278.0`'
b'Growth % compounds`20`1.0`2`1613084236.0`'
b'$NOU.V / $NMGRF - Nouveau Monde Graphite - DD`16`0.95`20`1613083963.0`'
b'Brickell Biotech \xe2\x80\x93 potential 500% gain porn`9`0.74`7`1613083900.0`'
b'$SILO - Silo Pharma - Streetwear Brand turned to Shroom Stock - A full DD on this Psychedelic Research and Development Company.`2`1.0`4`1613083887.0`'
b'Watch Your Stock Holdings Tomorrow (Pre-Holiday Effect)`44`0.91`26`1613083529.0`'
b'$FIRE Earnings report came out 10 minutes ago. Here is a TL: DR`254`0.95`144`1613083286.0`'
b'$FIRE - supreme cannabis company`54`0.94`20`1613083083.0`'
b'SPRWF Quarterly earnings published`32`0.99`3`1613083070.0`'
b'Is there any catch to trading a penny stock such as BXNG that follows the same pattern every day?`1`0.67`10`1613082651.0`'
b'Question about weird Neovasc graphs`2`1.0`8`1613082406.0`'
b'US suspends trading in penny stock as regulator sharpens gaze (SpectraScience)`0`0.47`16`1613082134.0`'
b'$GCPEF - highly shorted (446%) OTC involved in solar cell production`7`0.7`7`1613082074.0`'
b'question about Fidelity app`0`0.5`2`1613081922.0`'
b'Anyone have any good DD on $ADGO?`0`0.5`6`1613081859.0`'
b'Daily Triple Zero/Lotto Plays - 02/12/21`15`0.95`12`1613081813.0`'
b'TLRY Put Credit Spread to profit off the recent pullback in the Pot stocks today`3`0.71`1`1613081785.0`'
b'Rate my DD`10`1.0`10`1613081608.0`'
b'So SPRWF/FIRE earnings were just released and they\xe2\x80\x99re looking quite nice \xf0\x9f\x94\xa5`122`0.98`52`1613081305.0`'
b'Anomalous Stonks, Thursday, February 11, 2021`8`1.0`3`1613081267.0`'
b'QUIS.V got gainz potential`1`1.0`3`1613080405.0`'
b'My stock screener`28`1.0`22`1613080341.0`'
b'Best way to diversify gains?`5`0.86`6`1613080212.0`'
b'Scalping / Swing Trading / Holding for the Stratosphere?`2`0.67`19`1613080008.0`'
b'$WTRH- Waitr, A profitable food delivery service`9`0.92`7`1613079870.0`'
b'Psychedelic Sector Summary - All Your Questions Answered - Countdown to Liftoff!`44`0.95`14`1613079786.0`'
b'Stocks you think will not go down tommorrow`7`0.82`52`1613079742.0`'
b'SING 1500% short`0`0.09`18`1613079664.0`'
b'ACRL (OTC) rising 60% on News`10`0.92`8`1613078730.0`'
b'If you are a beginner like me with limited funds to start, I created a quick reference price per share chart to use. Hope it can help some of you all out!`169`0.92`45`1613078683.0`'
b'Where can I trade penny stocks in the uk from my mobile?`1`0.6`17`1613078228.0`'
b'$GHSI 3rd day of compliance and why it can run`17`0.92`13`1613078183.0`'
b'$PSYC - Time For The Mushroom Psychedelics Takeover`7`0.74`13`1613078033.0`'
b'Hello guys, you can literally become rich with this penny stonk...that\xe2\x80\x98s not a joke have a look`0`0.38`22`1613077653.0`'
b'Speculation as to why i think Revive Therapeutics phase 3 covid therapeutics drug (Bucillamine) trial results will be positive (RVVTF)`2`0.58`25`1613076710.0`'
b'I finally did something right - thank you r/pennystocks!`257`0.99`49`1613075504.0`'
b'Environment eerily similar to crypto 3 years ago`14`0.68`30`1613075440.0`'
b'$COMS - ComSovereign Holding Corp. 5G electronics Produktion in a 140,000 sq. ft. Manufacturing Facility. PT 7-10 $`0`0.5`14`1613075406.0`'
b'NPHC - Nutra Pharma Corp hovering around a penny`5`1.0`15`1613075146.0`'
b'Tried to post my first DD on MOGO, trying again`0`0.35`10`1613074157.0`'
b'$TAKOF - Drone Delivery Canada About To TAKEOFF`105`0.86`63`1613073694.0`'
b'U.S. stock markets will not operate on Monday, Feb. 15.`161`0.97`46`1613073402.0`'
b'$WTER Q3 earnings 2/16/21 \xf0\x9f\x93\x88\xf0\x9f\x9a\xa8`3`0.71`12`1613073353.0`'
b'DD on a real Pennystock i think that fits here - Aequus Pharmaceuticals Inc. (TSX-V:AQS) (OTCQB:AQSZF)`11`0.92`3`1613073306.0`'
b'Anybody buying TRTC on today\xe2\x80\x99s dip?`0`0.33`10`1613072932.0`'
b'$WAVE - Waverly Pharma Inc. - 2 Cancer-Meds with upcoming approval for US and EU market. \xf0\x9f\x92\xa0 \xf0\x9f\x91\x90`0`0.33`13`1613072794.0`'
b'DSS Scalping Is Fun`0`0.28`7`1613072676.0`'
b'Discussion on CBBT Market Cap`0`0.4`3`1613072589.0`'
b'What\xe2\x80\x99s the best way to reach 20k EOY with only $500 in your account?`1`0.52`37`1613072393.0`'
b'$RELI - how not to run a reverse split. What happened ?`5`0.78`11`1613072371.0`'
b'DD on a real penny stock: Spineway, french spinal implants manufacturer @ 0.0013 USD`45`0.83`27`1613072327.0`'
b'Worksport $wksp`1`0.6`4`1613072315.0`'
b'$TNXP DD as promised`97`0.94`37`1613072231.0`'
b'DD on Spineway. Huge Potential!`53`0.84`30`1613071822.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`5`0.73`7`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`11`0.87`9`1613071718.0`'
b'$ADTX Blowing Up, No News`3`0.64`12`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`11`0.58`27`1613071019.0`'
b'Plan for Now?`5`0.78`38`1613070531.0`'
b'Legit or scam?`3`1.0`9`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`122`0.82`28`1613070350.0`"
b'Anyone have their avg price raised for one reason?`6`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`4`0.75`11`1613070268.0`'
b'Data Storage company MERGER news today. $DTST`10`0.86`10`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`0`0.5`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`0`0.46`19`1613069756.0`"
b'ECEZ on 2B Volume`10`0.81`19`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`25`0.9`17`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`9`1613069667.0`'
b'$BLSP info`0`0.48`9`1613069526.0`'
b'SNPW, TLOFF, CNIKF AND HITIF.`11`0.87`28`1613069228.0`'
b'Time for an actual pennystock: Spineway (ALSPW): Surgery implants manufacturer, 0.0013 USD`1`1.0`0`1613068833.0`'
b'Techniques`3`1.0`7`1613068783.0`'
b'Down today, up tomorrow -- potential longs?: GTEH, CBBT, BLSP, MJNA`14`0.9`3`1613068650.0`'
b'RTON is going to the moon`14`0.77`21`1613068552.0`'
b'Tekay Corp. $TK`1`0.57`1`1613068441.0`'
b"What's your pennystock you just own for fun without high expectations?`13`1.0`50`1613068239.0`"
b"TDA doesn't allow trailing stop losses on OTCs, any brokerages that do?`3`1.0`13`1613068092.0`"
b'Opinions on TLSS`14`0.95`14`1613068065.0`'
b'Anyone on $LEE`4`1.0`3`1613068030.0`'
b'American Battery Metals Corp - CNBC mention this afternoon.`29`0.97`15`1613067799.0`'
b"Spineway is going insane.. Anyone knows what's going on?`34`0.85`25`1613067652.0`"
b'Medical Marijuana MJNA`1`1.0`2`1613093234.0`'
b'SNPW holding tough with a basic support trend even though it\xe2\x80\x99s seemingly been all over the place. Tomorrow will be an interesting day with this one.`4`1.0`1`1613093088.0`'
b'Be careful when you follow your GURUs as they are dumping on you`7`1.0`1`1613092970.0`'
b'IPIX Investors`2`1.0`3`1613092897.0`'
b'ALRN chart looks really nice`2`1.0`2`1613092740.0`'
b'MMEX - Actually has some construction done?`1`1.0`1`1613092611.0`'
b'ECEZ solid DD`9`0.91`1`1613092478.0`'
b'$GTEH Information & research`3`1.0`2`1613092396.0`'
b'Draganfly (OTC: DFLYF) - Money maker (rocket emoji) (rocket emoji) (rocket emoji)`6`0.88`2`1613091791.0`'
b'How to know if a company is current with SEC?`2`1.0`3`1613091762.0`'
b'A bit of a naive question, but I had some ABEPF (vision lithium) today and I want to buy some more tomorrow as the company looks very promising.. how will the my average calculated?`5`1.0`6`1613091413.0`'
b'Almost every stock I dumped after i gained 75 to 100% went up shortly after.`4`0.7`43`1613090761.0`'
b'Loop Insights signs 4 year deal with 1 of Canada\xe2\x80\x99s top 5 Ski Destinations through Telus IoT Marketplace`0`0.5`1`1613090699.0`'
b'Ctrm Looks odd to me but maybe because im new`9`0.91`13`1613090460.0`'
b'$VRME going to add tomorrow in anticipation that it will bounce off the 20 EMA, $5.00 Support, .618 fib ext, bottom trendline, and pullback from the level in the RSI that made it reverse the last time. Relative volume over 2, float is under 10 million. I like eet`3`1.0`4`1613089953.0`'
b'LQMT: Cup & Handle formation beginning to launch. 10-K coming out March 9th.`13`0.93`4`1613089875.0`'
b"My first DD(ish) on $DNN--my write up is mediocre, but the stock doesn't seem to be`20`0.88`18`1613089532.0`"
b'$GMEV: Hydroponics + Vertical Farming = Investment to Mars!`27`0.91`18`1613088864.0`'
b'PASO - Heavy purchase traffic right before close today.`11`0.92`6`1613088751.0`'
b'GEVO - BUY the dip | Upcoming PR - Predictions`7`0.77`12`1613088581.0`'
b'Medical Analysis: Atossa Therapeutics (ATOS)`25`0.95`13`1613087929.0`'
b'CBDD - Here is my DD on the CBD Market and a Company I Found in 2019`10`0.81`5`1613086793.0`'
b'$AZN.V pooped the bed today for no reason I can figure out. Any ideas?`3`0.67`9`1613086542.0`'
b'$MINE Minerco has some good news for us shareholders`43`0.88`21`1613086233.0`'
b'DD - DNN 3/19 $2.5 call options had 120 times normal volume today`22`1.0`12`1613085874.0`'
b'Why $ZSAN is a steal @ 1.60`17`0.82`23`1613085542.0`'
b'Stop chasing the bucks with buying AFTER news hits.`45`0.93`23`1613085492.0`'
b'$CBBT pre-launch party check in`23`0.85`35`1613085336.0`'
b'How does S-3 filing affect share price?`2`1.0`3`1613084278.0`'
b'Growth % compounds`21`0.97`2`1613084236.0`'
b'$NOU.V / $NMGRF - Nouveau Monde Graphite - DD`20`1.0`23`1613083963.0`'
b'Brickell Biotech \xe2\x80\x93 potential 500% gain porn`11`0.76`8`1613083900.0`'
b'$SILO - Silo Pharma - Streetwear Brand turned to Shroom Stock - A full DD on this Psychedelic Research and Development Company.`3`1.0`5`1613083887.0`'
b'Watch Your Stock Holdings Tomorrow (Pre-Holiday Effect)`68`0.92`33`1613083529.0`'
b'$FIRE Earnings report came out 10 minutes ago. Here is a TL: DR`376`0.95`200`1613083286.0`'
b'$FIRE - supreme cannabis company`71`0.94`23`1613083083.0`'
b'SPRWF Quarterly earnings published`39`0.93`3`1613083070.0`'
b'Is there any catch to trading a penny stock such as BXNG that follows the same pattern every day?`4`0.83`11`1613082651.0`'
b'Question about weird Neovasc graphs`3`1.0`10`1613082406.0`'
b'US suspends trading in penny stock as regulator sharpens gaze (SpectraScience)`2`0.56`16`1613082134.0`'
b'$GCPEF - highly shorted (446%) OTC involved in solar cell production`7`0.7`7`1613082074.0`'
b'Anyone have any good DD on $ADGO?`2`0.67`6`1613081859.0`'
b'Daily Triple Zero/Lotto Plays - 02/12/21`18`0.95`15`1613081813.0`'
b'TLRY Put Credit Spread to profit off the recent pullback in the Pot stocks today`4`0.75`1`1613081785.0`'
b'Rate my DD`10`0.92`10`1613081608.0`'
b'So SPRWF/FIRE earnings were just released and they\xe2\x80\x99re looking quite nice \xf0\x9f\x94\xa5`156`0.97`58`1613081305.0`'
b'Anomalous Stonks, Thursday, February 11, 2021`14`1.0`3`1613081267.0`'
b'QUIS.V got gainz potential`2`1.0`3`1613080405.0`'
b'My stock screener`31`0.96`27`1613080341.0`'
b'Best way to diversify gains?`4`0.84`6`1613080212.0`'
b'Scalping / Swing Trading / Holding for the Stratosphere?`4`0.71`19`1613080008.0`'
b'$WTRH- Waitr, A profitable food delivery service`10`0.87`7`1613079870.0`'
b'Psychedelic Sector Summary - All Your Questions Answered - Countdown to Liftoff!`54`0.94`17`1613079786.0`'
b'Stocks you think will not go down tommorrow`9`0.91`55`1613079742.0`'
b'SING 1500% short`0`0.15`18`1613079664.0`'
b'ACRL (OTC) rising 60% on News`11`0.87`9`1613078730.0`'
b'If you are a beginner like me with limited funds to start, I created a quick reference price per share chart to use. Hope it can help some of you all out!`232`0.92`51`1613078683.0`'
b'Where can I trade penny stocks in the uk from my mobile?`2`0.67`17`1613078228.0`'
b'$GHSI 3rd day of compliance and why it can run`21`1.0`14`1613078183.0`'
b'$PSYC - Time For The Mushroom Psychedelics Takeover`10`0.82`13`1613078033.0`'
b'Hello guys, you can literally become rich with this penny stonk...that\xe2\x80\x98s not a joke have a look`0`0.38`22`1613077653.0`'
b'Speculation as to why i think Revive Therapeutics phase 3 covid therapeutics drug (Bucillamine) trial results will be positive (RVVTF)`3`0.64`25`1613076710.0`'
b'I finally did something right - thank you r/pennystocks!`309`0.99`60`1613075504.0`'
b'Environment eerily similar to crypto 3 years ago`16`0.69`30`1613075440.0`'
b'$COMS - ComSovereign Holding Corp. 5G electronics Produktion in a 140,000 sq. ft. Manufacturing Facility. PT 7-10 $`0`0.5`14`1613075406.0`'
b'NPHC - Nutra Pharma Corp hovering around a penny`6`0.88`18`1613075146.0`'
b'Tried to post my first DD on MOGO, trying again`0`0.38`10`1613074157.0`'
b'$TAKOF - Drone Delivery Canada About To TAKEOFF`116`0.86`68`1613073694.0`'
b'U.S. stock markets will not operate on Monday, Feb. 15.`202`0.98`49`1613073402.0`'
b'$WTER Q3 earnings 2/16/21 \xf0\x9f\x93\x88\xf0\x9f\x9a\xa8`2`0.63`13`1613073353.0`'
b'DD on a real Pennystock i think that fits here - Aequus Pharmaceuticals Inc. (TSX-V:AQS) (OTCQB:AQSZF)`10`0.86`4`1613073306.0`'
b'Anybody buying TRTC on today\xe2\x80\x99s dip?`0`0.33`10`1613072932.0`'
b'$WAVE - Waverly Pharma Inc. - 2 Cancer-Meds with upcoming approval for US and EU market. \xf0\x9f\x92\xa0 \xf0\x9f\x91\x90`0`0.3`13`1613072794.0`'
b'DSS Scalping Is Fun`0`0.33`7`1613072676.0`'
b'Discussion on CBBT Market Cap`0`0.5`3`1613072589.0`'
b'What\xe2\x80\x99s the best way to reach 20k EOY with only $500 in your account?`3`0.55`38`1613072393.0`'
b'$RELI - how not to run a reverse split. What happened ?`4`0.75`11`1613072371.0`'
b'DD on a real penny stock: Spineway, french spinal implants manufacturer @ 0.0013 USD`50`0.83`28`1613072327.0`'
b'Worksport $wksp`1`0.6`4`1613072315.0`'
b'$TNXP DD as promised`106`0.95`42`1613072231.0`'
b'DD on Spineway. Huge Potential!`56`0.84`30`1613071822.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`4`0.67`7`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`12`0.93`9`1613071718.0`'
b'$ADTX Blowing Up, No News`3`0.67`13`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`15`0.6`27`1613071019.0`'
b'Plan for Now?`5`0.73`38`1613070531.0`'
b'Legit or scam?`3`1.0`9`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`147`0.83`29`1613070350.0`"
b'Anyone have their avg price raised for one reason?`7`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`4`0.75`11`1613070268.0`'
b'Data Storage company MERGER news today. $DTST`10`0.86`10`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`0`0.5`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`1`0.53`20`1613069756.0`"
b'ECEZ on 2B Volume`12`0.83`20`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`23`0.86`18`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`9`1613069667.0`'
b'$BLSP info`0`0.5`9`1613069526.0`'
b'SNPW, TLOFF, CNIKF AND HITIF.`13`0.88`28`1613069228.0`'
b'Time for an actual pennystock: Spineway (ALSPW): Surgery implants manufacturer, 0.0013 USD`0`0.5`0`1613068833.0`'
b'Techniques`3`1.0`7`1613068783.0`'
b'DD on MariMed (MRMD)`7`1.0`1`1613095915.0`'
b'SNPW is on a discount tomorrow, get in before its too late`15`0.86`7`1613094817.0`'
b'Noob questions about FIRE earnings report`7`1.0`8`1613094486.0`'
b'WHAT ARE YOU BUYING TOMMOROW`7`0.77`41`1613093966.0`'
b'Medical Marijuana MJNA`6`0.88`18`1613093234.0`'
b'SNPW holding tough with a basic support trend even though it\xe2\x80\x99s seemingly been all over the place. Tomorrow will be an interesting day with this one.`26`0.91`7`1613093088.0`'
b'Be careful when you follow your GURUs as they are dumping on you`41`0.93`20`1613092970.0`'
b'IPIX Investors`4`0.83`32`1613092897.0`'
b'ALRN chart looks really nice`2`0.63`9`1613092740.0`'
b'MMEX - Actually has some construction done?`3`1.0`3`1613092611.0`'
b'ECEZ solid DD`14`0.89`11`1613092478.0`'
b'$GTEH Information & research`8`0.9`4`1613092396.0`'
b'Draganfly (OTC: DFLYF) - Money maker (rocket emoji) (rocket emoji) (rocket emoji)`7`0.74`6`1613091791.0`'
b'How to know if a company is current with SEC?`1`0.67`3`1613091762.0`'
b'A bit of a naive question, but I had some ABEPF (vision lithium) today and I want to buy some more tomorrow as the company looks very promising.. how will the my average calculated?`5`0.86`8`1613091413.0`'
b'Almost every stock I dumped after i gained 75 to 100% went up shortly after.`9`0.76`57`1613090761.0`'
b'Loop Insights signs 4 year deal with 1 of Canada\xe2\x80\x99s top 5 Ski Destinations through Telus IoT Marketplace`0`0.4`2`1613090699.0`'
b'Ctrm Looks odd to me but maybe because im new`10`0.81`23`1613090460.0`'
b'$VRME going to add tomorrow in anticipation that it will bounce off the 20 EMA, $5.00 Support, .618 fib ext, bottom trendline, and pullback from the level in the RSI that made it reverse the last time. Relative volume over 2, float is under 10 million. I like eet`5`0.86`5`1613089953.0`'
b'LQMT: Cup & Handle formation beginning to launch. 10-K coming out March 9th.`15`0.89`8`1613089875.0`'
b"My first DD(ish) on $DNN--my write up is mediocre, but the stock doesn't seem to be`33`0.94`20`1613089532.0`"
b'$GMEV: Hydroponics + Vertical Farming = Investment to Mars!`62`0.95`28`1613088864.0`'
b'PASO - Heavy purchase traffic right before close today.`12`0.88`15`1613088751.0`'
b'GEVO - BUY the dip | Upcoming PR - Predictions`4`0.64`15`1613088581.0`'
b'Medical Analysis: Atossa Therapeutics (ATOS)`31`0.88`17`1613087929.0`'
b'CBDD - Here is my DD on the CBD Market and a Company I Found in 2019`11`0.74`5`1613086793.0`'
b'$AZN.V pooped the bed today for no reason I can figure out. Any ideas?`6`0.75`11`1613086542.0`'
b'$MINE Minerco has some good news for us shareholders`66`0.91`25`1613086233.0`'
b'DD - DNN 3/19 $2.5 call options had 120 times normal volume today`27`0.97`13`1613085874.0`'
b'Why $ZSAN is a steal @ 1.60`19`0.77`26`1613085542.0`'
b'Stop chasing the bucks with buying AFTER news hits.`58`0.93`26`1613085492.0`'
b'$CBBT pre-launch party check in`24`0.82`40`1613085336.0`'
b'How does S-3 filing affect share price?`1`0.67`3`1613084278.0`'
b'Growth % compounds`23`0.97`3`1613084236.0`'
b'$NOU.V / $NMGRF - Nouveau Monde Graphite - DD`22`0.97`26`1613083963.0`'
b'Brickell Biotech \xe2\x80\x93 potential 500% gain porn`10`0.71`8`1613083900.0`'
b'$SILO - Silo Pharma - Streetwear Brand turned to Shroom Stock - A full DD on this Psychedelic Research and Development Company.`3`0.8`5`1613083887.0`'
b'Watch Your Stock Holdings Tomorrow (Pre-Holiday Effect)`82`0.92`44`1613083529.0`'
b'$FIRE Earnings report came out 10 minutes ago. Here is a TL: DR`461`0.95`249`1613083286.0`'
b'$FIRE - supreme cannabis company`92`0.92`30`1613083083.0`'
b'SPRWF Quarterly earnings published`48`0.94`3`1613083070.0`'
b'Is there any catch to trading a penny stock such as BXNG that follows the same pattern every day?`3`0.8`12`1613082651.0`'
b'Question about weird Neovasc graphs`3`1.0`11`1613082406.0`'
b'US suspends trading in penny stock as regulator sharpens gaze (SpectraScience)`2`0.56`16`1613082134.0`'
b'$GCPEF - highly shorted (446%) OTC involved in solar cell production`6`0.69`7`1613082074.0`'
b'Anyone have any good DD on $ADGO?`2`0.63`6`1613081859.0`'
b'Daily Triple Zero/Lotto Plays - 02/12/21`18`0.92`20`1613081813.0`'
b'TLRY Put Credit Spread to profit off the recent pullback in the Pot stocks today`5`0.78`1`1613081785.0`'
b'Rate my DD`9`0.85`10`1613081608.0`'
b'So SPRWF/FIRE earnings were just released and they\xe2\x80\x99re looking quite nice \xf0\x9f\x94\xa5`201`0.98`66`1613081305.0`'
b'Anomalous Stonks, Thursday, February 11, 2021`15`0.95`3`1613081267.0`'
b'QUIS.V got gainz potential`2`1.0`3`1613080405.0`'
b'My stock screener`35`0.97`27`1613080341.0`'
b'Best way to diversify gains?`6`0.88`6`1613080212.0`'
b'Scalping / Swing Trading / Holding for the Stratosphere?`6`0.87`19`1613080008.0`'
b'$WTRH- Waitr, A profitable food delivery service`8`0.8`7`1613079870.0`'
b'Psychedelic Sector Summary - All Your Questions Answered - Countdown to Liftoff!`62`0.95`19`1613079786.0`'
b'Stocks you think will not go down tommorrow`11`0.87`59`1613079742.0`'
b'SING 1500% short`0`0.15`18`1613079664.0`'
b'ACRL (OTC) rising 60% on News`11`0.87`9`1613078730.0`'
b'If you are a beginner like me with limited funds to start, I created a quick reference price per share chart to use. Hope it can help some of you all out!`305`0.92`55`1613078683.0`'
b'Where can I trade penny stocks in the uk from my mobile?`2`0.67`17`1613078228.0`'
b'$GHSI 3rd day of compliance and why it can run`25`0.96`18`1613078183.0`'
b'$PSYC - Time For The Mushroom Psychedelics Takeover`7`0.74`13`1613078033.0`'
b'Hello guys, you can literally become rich with this penny stonk...that\xe2\x80\x98s not a joke have a look`0`0.36`22`1613077653.0`'
b'Speculation as to why i think Revive Therapeutics phase 3 covid therapeutics drug (Bucillamine) trial results will be positive (RVVTF)`4`0.64`25`1613076710.0`'
b'I finally did something right - thank you r/pennystocks!`343`0.99`70`1613075504.0`'
b'Environment eerily similar to crypto 3 years ago`20`0.73`30`1613075440.0`'
b'$COMS - ComSovereign Holding Corp. 5G electronics Produktion in a 140,000 sq. ft. Manufacturing Facility. PT 7-10 $`3`0.58`14`1613075406.0`'
b'NPHC - Nutra Pharma Corp hovering around a penny`6`0.88`18`1613075146.0`'
b'Tried to post my first DD on MOGO, trying again`0`0.4`11`1613074157.0`'
b'$TAKOF - Drone Delivery Canada About To TAKEOFF`132`0.87`69`1613073694.0`'
b'U.S. stock markets will not operate on Monday, Feb. 15.`220`0.98`54`1613073402.0`'
b'$WTER Q3 earnings 2/16/21 \xf0\x9f\x93\x88\xf0\x9f\x9a\xa8`3`0.67`15`1613073353.0`'
b'DD on a real Pennystock i think that fits here - Aequus Pharmaceuticals Inc. (TSX-V:AQS) (OTCQB:AQSZF)`11`0.92`4`1613073306.0`'
b'Anybody buying TRTC on today\xe2\x80\x99s dip?`0`0.38`11`1613072932.0`'
b'$WAVE - Waverly Pharma Inc. - 2 Cancer-Meds with upcoming approval for US and EU market. \xf0\x9f\x92\xa0 \xf0\x9f\x91\x90`0`0.36`13`1613072794.0`'
b'DSS Scalping Is Fun`0`0.31`7`1613072676.0`'
b'Discussion on CBBT Market Cap`0`0.5`3`1613072589.0`'
b'What\xe2\x80\x99s the best way to reach 20k EOY with only $500 in your account?`3`0.55`38`1613072393.0`'
b'$RELI - how not to run a reverse split. What happened ?`5`0.86`11`1613072371.0`'
b'DD on a real penny stock: Spineway, french spinal implants manufacturer @ 0.0013 USD`56`0.82`29`1613072327.0`'
b'Worksport $wksp`0`0.5`4`1613072315.0`'
b'$TNXP DD as promised`112`0.95`46`1613072231.0`'
b'DD on Spineway. Huge Potential!`56`0.83`30`1613071822.0`'
b'Researching marijuana stocks led me to invest in Planet 13 (PLNHF / PLTH), input appreciated`5`0.69`9`1613071735.0`'
b'$WARM - Green Tech / EV company with a long history - Letter to Shareholders yesterday 2/10. Currently at .03 and has been rising`12`0.93`9`1613071718.0`'
b'$ADTX Blowing Up, No News`3`0.67`13`1613071156.0`'
b'REAL TALK this is not a normal market, institutional and retail investors are currently in a speculative frenzy that\xe2\x80\x99s asking to be slapped down hard at some point in the near future with a whole market correction, collect profits when and where you can`15`0.61`28`1613071019.0`'
b'Plan for Now?`6`0.75`38`1613070531.0`'
b'Legit or scam?`3`1.0`9`1613070378.0`'
b"PSA: If you don't know what a 10Q/10K is and have no willingness to learn, YOU are the problem.`162`0.83`30`1613070350.0`"
b'Anyone have their avg price raised for one reason?`7`1.0`7`1613070318.0`'
b'Another noob question - trying to buy a market order of a stock that is $0.77. It will let me buy as a limit order but I don\xe2\x80\x99t quite understand why? The lowest limit order I could buy it as is $1.`3`0.71`11`1613070268.0`'
b'Data Storage company MERGER news today. $DTST`11`0.92`10`1613070217.0`'
b'Strategic Elements (SORHF). It\xe2\x80\x99s a venture capitalist company in Australia investing in self charging ink cell batteries. Apparently it\xe2\x80\x99s available to trade on TD, but when I try to buy it says security not found. Is this only on Australian markets?`0`0.5`2`1613070030.0`'
b"It's not Saturday but I'm... Displaced`0`0.5`20`1613069756.0`"
b'ECEZ on 2B Volume`14`0.85`20`1613069738.0`'
b'Zenabis Global, the unspoiled weed stock for all us late bloomers!`27`0.89`19`1613069708.0`'
b'NSAV buys niche crypto website`3`1.0`9`1613069667.0`'