-
Notifications
You must be signed in to change notification settings - Fork 0
/
RileyColeman.json
1694 lines (1694 loc) · 56.1 KB
/
RileyColeman.json
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
[
{
"title": "My Incredibly Easy 1 Minute Scalping Strategy (Full Course)",
"url": "https://www.youtube.com/watch?v=bRJdMCLZ3kI",
"publish_date": "2024-10-12T13:00:42Z",
"length_minutes": "24m 5s"
},
{
"title": "Support & Resistance Didn’t work Till I Discovered This SECRET",
"url": "https://www.youtube.com/watch?v=5iftn9nI8KY",
"publish_date": "2024-09-15T14:07:00Z",
"length_minutes": "21m 57s"
},
{
"title": "The ONLY 3 Reversal Patterns You Will Ever Need...",
"url": "https://www.youtube.com/watch?v=4he7dQsu8Q4",
"publish_date": "2024-08-31T14:00:04Z",
"length_minutes": "12m 57s"
},
{
"title": "I Found The Easiest Scalping Strategy - $250/day",
"url": "https://www.youtube.com/watch?v=sjBsuRi1XLw",
"publish_date": "2024-08-17T14:00:53Z",
"length_minutes": "78m 50s"
},
{
"title": "My Incredibly Easy Scalping Strategy To Make $250/Day In 30 Minutes",
"url": "https://www.youtube.com/watch?v=1FVfZ4BUD8I",
"publish_date": "2024-08-03T14:00:01Z",
"length_minutes": "13m 39s"
},
{
"title": "After 5 Years of Trading, This Strategy Is The ONE",
"url": "https://www.youtube.com/watch?v=XduRculXRsY",
"publish_date": "2024-07-06T20:00:14Z",
"length_minutes": "16m 33s"
},
{
"title": "Make Easy Money Before Work Everyday ($250/day)",
"url": "https://www.youtube.com/watch?v=SzKNHQZSUoo",
"publish_date": "2024-06-29T14:15:02Z",
"length_minutes": "22m 54s"
},
{
"title": "Best way to approach trading",
"url": "https://www.youtube.com/watch?v=FKwsCQlIIfI",
"publish_date": "2024-06-26T14:06:01Z",
"length_minutes": "41s"
},
{
"title": "Most Common Beginner Trading Mistake",
"url": "https://www.youtube.com/watch?v=fiZ6FnNHml8",
"publish_date": "2024-06-22T14:16:06Z",
"length_minutes": "59s"
},
{
"title": "Scalping was Hard, until I Found this SECRET",
"url": "https://www.youtube.com/watch?v=Re3hnCfpFh8",
"publish_date": "2024-06-22T14:00:23Z",
"length_minutes": "23m 1s"
},
{
"title": "Making $1,660 Scalping on a 5 minute chart.",
"url": "https://www.youtube.com/watch?v=ZxKQaoEAuPg",
"publish_date": "2024-06-20T14:15:08Z",
"length_minutes": "59s"
},
{
"title": "How to Profitably Manage Trades",
"url": "https://www.youtube.com/watch?v=k33aFsBAOcE",
"publish_date": "2024-06-18T14:17:12Z",
"length_minutes": "56s"
},
{
"title": "3 ways to make money trading",
"url": "https://www.youtube.com/watch?v=EAGaSM7GbaQ",
"publish_date": "2024-06-16T14:15:32Z",
"length_minutes": "59s"
},
{
"title": "My Honest Advice to Someone Who Wants to Succeed at Trading",
"url": "https://www.youtube.com/watch?v=_uAnLIROpzY",
"publish_date": "2024-06-15T14:15:02Z",
"length_minutes": "22m 35s"
},
{
"title": "Scalping was hard until I realized this",
"url": "https://www.youtube.com/watch?v=TOL-s3R8jY0",
"publish_date": "2024-06-15T14:10:30Z",
"length_minutes": "48s"
},
{
"title": "The Best Candlestick Pattern Out There",
"url": "https://www.youtube.com/watch?v=QQkjMwD2wLM",
"publish_date": "2024-06-14T14:15:10Z",
"length_minutes": "50s"
},
{
"title": "Learn to Follow Your Intuition",
"url": "https://www.youtube.com/watch?v=jkQ_aSP7sj8",
"publish_date": "2024-06-13T14:15:16Z",
"length_minutes": "53s"
},
{
"title": "65% Of Traders Lose Money After This Time",
"url": "https://www.youtube.com/watch?v=PomQrwtNuZ0",
"publish_date": "2024-06-13T02:15:07Z",
"length_minutes": "47s"
},
{
"title": "A Lot Of People That Trade Are Just Gambling...",
"url": "https://www.youtube.com/watch?v=zPrplmQ3_GM",
"publish_date": "2024-06-12T02:15:05Z",
"length_minutes": "51s"
},
{
"title": "3 Steps To Become Profitable Trading",
"url": "https://www.youtube.com/watch?v=ErGIUKV8dtY",
"publish_date": "2024-06-11T02:15:16Z",
"length_minutes": "1m 0s"
},
{
"title": "How I Consistently Make Money Scalping",
"url": "https://www.youtube.com/watch?v=sqfJfFZbLEY",
"publish_date": "2024-06-11T02:15:28Z",
"length_minutes": "53s"
},
{
"title": "Your Trades Are All Connected",
"url": "https://www.youtube.com/watch?v=3AcyMZfANRo",
"publish_date": "2024-06-09T14:15:04Z",
"length_minutes": "54s"
},
{
"title": "This Trap I Found Increased my Win rate 37%",
"url": "https://www.youtube.com/watch?v=GJDjS3c-H-k",
"publish_date": "2024-06-08T14:15:11Z",
"length_minutes": "1m 0s"
},
{
"title": "How My Coach Turned Me Into a Profitable Trader",
"url": "https://www.youtube.com/watch?v=7vKvKcxfUN8",
"publish_date": "2024-06-07T14:15:08Z",
"length_minutes": "50s"
},
{
"title": "Do This To Make Easy Money Trading ($825 Day)",
"url": "https://www.youtube.com/watch?v=5gm7gfibUxg",
"publish_date": "2024-06-06T14:15:16Z",
"length_minutes": "55s"
},
{
"title": "How Professional Traders Approach Trading",
"url": "https://www.youtube.com/watch?v=SlC1e3n1qek",
"publish_date": "2024-06-05T14:15:13Z",
"length_minutes": "41s"
},
{
"title": "This Changed How I Approached Trading",
"url": "https://www.youtube.com/watch?v=eVqlYss8SFc",
"publish_date": "2024-06-04T14:15:14Z",
"length_minutes": "59s"
},
{
"title": "Winning Doesn't Mean You Are a Good Trader",
"url": "https://www.youtube.com/watch?v=Xtxnz0Kk4IM",
"publish_date": "2024-06-03T14:15:10Z",
"length_minutes": "50s"
},
{
"title": "Losing Trading Mindset vs Winning Mindset",
"url": "https://www.youtube.com/watch?v=RWr46kzUY1Q",
"publish_date": "2024-06-02T14:15:16Z",
"length_minutes": "45s"
},
{
"title": "Making $850 With 1 Candlestick Pattern",
"url": "https://www.youtube.com/watch?v=vkOIpLiSvhg",
"publish_date": "2024-06-01T14:15:06Z",
"length_minutes": "44s"
},
{
"title": "The Trading Strategy I Wish I Knew As a Beginner",
"url": "https://www.youtube.com/watch?v=iN9xjJkNHz4",
"publish_date": "2024-06-01T14:00:38Z",
"length_minutes": "18m 40s"
},
{
"title": "Using SMC To Make $487 Scalping",
"url": "https://www.youtube.com/watch?v=d-UsGzwFHXI",
"publish_date": "2024-05-31T14:15:12Z",
"length_minutes": "1m 0s"
},
{
"title": "1 Candlestick Tells You Everything",
"url": "https://www.youtube.com/watch?v=DBLOB8LBaUU",
"publish_date": "2024-05-30T14:15:14Z",
"length_minutes": "59s"
},
{
"title": "How Professional Traders Think While Managing Trades",
"url": "https://www.youtube.com/watch?v=5tFGldS0_n0",
"publish_date": "2024-05-29T14:15:30Z",
"length_minutes": "53s"
},
{
"title": "The Biggest Trading Psychology Trick",
"url": "https://www.youtube.com/watch?v=4d9yMFBkcEs",
"publish_date": "2024-05-28T14:15:19Z",
"length_minutes": "59s"
},
{
"title": "Do This Every time You see A Double Bottom ($352 day)",
"url": "https://www.youtube.com/watch?v=kkCOdpixO2A",
"publish_date": "2024-05-27T14:15:10Z",
"length_minutes": "57s"
},
{
"title": "Here's Why You Can Become Successful At Trading",
"url": "https://www.youtube.com/watch?v=dv5fFuOxY2I",
"publish_date": "2024-05-26T14:15:17Z",
"length_minutes": "41s"
},
{
"title": "Morning Routines are Bullsh*t",
"url": "https://www.youtube.com/watch?v=N1VmFxh2p30",
"publish_date": "2024-05-25T14:15:12Z",
"length_minutes": "57s"
},
{
"title": "Indicators Are Bullsh*t, Do This Instead...",
"url": "https://www.youtube.com/watch?v=dHo3TK8BTec",
"publish_date": "2024-05-25T14:15:03Z",
"length_minutes": "20m 54s"
},
{
"title": "Failing Traders Focus On This Too Often",
"url": "https://www.youtube.com/watch?v=9xSfmiIomno",
"publish_date": "2024-05-24T14:15:16Z",
"length_minutes": "55s"
},
{
"title": "How To Not Be Greedy When Trading",
"url": "https://www.youtube.com/watch?v=9_7gX5ioa7E",
"publish_date": "2024-05-23T14:15:13Z",
"length_minutes": "1m 0s"
},
{
"title": "Secret Candlestick Reading Trick",
"url": "https://www.youtube.com/watch?v=YPpe3iiAzL8",
"publish_date": "2024-05-22T14:15:21Z",
"length_minutes": "58s"
},
{
"title": "My Timing Trick For Market Reversals",
"url": "https://www.youtube.com/watch?v=B7zZKokyTIE",
"publish_date": "2024-05-21T14:15:19Z",
"length_minutes": "42s"
},
{
"title": "I Made $900 While Vacuuming",
"url": "https://www.youtube.com/watch?v=fyeCTBzQRUc",
"publish_date": "2024-05-20T14:15:07Z",
"length_minutes": "47s"
},
{
"title": "Efficient Morning Scalping Routine",
"url": "https://www.youtube.com/watch?v=-EG2eOsrrnA",
"publish_date": "2024-05-19T14:15:08Z",
"length_minutes": "39s"
},
{
"title": "You Are Stuck In a Common Trading Trap",
"url": "https://www.youtube.com/watch?v=pXkTRLCki1Q",
"publish_date": "2024-05-18T14:15:57Z",
"length_minutes": "48s"
},
{
"title": "Trading 6 Hours A Day Loses You Money",
"url": "https://www.youtube.com/watch?v=Y47OQSWol54",
"publish_date": "2024-05-18T14:15:14Z",
"length_minutes": "51s"
},
{
"title": "If You Don't Use Breakeven Stops You Are Losing Money",
"url": "https://www.youtube.com/watch?v=mmFQHcYMuQw",
"publish_date": "2024-05-17T14:15:15Z",
"length_minutes": "45s"
},
{
"title": "Trading Futures Explained For Beginners",
"url": "https://www.youtube.com/watch?v=oMODSymCCgw",
"publish_date": "2024-05-16T14:15:05Z",
"length_minutes": "59s"
},
{
"title": "You Won't Make Money Trading Multiple Strategies",
"url": "https://www.youtube.com/watch?v=80Cbz5du-nE",
"publish_date": "2024-05-15T14:15:05Z",
"length_minutes": "1m 0s"
},
{
"title": "I Used This Scalping Checklist to Make $1,218",
"url": "https://www.youtube.com/watch?v=JlAewwh_nms",
"publish_date": "2024-05-14T14:15:13Z",
"length_minutes": "59s"
},
{
"title": "Use This Scalping Checklist I Made $550",
"url": "https://www.youtube.com/watch?v=wixKpRG34jI",
"publish_date": "2024-05-13T14:15:05Z",
"length_minutes": "56s"
},
{
"title": "The Only Day Trading Strategy I Would Use If I Could Start Over...",
"url": "https://www.youtube.com/watch?v=Ji2tYe_BNak",
"publish_date": "2024-05-12T15:00:24Z",
"length_minutes": "21m 3s"
},
{
"title": "Over Trading Loses You Money",
"url": "https://www.youtube.com/watch?v=YNw76969xmU",
"publish_date": "2024-05-12T14:16:02Z",
"length_minutes": "58s"
},
{
"title": "How I Made $1,200 Scalping In 1 day",
"url": "https://www.youtube.com/watch?v=SLPfsuVMAM4",
"publish_date": "2024-05-11T14:15:03Z",
"length_minutes": "33s"
},
{
"title": "Do This To Make Money In Choppy Markets ($900day)",
"url": "https://www.youtube.com/watch?v=si_lyPUu25I",
"publish_date": "2024-05-10T14:15:21Z",
"length_minutes": "1m 0s"
},
{
"title": "How To Read Candlesticks for Beginners",
"url": "https://www.youtube.com/watch?v=zWRfYwvAyPw",
"publish_date": "2024-05-09T14:15:09Z",
"length_minutes": "58s"
},
{
"title": "This 7AM Market Timing Trick Gives Massive Gains",
"url": "https://www.youtube.com/watch?v=6Ejr46gyKtk",
"publish_date": "2024-05-08T14:15:03Z",
"length_minutes": "42s"
},
{
"title": "Profit Targets Lose You Money",
"url": "https://www.youtube.com/watch?v=b6hc5QvZSoM",
"publish_date": "2024-05-07T14:15:38Z",
"length_minutes": "1m 0s"
},
{
"title": "Professional Traders are Always Scared",
"url": "https://www.youtube.com/watch?v=5AajyefbjJ4",
"publish_date": "2024-05-06T14:15:07Z",
"length_minutes": "47s"
},
{
"title": "How Domino Reversal Traps Work",
"url": "https://www.youtube.com/watch?v=3_LoAJs067U",
"publish_date": "2024-05-05T14:16:02Z",
"length_minutes": "56s"
},
{
"title": "Extreme Day Trading Youtuber",
"url": "https://www.youtube.com/watch?v=d-T79qyZdw4",
"publish_date": "2024-05-04T14:15:07Z",
"length_minutes": "58s"
},
{
"title": "Miss Placed Stop losses Lose You Money",
"url": "https://www.youtube.com/watch?v=iSlUeAXp1Pc",
"publish_date": "2024-05-03T14:08:08Z",
"length_minutes": "59s"
},
{
"title": "My 6AM Morning Scalping Routine",
"url": "https://www.youtube.com/watch?v=9NHDvtXd5AM",
"publish_date": "2024-05-02T14:15:39Z",
"length_minutes": "59s"
},
{
"title": "You Need to Follow This Trading Trick",
"url": "https://www.youtube.com/watch?v=fp5QtdXiVEw",
"publish_date": "2024-05-01T14:15:08Z",
"length_minutes": "1m 0s"
},
{
"title": "My 5 Step Scalping Checklist",
"url": "https://www.youtube.com/watch?v=y5FZd2WFY_Q",
"publish_date": "2024-04-30T14:15:01Z",
"length_minutes": "1m 0s"
},
{
"title": "How To Overcome FOMO",
"url": "https://www.youtube.com/watch?v=cCZA8i7Jer8",
"publish_date": "2024-04-29T14:15:06Z",
"length_minutes": "46s"
},
{
"title": "Change Your Trading Focus",
"url": "https://www.youtube.com/watch?v=In4uZN9hhgg",
"publish_date": "2024-04-28T14:14:06Z",
"length_minutes": "44s"
},
{
"title": "Trading Became SO Easy After I Found This Pattern",
"url": "https://www.youtube.com/watch?v=hLdgRKm24OA",
"publish_date": "2024-04-27T14:15:02Z",
"length_minutes": "14m 25s"
},
{
"title": "This Scalping Trick Made Me Profitable",
"url": "https://www.youtube.com/watch?v=aPaQMUTBKC8",
"publish_date": "2024-04-27T14:15:04Z",
"length_minutes": "1m 0s"
},
{
"title": "2 Quick Scalp Trades $700 day",
"url": "https://www.youtube.com/watch?v=4RaUtkinH-A",
"publish_date": "2024-04-26T14:15:07Z",
"length_minutes": "1m 0s"
},
{
"title": "How To Take Two Trades Off 1 Move",
"url": "https://www.youtube.com/watch?v=gbN6cXPSJRE",
"publish_date": "2024-04-25T14:15:07Z",
"length_minutes": "59s"
},
{
"title": "This Candlestick Trick Changed My Trading",
"url": "https://www.youtube.com/watch?v=bk1EOHfBCdw",
"publish_date": "2024-04-24T14:15:04Z",
"length_minutes": "45s"
},
{
"title": "Trading Everyday Will Loss You Money",
"url": "https://www.youtube.com/watch?v=gJ_3kTnxXbs",
"publish_date": "2024-04-23T14:15:00Z",
"length_minutes": "45s"
},
{
"title": "How I Make Money Even When I Lose",
"url": "https://www.youtube.com/watch?v=FjJEH8BE75U",
"publish_date": "2024-04-22T15:20:08Z",
"length_minutes": "1m 0s"
},
{
"title": "Ultimate Top Down Analysis Course For Ambitious Traders",
"url": "https://www.youtube.com/watch?v=OoidbpsojBA",
"publish_date": "2024-04-20T14:30:06Z",
"length_minutes": "20m 11s"
},
{
"title": "I Found The SIMPLEST Way To Become Profitable",
"url": "https://www.youtube.com/watch?v=DzxMJYMb5EE",
"publish_date": "2024-04-14T15:00:10Z",
"length_minutes": "28m 53s"
},
{
"title": "How To Know When The Market Will Reverse",
"url": "https://www.youtube.com/watch?v=eLrY9tHRMMA",
"publish_date": "2024-04-13T12:00:35Z",
"length_minutes": "59s"
},
{
"title": "The Math Secret To Profitable Trading",
"url": "https://www.youtube.com/watch?v=0dykXG8DqrA",
"publish_date": "2024-04-11T13:00:00Z",
"length_minutes": "48s"
},
{
"title": "+$1,710 Trendline Strategy",
"url": "https://www.youtube.com/watch?v=63DuniUhqNM",
"publish_date": "2024-04-09T13:45:00Z",
"length_minutes": "57s"
},
{
"title": "How To Manage Trades In Real Time",
"url": "https://www.youtube.com/watch?v=-SAmT9E9-vg",
"publish_date": "2024-04-06T13:00:00Z",
"length_minutes": "58s"
},
{
"title": "My Morning Trading Routine For a Quick $1,750 Day",
"url": "https://www.youtube.com/watch?v=vkO0_XHsbyk",
"publish_date": "2024-03-30T14:00:40Z",
"length_minutes": "9m 36s"
},
{
"title": "3 Tips To Become A Profitable Scalper",
"url": "https://www.youtube.com/watch?v=NKFYhb5-wXg",
"publish_date": "2024-03-30T13:15:02Z",
"length_minutes": "59s"
},
{
"title": "Scalping Risk Reward Trick For Easy Profits",
"url": "https://www.youtube.com/watch?v=ckexx4zX90Q",
"publish_date": "2024-03-28T13:15:02Z",
"length_minutes": "58s"
},
{
"title": "This Made Me Stop Losing At Trading",
"url": "https://www.youtube.com/watch?v=e3pI6iZLQFU",
"publish_date": "2024-03-26T13:15:02Z",
"length_minutes": "35s"
},
{
"title": "The Scalping Strategy I Wish I Knew as a Beginner",
"url": "https://www.youtube.com/watch?v=KcTvUXZOd2c",
"publish_date": "2024-03-23T14:00:19Z",
"length_minutes": "13m 35s"
},
{
"title": "Advanced Trading Entry Trick",
"url": "https://www.youtube.com/watch?v=8c1yE2iMMP8",
"publish_date": "2024-03-23T13:15:00Z",
"length_minutes": "38s"
},
{
"title": "+$2,860 in 1 Trade!",
"url": "https://www.youtube.com/watch?v=FfPrxIrCxEA",
"publish_date": "2024-03-21T13:00:12Z",
"length_minutes": "1m 1s"
},
{
"title": "Breakeven Trading Trick For Scalping",
"url": "https://www.youtube.com/watch?v=kAjVWQwB7oo",
"publish_date": "2024-03-19T13:15:05Z",
"length_minutes": "58s"
},
{
"title": "How I Make Money Trading, Even I Lose",
"url": "https://www.youtube.com/watch?v=htaS4sthZbk",
"publish_date": "2024-03-16T13:30:31Z",
"length_minutes": "9m 24s"
},
{
"title": "The Game Changing Trading Pattern Of 2024",
"url": "https://www.youtube.com/watch?v=1VWej97k8Cw",
"publish_date": "2024-03-16T13:15:00Z",
"length_minutes": "52s"
},
{
"title": "Wrong Trading Size Loses You Money",
"url": "https://www.youtube.com/watch?v=fHjFNy6Ccmg",
"publish_date": "2024-03-13T13:15:01Z",
"length_minutes": "49s"
},
{
"title": "Making +$1,778 Scalping Before Work",
"url": "https://www.youtube.com/watch?v=m4dGVLefizU",
"publish_date": "2024-03-11T13:15:03Z",
"length_minutes": "56s"
},
{
"title": "The Simplest Trade Entry Strategy",
"url": "https://www.youtube.com/watch?v=dcPOrqTkPZM",
"publish_date": "2024-03-09T15:00:28Z",
"length_minutes": "53s"
},
{
"title": "How To Grow a SMALL Trading Account FAST in 2024 (My 3 Step Plan)",
"url": "https://www.youtube.com/watch?v=-I7Mg9qBv4I",
"publish_date": "2024-03-09T13:15:00Z",
"length_minutes": "25m 6s"
},
{
"title": "Best 1m Scalping Strategy #trading #scalping",
"url": "https://www.youtube.com/watch?v=YcleEJKGGXs",
"publish_date": "2024-03-06T14:15:05Z",
"length_minutes": "1m 0s"
},
{
"title": "Buy or Sell? #Scalping",
"url": "https://www.youtube.com/watch?v=pMQGikKKOcU",
"publish_date": "2024-03-04T15:15:03Z",
"length_minutes": "59s"
},
{
"title": "Trading Reversals Was Hard Until, I Understood These Patterns",
"url": "https://www.youtube.com/watch?v=vNT3rY0HSXU",
"publish_date": "2024-03-02T13:30:28Z",
"length_minutes": "19m 56s"
},
{
"title": "Strick Profit Targets Lose You Money…",
"url": "https://www.youtube.com/watch?v=b7E_JZlyqcI",
"publish_date": "2024-03-02T13:00:28Z",
"length_minutes": "59s"
},
{
"title": "Day Trading Was Hard, Until I Discovered This Timing Trick",
"url": "https://www.youtube.com/watch?v=zQd9uCM2xAM",
"publish_date": "2024-02-28T22:00:27Z",
"length_minutes": "11m 2s"
},
{
"title": "My Trading Management Trick",
"url": "https://www.youtube.com/watch?v=yQsRTZvTunA",
"publish_date": "2024-02-28T13:15:05Z",
"length_minutes": "58s"
},
{
"title": "15 Scalping Rules I've Learned From 7 Years of Trading",
"url": "https://www.youtube.com/watch?v=Eq_oo3BwLdc",
"publish_date": "2024-02-24T15:00:20Z",
"length_minutes": "16m 18s"
},
{
"title": "Buy or Sell? #scalping",
"url": "https://www.youtube.com/watch?v=Gl6zZQpGF6U",
"publish_date": "2024-02-24T15:00:15Z",
"length_minutes": "58s"
},
{
"title": "The Only Trading Strategy Every Beginners Needs",
"url": "https://www.youtube.com/watch?v=j49jKyoJZDw",
"publish_date": "2024-02-20T19:30:07Z",
"length_minutes": "6m 32s"
},
{
"title": "The Easiest 5min Scalping Strategy",
"url": "https://www.youtube.com/watch?v=KdwKzIGyPzE",
"publish_date": "2024-02-17T15:00:16Z",
"length_minutes": "59s"
},
{
"title": "How I Made $770 Scalping Before Work",
"url": "https://www.youtube.com/watch?v=BvKiUeavdss",
"publish_date": "2024-02-14T18:03:47Z",
"length_minutes": "7m 43s"
},
{
"title": "Buy or Sell? #scalping",
"url": "https://www.youtube.com/watch?v=3g_WZetvT4c",
"publish_date": "2024-02-14T14:45:00Z",
"length_minutes": "59s"
},
{
"title": "Do This Before Work Everyday to Make Easy Money ($250/Day)",
"url": "https://www.youtube.com/watch?v=nnHmyAeY104",
"publish_date": "2024-02-10T15:00:43Z",
"length_minutes": "13m 21s"
},
{
"title": "This Scalping Strategy Will Make YOU profitable",
"url": "https://www.youtube.com/watch?v=7ObH-nzL8Jo",
"publish_date": "2024-02-10T15:00:05Z",
"length_minutes": "59s"
},
{
"title": "+$1,660 Before Most People Are AWAKE",
"url": "https://www.youtube.com/watch?v=gp_Z7VhaXPQ",
"publish_date": "2024-02-07T15:15:02Z",
"length_minutes": "59s"
},
{
"title": "Would You Buy or Sell?",
"url": "https://www.youtube.com/watch?v=s5_ekMVJPHo",
"publish_date": "2024-02-05T15:30:11Z",
"length_minutes": "58s"
},
{
"title": "Supply and Demand Didn’t Work, Until I Discovered This SECRET",
"url": "https://www.youtube.com/watch?v=FdHa2Tb7ttQ",
"publish_date": "2024-02-03T16:00:08Z",
"length_minutes": "16m 49s"
},
{
"title": "The Biggest Money Losing Mistake Traders Make",
"url": "https://www.youtube.com/watch?v=e9olGyvwMEE",
"publish_date": "2024-01-29T14:45:03Z",
"length_minutes": "48s"
},
{
"title": "You'll NEVER Look at Candlesticks The Same Way Again",
"url": "https://www.youtube.com/watch?v=7TRKQZulb9c",
"publish_date": "2024-01-27T15:30:02Z",
"length_minutes": "38s"
},
{
"title": "Master Class: Learn Day Trading in 2 Hours (Beginner to Advanced)",
"url": "https://www.youtube.com/watch?v=bn8U7lBPkyU",
"publish_date": "2024-01-27T15:15:03Z",
"length_minutes": "107m 9s"
},
{
"title": "Trick to Read Micro Trends For Max Profits",
"url": "https://www.youtube.com/watch?v=LAtHHEX-U3s",
"publish_date": "2024-01-23T15:15:01Z",
"length_minutes": "52s"
},
{
"title": "Most Beginning Traders Make This Mistake....",
"url": "https://www.youtube.com/watch?v=bn_HmnnCxIg",
"publish_date": "2024-01-20T14:45:01Z",
"length_minutes": "26s"
},
{
"title": "My Trick to Picking Market tops and Bottoms",
"url": "https://www.youtube.com/watch?v=s2_c1UFqc4M",
"publish_date": "2024-01-16T15:15:03Z",
"length_minutes": "58s"
},
{
"title": "Calculating Risk for Futures Trading For Beginners",
"url": "https://www.youtube.com/watch?v=JLD9dvs57Qc",
"publish_date": "2024-01-13T15:45:01Z",
"length_minutes": "58s"
},
{
"title": "The Only Strategy You Need To Make $10,000/Month (2024 Full Guide)",
"url": "https://www.youtube.com/watch?v=KQnx-pH2YhY",
"publish_date": "2024-01-13T14:45:00Z",
"length_minutes": "14m 34s"
},
{
"title": "Revealing My SIMPLE 2024 Scalping Strategy (with results)",
"url": "https://www.youtube.com/watch?v=nDM7iuybylg",
"publish_date": "2024-01-06T14:45:03Z",
"length_minutes": "35m 12s"
},
{
"title": "This Trade Happens Every Day at 9:00 AM EST",
"url": "https://www.youtube.com/watch?v=rp7RizWfBkM",
"publish_date": "2024-01-05T14:00:40Z",
"length_minutes": "42s"
},
{
"title": "How To Profitably Use Patterns To Enter",
"url": "https://www.youtube.com/watch?v=Etz55S_l4eU",
"publish_date": "2024-01-01T14:00:07Z",
"length_minutes": "44s"
},
{
"title": "Trading was Hard until, I Understood These 6 CONCEPTS",
"url": "https://www.youtube.com/watch?v=1YfzXBA1Zqg",
"publish_date": "2023-12-30T14:30:02Z",
"length_minutes": "15m 53s"
},
{
"title": "My 5 Step Scalping Entry Checklist",
"url": "https://www.youtube.com/watch?v=cLnC-n4fTMg",
"publish_date": "2023-12-28T14:00:24Z",
"length_minutes": "59s"
},
{
"title": "Are You Over Managing Your Trades?",
"url": "https://www.youtube.com/watch?v=lHaCsD-J1Pg",
"publish_date": "2023-12-26T14:00:32Z",
"length_minutes": "58s"
},
{
"title": "The Simplest Day Trading Strategy",
"url": "https://www.youtube.com/watch?v=Kk9gXu9Fmas",
"publish_date": "2023-12-21T14:00:19Z",
"length_minutes": "33s"
},
{
"title": "My Trick To Spotting Trading Reversals",
"url": "https://www.youtube.com/watch?v=EcrHpxIrF24",
"publish_date": "2023-12-17T14:00:14Z",
"length_minutes": "42s"
},
{
"title": "How To Effectively Use Profit Targets",
"url": "https://www.youtube.com/watch?v=icuPh1wYX3o",
"publish_date": "2023-12-17T14:00:24Z",
"length_minutes": "47s"
},
{
"title": "Complete Ninjatrader 8 Tutorial For Beginners Step by Step 2024",
"url": "https://www.youtube.com/watch?v=iz_pFzhNEkA",
"publish_date": "2023-12-16T15:00:29Z",
"length_minutes": "26m 13s"
},
{
"title": "Trading Management Trick For Max Profits",
"url": "https://www.youtube.com/watch?v=BWdgWXfFQIg",
"publish_date": "2023-12-15T14:00:07Z",
"length_minutes": "53s"
},
{
"title": "+$9,445 Scalping in 30 days",
"url": "https://www.youtube.com/watch?v=irjZg-lSp7M",
"publish_date": "2023-12-13T14:00:26Z",
"length_minutes": "48s"
},
{
"title": "Breakeven Trading Trick For Trading",
"url": "https://www.youtube.com/watch?v=FIwFbVTILBU",
"publish_date": "2023-12-12T14:00:17Z",
"length_minutes": "45s"
},
{
"title": "Futures Are The Best Trading Asset",
"url": "https://www.youtube.com/watch?v=h3UM7M63dTc",
"publish_date": "2023-12-10T14:00:22Z",
"length_minutes": "59s"
},
{
"title": "The Market Structure Strategy That Will Make Me $100,000+ In 2024",
"url": "https://www.youtube.com/watch?v=_3Vc7EViaII",
"publish_date": "2023-12-09T14:00:32Z",
"length_minutes": "32m 58s"
},
{
"title": "Don't Let Greed Ruin Your Trading.",
"url": "https://www.youtube.com/watch?v=OxEFS7JAdms",
"publish_date": "2023-12-08T14:00:16Z",
"length_minutes": "1m 0s"
},
{
"title": "This Mistake Makes Most Traders Fail",
"url": "https://www.youtube.com/watch?v=nlponRaa8FI",
"publish_date": "2023-12-05T14:00:37Z",
"length_minutes": "53s"
},
{
"title": "Not All Wins In Trading Are Good",
"url": "https://www.youtube.com/watch?v=RWujWEKAjB0",
"publish_date": "2023-12-03T14:00:23Z",
"length_minutes": "50s"
},
{
"title": "How I Made $9,445 Scalping in 30 Days (With Proof)",
"url": "https://www.youtube.com/watch?v=MYwL_qoVc3E",
"publish_date": "2023-12-03T14:00:11Z",
"length_minutes": "40m 57s"
},
{
"title": "Losing Trader Vs Pro Trader",
"url": "https://www.youtube.com/watch?v=5TL3T8g6jpA",
"publish_date": "2023-12-01T14:00:04Z",
"length_minutes": "45s"
},
{
"title": "How To Buy The F&$#king Dipppppp 🤑🚀",
"url": "https://www.youtube.com/watch?v=Yy_8w4u0Km0",
"publish_date": "2023-11-28T14:00:30Z",
"length_minutes": "55s"
},
{
"title": "This Is Why Trading is So Hard",
"url": "https://www.youtube.com/watch?v=llYvJS5tmX8",
"publish_date": "2023-11-26T15:00:37Z",
"length_minutes": "45s"
},
{
"title": "The Domino Trading Effect",
"url": "https://www.youtube.com/watch?v=rDerljI6T3o",
"publish_date": "2023-11-24T16:00:38Z",
"length_minutes": "56s"
},
{
"title": "Do This Before Every Trading Day",
"url": "https://www.youtube.com/watch?v=1QocozhLt1w",
"publish_date": "2023-11-22T16:00:02Z",
"length_minutes": "59s"
},
{
"title": "My Trading Mentors #1 Focus",
"url": "https://www.youtube.com/watch?v=IySA-p1pt6Y",
"publish_date": "2023-11-19T15:00:12Z",
"length_minutes": "50s"
},
{
"title": "1 Simple Change That Can Make You a Profitable Trader INSTANTLY",
"url": "https://www.youtube.com/watch?v=onipN5BT6nY",
"publish_date": "2023-11-18T14:00:28Z",
"length_minutes": "13m 9s"
},
{
"title": "The Only Thing To Focus On In Trading",
"url": "https://www.youtube.com/watch?v=cBrmv53mLLE",
"publish_date": "2023-11-17T16:00:27Z",
"length_minutes": "56s"
},
{
"title": "Failing at Trading? Here's Why.",
"url": "https://www.youtube.com/watch?v=PJ_d8ZTU8jU",
"publish_date": "2023-11-15T15:00:27Z",
"length_minutes": "46s"
},
{
"title": "The Biggest Reason Traders Lose",
"url": "https://www.youtube.com/watch?v=iqcv3vLTiLA",
"publish_date": "2023-11-12T15:00:37Z",
"length_minutes": "54s"
},
{
"title": "The Rubber Band Effect In Trading",
"url": "https://www.youtube.com/watch?v=B0_jElUFjE8",
"publish_date": "2023-11-11T14:30:05Z",
"length_minutes": "42s"
},
{
"title": "Do This Every Trade To Make Easy Money ($257/day)",
"url": "https://www.youtube.com/watch?v=byLvijyDGIc",
"publish_date": "2023-11-11T14:00:33Z",
"length_minutes": "16m 34s"
},
{
"title": "Everyday After This Time Most Traders Lose Money",
"url": "https://www.youtube.com/watch?v=7QX_zDS2kgo",
"publish_date": "2023-11-10T15:15:00Z",
"length_minutes": "48s"
},
{
"title": "Work On This Every Day You Trade",
"url": "https://www.youtube.com/watch?v=8EpHyzaiwfA",
"publish_date": "2023-11-04T14:00:06Z",
"length_minutes": "47s"
},
{
"title": "Smartest Route To $10,000/Month Trading In 2024 (The Right Way)",
"url": "https://www.youtube.com/watch?v=7PKab8U2N6s",
"publish_date": "2023-11-04T14:00:10Z",
"length_minutes": "17m 38s"
},
{
"title": "My Trading Strategy To Maximize Daily Profits",
"url": "https://www.youtube.com/watch?v=sZo3LHaTtXA",
"publish_date": "2023-11-03T15:00:57Z",
"length_minutes": "1m 0s"
},
{
"title": "The Mindset Of Millionaire Traders",
"url": "https://www.youtube.com/watch?v=a-rF3xLgZKc",
"publish_date": "2023-11-02T15:00:01Z",
"length_minutes": "41s"
},
{
"title": "My Secret Trading Routine",
"url": "https://www.youtube.com/watch?v=7yiIJ4j_q24",
"publish_date": "2023-11-01T15:00:10Z",
"length_minutes": "58s"
},
{
"title": "Once I Realized This My Trading Changed Forever",
"url": "https://www.youtube.com/watch?v=yiNrn2kh6SA",
"publish_date": "2023-10-29T15:00:48Z",
"length_minutes": "59s"
},
{
"title": "The Most Successful Traders Master This Skill",
"url": "https://www.youtube.com/watch?v=37t-vwRMMJg",
"publish_date": "2023-10-27T15:00:05Z",
"length_minutes": "59s"
},
{
"title": "The Realistic Life of a Day Trader",
"url": "https://www.youtube.com/watch?v=joyBo7Hvdwc",
"publish_date": "2023-10-25T15:00:43Z",
"length_minutes": "58s"
},
{
"title": "How Millionaire Traders Treat Trading",
"url": "https://www.youtube.com/watch?v=auj4ztwsYQQ",
"publish_date": "2023-10-22T15:00:02Z",
"length_minutes": "41s"
},
{
"title": "How to Grow $1000 to $100,000 Day Trading in 2024 | 100x Strategy",
"url": "https://www.youtube.com/watch?v=54VkJAXwomY",
"publish_date": "2023-10-21T14:30:02Z",
"length_minutes": "11m 56s"
},
{
"title": "How I Stay Productive 97% of Every Day",
"url": "https://www.youtube.com/watch?v=MsawdODWlWs",
"publish_date": "2023-10-20T15:00:16Z",
"length_minutes": "39s"
},
{
"title": "The Reality Of A Day Trader",
"url": "https://www.youtube.com/watch?v=uhhUW67zlPs",
"publish_date": "2023-10-18T15:00:48Z",
"length_minutes": "51s"
},
{
"title": "How To Stop Failing At Trading",
"url": "https://www.youtube.com/watch?v=ttJv95L7zd0",
"publish_date": "2023-10-15T15:00:44Z",
"length_minutes": "1m 0s"
},
{
"title": "Do This Every Morning To Make Easy Money ($250/day)",
"url": "https://www.youtube.com/watch?v=YaiLhrUfexY",
"publish_date": "2023-10-14T15:00:21Z",
"length_minutes": "10m 36s"
},
{
"title": "This Candlestick Trick Will Change Your Trading",
"url": "https://www.youtube.com/watch?v=Nin2DoDQKPY",