-
Notifications
You must be signed in to change notification settings - Fork 0
/
JeaFx.json
1352 lines (1352 loc) · 46.3 KB
/
JeaFx.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": "Maximise Your Profits with this TAKE PROFIT Strategy",
"url": "https://www.youtube.com/watch?v=SQcClV0wY0k",
"publish_date": "2024-10-11T07:00:30Z",
"length_minutes": "22m 25s"
},
{
"title": "How to trade EVERY timeframe (Markets are all the same)",
"url": "https://www.youtube.com/watch?v=8DQL0VTkZmw",
"publish_date": "2024-10-08T13:48:14Z",
"length_minutes": "9m 19s"
},
{
"title": "Different Entry Types for Your Trades",
"url": "https://www.youtube.com/watch?v=AHl-t6VzdM0",
"publish_date": "2024-09-27T16:15:00Z",
"length_minutes": "1m 0s"
},
{
"title": "Master these 3 Concepts to be Profitable",
"url": "https://www.youtube.com/watch?v=J9XWNePz9OI",
"publish_date": "2024-09-26T14:15:02Z",
"length_minutes": "40s"
},
{
"title": "Understand THIS to become a 'Dynamic' Forex Trader...",
"url": "https://www.youtube.com/watch?v=jodhlbIulIE",
"publish_date": "2024-09-25T10:17:01Z",
"length_minutes": "10m 10s"
},
{
"title": "Risk Entries vs Confirmation Entries",
"url": "https://www.youtube.com/watch?v=7fu9ws9I9HI",
"publish_date": "2024-09-25T08:00:10Z",
"length_minutes": "58s"
},
{
"title": "Catching London Session Volume",
"url": "https://www.youtube.com/watch?v=GA9UOlOK0R0",
"publish_date": "2024-09-24T15:00:12Z",
"length_minutes": "40s"
},
{
"title": "Simple and Profitable Forex Trading Strategy for EURUSD",
"url": "https://www.youtube.com/watch?v=bcLebr6jr6A",
"publish_date": "2024-09-23T08:45:01Z",
"length_minutes": "49s"
},
{
"title": "Mastering Trading Sessions",
"url": "https://www.youtube.com/watch?v=nLLLz0mAdQI",
"publish_date": "2024-09-22T13:00:52Z",
"length_minutes": "51s"
},
{
"title": "The Ultimate Supply & Demand Trading Course (Become a Pro)",
"url": "https://www.youtube.com/watch?v=91-eWDvL-No",
"publish_date": "2024-09-17T12:13:41Z",
"length_minutes": "24m 38s"
},
{
"title": "Fibonacci’s Golden Zone 📈",
"url": "https://www.youtube.com/watch?v=VCYiK5IaW64",
"publish_date": "2024-09-14T12:45:01Z",
"length_minutes": "54s"
},
{
"title": "Equal Low Liquidity Entry Model 💷",
"url": "https://www.youtube.com/watch?v=Kis-ASuFOfA",
"publish_date": "2024-09-13T09:45:01Z",
"length_minutes": "35s"
},
{
"title": "Master These 3 Concepts to Trade Profitably",
"url": "https://www.youtube.com/watch?v=JDJnO2dVRmg",
"publish_date": "2024-09-13T08:30:06Z",
"length_minutes": "23m 44s"
},
{
"title": "New York Reversal Strategy",
"url": "https://www.youtube.com/watch?v=9jYItq_1jkM",
"publish_date": "2024-09-12T08:15:00Z",
"length_minutes": "34s"
},
{
"title": "Simplified Wyckoff Trading 💸",
"url": "https://www.youtube.com/watch?v=j5_enRP1yAY",
"publish_date": "2024-09-11T10:15:03Z",
"length_minutes": "53s"
},
{
"title": "Trading Is Gambling (but you can still win)",
"url": "https://www.youtube.com/watch?v=FO3UgBvT0ms",
"publish_date": "2024-09-10T18:57:33Z",
"length_minutes": "9m 2s"
},
{
"title": "Trading Sessions & Asia Range Liquidity 🚀",
"url": "https://www.youtube.com/watch?v=5RdnxkXgyJc",
"publish_date": "2024-09-10T15:00:06Z",
"length_minutes": "40s"
},
{
"title": "Continuation Trade Entry Model 📈",
"url": "https://www.youtube.com/watch?v=uOshNDfWNWM",
"publish_date": "2024-09-10T11:00:54Z",
"length_minutes": "44s"
},
{
"title": "Validating Structure Breaks 📈",
"url": "https://www.youtube.com/watch?v=h-X3WAoZGtA",
"publish_date": "2024-09-10T07:45:01Z",
"length_minutes": "43s"
},
{
"title": "Zone Identification & Inducement 💭",
"url": "https://www.youtube.com/watch?v=yP2SrQKUJh4",
"publish_date": "2024-09-09T10:30:31Z",
"length_minutes": "37s"
},
{
"title": "Premium vs Discount",
"url": "https://www.youtube.com/watch?v=qGvccX5mAbo",
"publish_date": "2024-09-08T12:45:05Z",
"length_minutes": "54s"
},
{
"title": "Master Trend Reversals...💹",
"url": "https://www.youtube.com/watch?v=AIbEa_6U4tM",
"publish_date": "2024-09-07T16:30:05Z",
"length_minutes": "45s"
},
{
"title": "Uncovering my Price Action Trading Strategy",
"url": "https://www.youtube.com/watch?v=APs-auvaFWA",
"publish_date": "2024-09-06T07:20:54Z",
"length_minutes": "10m 49s"
},
{
"title": "Wyckoff Made Simple...",
"url": "https://www.youtube.com/watch?v=OQ_TYEEYoRQ",
"publish_date": "2024-09-06T06:45:02Z",
"length_minutes": "56s"
},
{
"title": "Fractal Confirmation Trading 📈",
"url": "https://www.youtube.com/watch?v=VYNCDtFMPhw",
"publish_date": "2024-09-05T11:00:36Z",
"length_minutes": "50s"
},
{
"title": "Equal High Liquidity Entry Model 📈",
"url": "https://www.youtube.com/watch?v=ZRhF6PKaHoY",
"publish_date": "2024-09-04T09:30:15Z",
"length_minutes": "33s"
},
{
"title": "Equal High & Low Liquidity (will change your trading forever)",
"url": "https://www.youtube.com/watch?v=KnYg21yltd8",
"publish_date": "2024-09-03T11:55:26Z",
"length_minutes": "14m 4s"
},
{
"title": "Simple Continuation Trades 📉",
"url": "https://www.youtube.com/watch?v=HZ3CDzcN7QE",
"publish_date": "2024-09-03T11:45:00Z",
"length_minutes": "51s"
},
{
"title": "How To Trade Trend Liquidity 📈",
"url": "https://www.youtube.com/watch?v=PSgJcjlX3ek",
"publish_date": "2024-09-03T06:00:12Z",
"length_minutes": "54s"
},
{
"title": "How to get SNIPER Entries for your trades (Amplify $$$)",
"url": "https://www.youtube.com/watch?v=dFHLB0wIcuY",
"publish_date": "2024-08-30T12:00:34Z",
"length_minutes": "12m 2s"
},
{
"title": "This Day Trading Tip Will 10x Your Results (Top Down Analysis)",
"url": "https://www.youtube.com/watch?v=LYXtXp-L2dA",
"publish_date": "2024-08-27T13:22:37Z",
"length_minutes": "14m 47s"
},
{
"title": "FVG vs IMB - The Best Trading Strategy?!",
"url": "https://www.youtube.com/watch?v=Gtf13RaDD_o",
"publish_date": "2024-08-23T08:22:47Z",
"length_minutes": "15m 8s"
},
{
"title": "How to trade Fakeouts (avoid the trap)",
"url": "https://www.youtube.com/watch?v=hkyG6bxI93U",
"publish_date": "2024-08-20T08:51:00Z",
"length_minutes": "14m 55s"
},
{
"title": "This Trading Tip Will Make You $$$ (Inducement)",
"url": "https://www.youtube.com/watch?v=AIeBNqf8RBA",
"publish_date": "2024-08-14T09:37:14Z",
"length_minutes": "11m 38s"
},
{
"title": "Let your winners run! 📈💰#forex #smc #riskmanagement",
"url": "https://www.youtube.com/watch?v=uJvA1Hwn3eM",
"publish_date": "2024-07-29T14:29:49Z",
"length_minutes": "48s"
},
{
"title": "How to Trade Reversals (High Win Rates)",
"url": "https://www.youtube.com/watch?v=Z4Y301e_udQ",
"publish_date": "2024-07-24T15:23:41Z",
"length_minutes": "14m 7s"
},
{
"title": "The Only Day Trading Strategy You'll Ever Need (Beginner to Pro)",
"url": "https://www.youtube.com/watch?v=tCgPB9ROmDk",
"publish_date": "2024-07-17T11:57:48Z",
"length_minutes": "25m 10s"
},
{
"title": "Fibonacci for entries 📈💯 #fibonacci #forex",
"url": "https://www.youtube.com/watch?v=aYw7YRpo6UQ",
"publish_date": "2024-07-15T19:40:43Z",
"length_minutes": "55s"
},
{
"title": "Fibonacci Trading Course (Use this for perfect entries)",
"url": "https://www.youtube.com/watch?v=_tVMtC5TUoY",
"publish_date": "2024-07-15T09:02:45Z",
"length_minutes": "12m 49s"
},
{
"title": "Engulfing Candlestick Pattern 📈💭 #smctrading #trading #learntotrade #candlestick",
"url": "https://www.youtube.com/watch?v=CU3vgVqlez0",
"publish_date": "2024-07-11T11:33:14Z",
"length_minutes": "57s"
},
{
"title": "Buyers vs Sellers 📈📉 #forex #trading #smctrading",
"url": "https://www.youtube.com/watch?v=1ZG5VgmZrhU",
"publish_date": "2024-07-09T08:23:52Z",
"length_minutes": "55s"
},
{
"title": "Session Characteristics 💭 #forex #daytrading #smc",
"url": "https://www.youtube.com/watch?v=VdEY4Yn329k",
"publish_date": "2024-07-06T11:18:09Z",
"length_minutes": "56s"
},
{
"title": "My Simple Strategy 💭✍🏻 #trading #simplicity #smc #forex",
"url": "https://www.youtube.com/watch?v=7-Qujr7t-oY",
"publish_date": "2024-07-05T13:48:36Z",
"length_minutes": "49s"
},
{
"title": "Reading momentum through candlesticks 📈💭 #forex #smc #learntotrade",
"url": "https://www.youtube.com/watch?v=S6fq1xtctwc",
"publish_date": "2024-07-04T12:42:20Z",
"length_minutes": "48s"
},
{
"title": "Buyers vs Sellers 📈📉 #trading",
"url": "https://www.youtube.com/watch?v=ttzsFoGdmxo",
"publish_date": "2024-07-03T11:56:13Z",
"length_minutes": "47s"
},
{
"title": "Closures confirm reversals ✅ #candlestick #candlesticktrading #smctrading",
"url": "https://www.youtube.com/watch?v=_C6MVZoT3AQ",
"publish_date": "2024-07-02T15:40:34Z",
"length_minutes": "52s"
},
{
"title": "The Ultimate Candlestick Trading Course",
"url": "https://www.youtube.com/watch?v=ukbWRb4d5-s",
"publish_date": "2024-06-30T10:08:04Z",
"length_minutes": "33m 19s"
},
{
"title": "Reading Market Trends 📈 #forex #trendtrader #trend #marketstructure #structure",
"url": "https://www.youtube.com/watch?v=bKrQBDeAWBQ",
"publish_date": "2024-06-30T08:19:11Z",
"length_minutes": "44s"
},
{
"title": "Validating Trading Zones ✍🏻 #forex #supplyanddemand #smctrading #learntotrade",
"url": "https://www.youtube.com/watch?v=uEDqwdIEczY",
"publish_date": "2024-06-29T10:07:19Z",
"length_minutes": "48s"
},
{
"title": "How to make $200/day trading forex (as a beginner)",
"url": "https://www.youtube.com/watch?v=pSCNDsmE6CY",
"publish_date": "2024-06-28T08:44:57Z",
"length_minutes": "13m 43s"
},
{
"title": "Liquidity at Support & Resistance 💡 #forex #trading #smc",
"url": "https://www.youtube.com/watch?v=etDtLn3mOwk",
"publish_date": "2024-06-26T20:07:17Z",
"length_minutes": "54s"
},
{
"title": "Trend Liquidity 📈 #liquiditytrading #liquidity #priceaction #smc",
"url": "https://www.youtube.com/watch?v=c_5pCgQSNAA",
"publish_date": "2024-06-25T18:24:48Z",
"length_minutes": "46s"
},
{
"title": "Using Fibonacci to Validate Buys & Sells 📈 #forex #fibonacci #priceaction",
"url": "https://www.youtube.com/watch?v=bbfTC04H_Lc",
"publish_date": "2024-06-24T09:52:02Z",
"length_minutes": "1m 0s"
},
{
"title": "What is Imbalance?! 📈 #trading #priceactiontrading #forex",
"url": "https://www.youtube.com/watch?v=DwB2Gf-H5LQ",
"publish_date": "2024-06-23T17:23:54Z",
"length_minutes": "42s"
},
{
"title": "Demand Zones 📈 #forex #trading #smc #demandzone",
"url": "https://www.youtube.com/watch?v=sKn2-E2NXAY",
"publish_date": "2024-06-22T10:10:42Z",
"length_minutes": "37s"
},
{
"title": "Liquidity at highs & lows 📈 #forex #liquiditytrading #marketstructure #priceactiontrading",
"url": "https://www.youtube.com/watch?v=OV5dkxGi2cc",
"publish_date": "2024-06-21T18:56:31Z",
"length_minutes": "1m 0s"
},
{
"title": "Confirmation Entries ✅ #trading #forex #marketstructure",
"url": "https://www.youtube.com/watch?v=F3evSEYkv18",
"publish_date": "2024-06-15T15:20:23Z",
"length_minutes": "58s"
},
{
"title": "Market Momentum Masterclass (see the market clearly)",
"url": "https://www.youtube.com/watch?v=_gvbOxMgt0Y",
"publish_date": "2024-06-07T18:00:17Z",
"length_minutes": "24m 45s"
},
{
"title": "Trend Reversal Trades ✅ #trading #forex #smc",
"url": "https://www.youtube.com/watch?v=Qrd0WCVfklY",
"publish_date": "2024-06-06T12:16:29Z",
"length_minutes": "47s"
},
{
"title": "Swing High Liquidity ✅ #forex #trading #priceactiontrading",
"url": "https://www.youtube.com/watch?v=QHzQXa549i4",
"publish_date": "2024-06-04T11:40:54Z",
"length_minutes": "1m 0s"
},
{
"title": "Simple 3-Step Liquidity Trading Strategy #trading #liquiditytrading #smc",
"url": "https://www.youtube.com/watch?v=O-J8swT613Q",
"publish_date": "2024-05-31T17:53:25Z",
"length_minutes": "1m 0s"
},
{
"title": "Simple 3-Step LIQUIDITY Trading Strategy",
"url": "https://www.youtube.com/watch?v=FUC0iWyCI08",
"publish_date": "2024-05-30T16:08:16Z",
"length_minutes": "19m 25s"
},
{
"title": "Imbalance tells you everything",
"url": "https://www.youtube.com/watch?v=4J-kl3c4KlM",
"publish_date": "2024-05-17T09:09:20Z",
"length_minutes": "12m 43s"
},
{
"title": "5 Tips to Master Technical Analysis (STOP LOSING MONEY!)",
"url": "https://www.youtube.com/watch?v=0qDY1Kp1ID4",
"publish_date": "2024-05-10T15:36:57Z",
"length_minutes": "19m 46s"
},
{
"title": "Complete Guide to Market Structure (Mastery)",
"url": "https://www.youtube.com/watch?v=jWKT-P9pPdc",
"publish_date": "2024-04-30T15:55:14Z",
"length_minutes": "22m 20s"
},
{
"title": "How I Made $3k in 1 Hour Trading Liquidity",
"url": "https://www.youtube.com/watch?v=Q-jQGto-nic",
"publish_date": "2024-04-23T13:26:15Z",
"length_minutes": "18m 53s"
},
{
"title": "Support & Resistance is Holding You Back (Do This Instead)",
"url": "https://www.youtube.com/watch?v=xza3DxB56zA",
"publish_date": "2024-04-16T11:07:22Z",
"length_minutes": "23m 19s"
},
{
"title": "Time & Price in Forex",
"url": "https://www.youtube.com/watch?v=UbRUMHseK5I",
"publish_date": "2024-04-10T15:39:20Z",
"length_minutes": "18m 12s"
},
{
"title": "Liquidity Trading SIMPLIFIED (Step by Step Course)",
"url": "https://www.youtube.com/watch?v=jJKYeglSjHw",
"publish_date": "2024-04-07T15:21:56Z",
"length_minutes": "23m 6s"
},
{
"title": "Ultimate Top Down Analysis Strategy (Step by Step)",
"url": "https://www.youtube.com/watch?v=GKN-iVjJpyA",
"publish_date": "2024-04-02T15:49:39Z",
"length_minutes": "29m 49s"
},
{
"title": "Not every day is a trading day ❌ #forex #forextradingtips #learnforextrading #trading",
"url": "https://www.youtube.com/watch?v=bctM9FunF3c",
"publish_date": "2024-03-30T15:58:37Z",
"length_minutes": "38s"
},
{
"title": "Traits of Winning Traders",
"url": "https://www.youtube.com/watch?v=az_Z1Mb85EA",
"publish_date": "2024-03-29T10:43:16Z",
"length_minutes": "39s"
},
{
"title": "Make Money Trading With Candlestick Patterns (Full Course)",
"url": "https://www.youtube.com/watch?v=Xhhx6havGac",
"publish_date": "2024-03-28T16:41:02Z",
"length_minutes": "26m 59s"
},
{
"title": "Trading is a Numbers Game!",
"url": "https://www.youtube.com/watch?v=W8plG6a9Z1s",
"publish_date": "2024-03-25T12:09:51Z",
"length_minutes": "39s"
},
{
"title": "The market doesn't care about your opinion ❌",
"url": "https://www.youtube.com/watch?v=_dODC8JrG30",
"publish_date": "2024-03-24T17:29:21Z",
"length_minutes": "39s"
},
{
"title": "How I made $2200 day trading #forextradingtips #trading #forex",
"url": "https://www.youtube.com/watch?v=479T7208rjI",
"publish_date": "2024-03-22T18:26:48Z",
"length_minutes": "1m 0s"
},
{
"title": "Forex Trading for Beginners (Full Course)",
"url": "https://www.youtube.com/watch?v=0BowPSrbVc0",
"publish_date": "2024-03-22T11:43:14Z",
"length_minutes": "30m 15s"
},
{
"title": "Drawing Supply & Demand Zones",
"url": "https://www.youtube.com/watch?v=vJ4OXBHJP6E",
"publish_date": "2024-03-08T18:06:22Z",
"length_minutes": "56s"
},
{
"title": "The Simplified Guide to Supply & Demand Trading",
"url": "https://www.youtube.com/watch?v=1GzW1kcrYO8",
"publish_date": "2024-03-08T16:40:54Z",
"length_minutes": "8m 13s"
},
{
"title": "The '90 90 90' Rule in Trading...",
"url": "https://www.youtube.com/watch?v=hGgbD3GJaNk",
"publish_date": "2024-03-07T09:00:25Z",
"length_minutes": "40s"
},
{
"title": "$6,000 in one day trading forex",
"url": "https://www.youtube.com/watch?v=58se8TxzVbs",
"publish_date": "2024-03-05T17:16:13Z",
"length_minutes": "9m 1s"
},
{
"title": "Equal High Liquidity #forextradingtips",
"url": "https://www.youtube.com/watch?v=lX3oruR_hMI",
"publish_date": "2024-03-01T14:23:52Z",
"length_minutes": "58s"
},
{
"title": "Trying to get rich quick is keeping you broke",
"url": "https://www.youtube.com/watch?v=Lm6gw_xn-WM",
"publish_date": "2024-02-28T14:23:20Z",
"length_minutes": "7m 45s"
},
{
"title": "How To Make $300 Per Day Trading Forex (Step By Step)",
"url": "https://www.youtube.com/watch?v=fr-7-L3h5IE",
"publish_date": "2024-02-09T14:00:28Z",
"length_minutes": "8m 31s"
},
{
"title": "Validating Reversals in Forex",
"url": "https://www.youtube.com/watch?v=SAUMzURuP3A",
"publish_date": "2024-01-28T18:25:09Z",
"length_minutes": "39s"
},
{
"title": "Imbalances in Forex",
"url": "https://www.youtube.com/watch?v=uGryccOxuYg",
"publish_date": "2024-01-17T14:14:49Z",
"length_minutes": "59s"
},
{
"title": "Equal Lows #forex #forextradingeducation #trading #forextradingstrategies",
"url": "https://www.youtube.com/watch?v=tzD9yXRNQcI",
"publish_date": "2024-01-13T17:51:29Z",
"length_minutes": "51s"
},
{
"title": "Backtesting Gold with my Day Trading Strategy (SMC)",
"url": "https://www.youtube.com/watch?v=UGkR7_tq9ZA",
"publish_date": "2024-01-12T16:19:43Z",
"length_minutes": "14m 14s"
},
{
"title": "Supply Zones in Forex",
"url": "https://www.youtube.com/watch?v=mDjXbq97TzY",
"publish_date": "2024-01-11T12:08:07Z",
"length_minutes": "49s"
},
{
"title": "GBPUSD | 10 January 2024",
"url": "https://www.youtube.com/watch?v=MVk-0Lt_JWU",
"publish_date": "2024-01-10T13:47:12Z",
"length_minutes": "1m 0s"
},
{
"title": "The 5 Core Principles for Trading Success",
"url": "https://www.youtube.com/watch?v=UBtJ8GyA5dU",
"publish_date": "2023-12-28T15:00:08Z",
"length_minutes": "27m 8s"
},
{
"title": "You've Been Set Up To Fail... (The Truth about Forex)",
"url": "https://www.youtube.com/watch?v=01EaDwwbdn8",
"publish_date": "2023-12-25T15:00:10Z",
"length_minutes": "23m 57s"
},
{
"title": "The Truth",
"url": "https://www.youtube.com/watch?v=1SkREA6-GNo",
"publish_date": "2023-12-12T10:39:08Z",
"length_minutes": "25s"
},
{
"title": "How I made $3,394.53 in 2 hours trading forex (EURUSD)",
"url": "https://www.youtube.com/watch?v=Y8oRj0BVBw4",
"publish_date": "2023-12-09T08:09:58Z",
"length_minutes": "6m 36s"
},
{
"title": "From Beginner To Pro Trader: Lessons From My Trading Journey",
"url": "https://www.youtube.com/watch?v=b9HLCbWk5Js",
"publish_date": "2023-11-10T13:00:35Z",
"length_minutes": "8m 27s"
},
{
"title": "Master SUPPLY & DEMAND Trading (The Ultimate Guide)",
"url": "https://www.youtube.com/watch?v=7Ot9GK1iBLw",
"publish_date": "2023-11-03T13:42:48Z",
"length_minutes": "5m 37s"
},
{
"title": "Trading Liquidity ~ How It Works (& how to profit from it)",
"url": "https://www.youtube.com/watch?v=nwWn85GuiR8",
"publish_date": "2023-10-27T14:32:10Z",
"length_minutes": "6m 32s"
},
{
"title": "Which Order Block Should You Use?! (Supply & Demand Tips)",
"url": "https://www.youtube.com/watch?v=fwISomH5qNY",
"publish_date": "2023-10-20T16:46:03Z",
"length_minutes": "5m 36s"
},
{
"title": "Habits to Improve Your Trading",
"url": "https://www.youtube.com/watch?v=CWu1SkH7Ehc",
"publish_date": "2023-10-19T14:14:45Z",
"length_minutes": "49s"
},
{
"title": "The ONLY Market Structure Lesson You'll EVER Need (Step by Step)",
"url": "https://www.youtube.com/watch?v=LclxDYccla8",
"publish_date": "2023-10-13T11:51:55Z",
"length_minutes": "7m 32s"
},
{
"title": "Most traders ignore this, but they really shouldn’t!",
"url": "https://www.youtube.com/watch?v=ov2cq37YzHY",
"publish_date": "2023-09-29T11:12:47Z",
"length_minutes": "4m 47s"
},
{
"title": "Master Support & Resistance Trading Strategy (The EASY Way!)",
"url": "https://www.youtube.com/watch?v=vNzsmCyWV_g",
"publish_date": "2023-09-23T09:33:47Z",
"length_minutes": "6m 27s"
},
{
"title": "Do THIS to be a losing trader forever...",
"url": "https://www.youtube.com/watch?v=WGapPI-tUa4",
"publish_date": "2023-09-22T16:11:37Z",
"length_minutes": "3m 36s"
},
{
"title": "How To Pass Prop Firm Challenges EVERY TIME",
"url": "https://www.youtube.com/watch?v=9yk9S2q8jAg",
"publish_date": "2023-09-08T10:15:45Z",
"length_minutes": "7m 28s"
},
{
"title": "Forex Trading For Beginners (FULL COURSE)",
"url": "https://www.youtube.com/watch?v=wIyZcY6kNuo",
"publish_date": "2023-09-04T10:13:27Z",
"length_minutes": "31m 9s"
},
{
"title": "My Forex Funds FRAUD?!... What Does This Mean For Prop Trading?",
"url": "https://www.youtube.com/watch?v=-48DGL1DcD8",
"publish_date": "2023-09-01T23:38:13Z",
"length_minutes": "5m 48s"
},
{
"title": "BEST LIQUIDITY Trading Strategy",
"url": "https://www.youtube.com/watch?v=7teuvsTglnQ",
"publish_date": "2023-08-27T09:32:51Z",
"length_minutes": "12m 6s"
},
{
"title": "This 5 Minute Talk Will Change The Way You Trade...",
"url": "https://www.youtube.com/watch?v=Rj6IsKQWNGI",
"publish_date": "2023-08-22T07:57:17Z",
"length_minutes": "5m 55s"
},
{
"title": "Best Top Down Analysis Strategy - Price Action & Fundamental Analysis",
"url": "https://www.youtube.com/watch?v=csZXLLu0KzU",
"publish_date": "2023-08-17T15:51:04Z",
"length_minutes": "10m 1s"
},
{
"title": "Slow and Steady Wins the Trading Race",
"url": "https://www.youtube.com/watch?v=mv41f3zbffU",
"publish_date": "2023-08-15T06:59:33Z",
"length_minutes": "26s"
},
{
"title": "Eye-Opening Trading Psychology...",
"url": "https://www.youtube.com/watch?v=KtGD5oZdD_w",
"publish_date": "2023-08-12T08:00:52Z",
"length_minutes": "4m 12s"
},
{
"title": "Building a Rule-Based System",
"url": "https://www.youtube.com/watch?v=pNv2XBqP064",
"publish_date": "2023-08-09T13:06:44Z",
"length_minutes": "39s"
},
{
"title": "EURUSD...",
"url": "https://www.youtube.com/watch?v=G1acVlO6FUg",
"publish_date": "2023-08-08T12:11:52Z",
"length_minutes": "32s"
},
{
"title": "How I Made Over $10,000 in ONE FOREX TRADE",
"url": "https://www.youtube.com/watch?v=3nUiKqqtZqo",
"publish_date": "2023-07-22T14:56:06Z",
"length_minutes": "6m 42s"
},
{
"title": "The BEST Formula to Grow a Small Forex Account in 2023",
"url": "https://www.youtube.com/watch?v=RiEKhHF6tMw",
"publish_date": "2023-06-11T08:49:31Z",
"length_minutes": "5m 17s"
},
{
"title": "Stop Losing...Start Winning",
"url": "https://www.youtube.com/watch?v=iUYjbiScl3M",
"publish_date": "2023-06-01T14:51:02Z",
"length_minutes": "48s"
},
{
"title": "Every Trader Needs To Hear This...",
"url": "https://www.youtube.com/watch?v=lfYRXE7QLvY",
"publish_date": "2023-05-20T14:40:19Z",
"length_minutes": "8m 18s"
},
{
"title": "How I Made Over 10% in 2 Days Trading USDJPY",
"url": "https://www.youtube.com/watch?v=UjEC2uxVi1E",
"publish_date": "2023-05-17T16:15:54Z",
"length_minutes": "9m 35s"
},
{
"title": "Simple BREAKEVEN Strategy To Save You $$$ While Day Trading",
"url": "https://www.youtube.com/watch?v=Khs1hwkIOiM",
"publish_date": "2023-05-13T13:53:04Z",
"length_minutes": "6m 58s"
},
{
"title": "Trading SECRETS: How To Enter Like a Pro *2 Entry Models*",
"url": "https://www.youtube.com/watch?v=qRtXQ97V5vU",
"publish_date": "2023-05-10T07:20:19Z",
"length_minutes": "6m 46s"
},
{
"title": "Spend Your Time Wisely!",
"url": "https://www.youtube.com/watch?v=t1bWiyXvqik",
"publish_date": "2023-05-08T16:57:04Z",
"length_minutes": "39s"
},
{
"title": "It's NFP Day | Here's What To Know!",
"url": "https://www.youtube.com/watch?v=HC903L8J9Kc",
"publish_date": "2023-05-05T10:31:24Z",
"length_minutes": "55s"
},
{
"title": "USDJPY 7.5R Trade Breakdown (Liquidity Trading)",
"url": "https://www.youtube.com/watch?v=P-TwZUx8IOg",
"publish_date": "2023-05-04T07:06:42Z",
"length_minutes": "35s"
},
{
"title": "Market Structure Masterclass",
"url": "https://www.youtube.com/watch?v=BNVGhjxP4JY",
"publish_date": "2023-05-01T11:44:25Z",
"length_minutes": "8m 0s"
},
{
"title": "5 Traits of The Top 1% Trader",
"url": "https://www.youtube.com/watch?v=HELWiwENzQc",
"publish_date": "2023-04-22T10:45:48Z",
"length_minutes": "6m 22s"
},
{
"title": "How Long Does it Take to Trade Successfully?",
"url": "https://www.youtube.com/watch?v=C-_CFnTf9f8",
"publish_date": "2023-04-21T12:48:06Z",
"length_minutes": "1m 0s"
},
{
"title": "Turn FAILURE Into SUCCESS!",
"url": "https://www.youtube.com/watch?v=2XmbXqPQFbU",
"publish_date": "2023-04-18T13:20:25Z",
"length_minutes": "50s"
},
{
"title": "Ultimate Guide To BACKTESTING - How & Why You Should Do It!",
"url": "https://www.youtube.com/watch?v=sOa4PovtZ1c",
"publish_date": "2023-04-10T09:45:02Z",
"length_minutes": "11m 22s"
},
{
"title": "You DON'T Need to Trade EVERY DAY!",
"url": "https://www.youtube.com/watch?v=-Vzn2v5nsXs",
"publish_date": "2023-04-06T20:46:35Z",
"length_minutes": "47s"
},
{
"title": "Revealing My Day Trading Strategy That Made Me $3,000 in One Trade!",
"url": "https://www.youtube.com/watch?v=6D-lI1qe0OI",
"publish_date": "2023-04-01T13:13:16Z",
"length_minutes": "9m 55s"
},
{
"title": "Master Supply & Demand Trading (ULTIMATE In-Depth Guide)",
"url": "https://www.youtube.com/watch?v=z0ITdrl_DPE",
"publish_date": "2023-03-25T11:50:51Z",
"length_minutes": "12m 35s"
},
{
"title": "EURGBP Thoughts...",
"url": "https://www.youtube.com/watch?v=RGkoallgZEI",
"publish_date": "2023-03-23T22:20:16Z",
"length_minutes": "28s"
},
{
"title": "How I Made $5000 Trading NEWS (Fundamental Analysis Lesson)",
"url": "https://www.youtube.com/watch?v=No0jyJ3Wkxk",
"publish_date": "2023-03-18T12:48:58Z",
"length_minutes": "7m 21s"
},
{
"title": "LIQUIDITY INDUCEMENT MASTERCLASS | Forex Trading With 'Smart Money' Concepts",
"url": "https://www.youtube.com/watch?v=nudje7WT-Vs",
"publish_date": "2023-03-11T09:00:35Z",
"length_minutes": "7m 5s"
},
{
"title": "NFP Report! What Now?! (March 2023)",
"url": "https://www.youtube.com/watch?v=hz1_OPQhEUE",
"publish_date": "2023-03-10T15:57:20Z",
"length_minutes": "3m 15s"
},
{
"title": "USDCAD...My Thoughts",
"url": "https://www.youtube.com/watch?v=RBFJgGqVSFk",
"publish_date": "2023-03-09T12:44:52Z",
"length_minutes": "23s"
},
{
"title": "The ONLY RULE Rule You Need To Consistently Win Trades",
"url": "https://www.youtube.com/watch?v=1awFoASo6-Y",
"publish_date": "2023-03-04T12:35:47Z",
"length_minutes": "7m 9s"
},
{
"title": "How To Make $10k a Month Trading?!",
"url": "https://www.youtube.com/watch?v=LHBd9OsGwkE",
"publish_date": "2023-03-03T09:46:47Z",
"length_minutes": "48s"
},
{
"title": "The Reason You're a Losing Trader",
"url": "https://www.youtube.com/watch?v=pMfmzrNZDfg",
"publish_date": "2023-02-25T09:36:07Z",
"length_minutes": "5m 52s"
},
{
"title": "This Forex Chart Pattern Will Save You $$$!",
"url": "https://www.youtube.com/watch?v=e3ShkOuMVy8",
"publish_date": "2023-02-24T09:52:34Z",
"length_minutes": "52s"
},
{
"title": "This EASY Indicator Strategy Will Make You MILLIONS!",
"url": "https://www.youtube.com/watch?v=DkYRYEoIlVc",
"publish_date": "2023-02-18T14:01:37Z",
"length_minutes": "8m 20s"
},
{
"title": "The ONLY 5-Step SMC Strategy You Need In 2023 | (EASY Winning Trades)",
"url": "https://www.youtube.com/watch?v=35vRypydHSI",
"publish_date": "2023-02-11T12:50:00Z",
"length_minutes": "10m 14s"
},
{
"title": "Is THIS The BEST Prop Firm Right Now? (FT+ First Impressions)",
"url": "https://www.youtube.com/watch?v=UE8siK8aFGE",
"publish_date": "2023-02-02T14:28:59Z",
"length_minutes": "12m 13s"
},
{
"title": "MASTER Technical Analysis | Structure & Liquidity Trading (3 Trades Recap)",
"url": "https://www.youtube.com/watch?v=4jc5myA2lgw",
"publish_date": "2023-01-30T15:13:24Z",
"length_minutes": "10m 11s"
},
{
"title": "Improve Your Trading With Practice (How & Why)",
"url": "https://www.youtube.com/watch?v=NkEwJ1wtP-g",
"publish_date": "2023-01-20T13:15:01Z",
"length_minutes": "10m 35s"
},
{
"title": "Scaling Into Trades For More Profit (Trade Recap)",
"url": "https://www.youtube.com/watch?v=jqJPSi2NYR4",
"publish_date": "2023-01-14T17:30:00Z",
"length_minutes": "9m 40s"
},
{
"title": "Bitcoin Analysis (BTCUSD) | 2 January 2023",
"url": "https://www.youtube.com/watch?v=aAPhy3w3Iy8",
"publish_date": "2023-01-02T11:27:39Z",
"length_minutes": "5m 35s"
},
{
"title": "WYCKOFF TRADING SIMPLIFIED - How To Trade Wyckoff The Easy Way!",
"url": "https://www.youtube.com/watch?v=EmaDWRpTQOg",
"publish_date": "2022-12-23T15:39:31Z",
"length_minutes": "9m 14s"
},
{
"title": "How To: Make More Money With Supply & Demand Trading (3 Tips)",
"url": "https://www.youtube.com/watch?v=rbuPXY8-SJM",
"publish_date": "2022-12-17T14:32:52Z",
"length_minutes": "5m 21s"
},
{
"title": "The Simplest Day Trading Strategy | (Backtesting Session)",
"url": "https://www.youtube.com/watch?v=PcaNbKm4GVk",
"publish_date": "2022-12-03T12:26:14Z",
"length_minutes": "16m 1s"
},
{
"title": "WINNING Forex Trade Recap | Technical Analysis Lesson",
"url": "https://www.youtube.com/watch?v=h62Fp3JV8gc",
"publish_date": "2022-11-30T15:59:40Z",
"length_minutes": "12m 45s"
},
{
"title": "The SIMPLIFIED Guide To FUNDAMENTAL Analysis!",
"url": "https://www.youtube.com/watch?v=joSsVkCmG-g",
"publish_date": "2022-11-17T12:52:18Z",
"length_minutes": "14m 48s"
},
{
"title": "The ULTIMATE Reversal Trading Guide...",
"url": "https://www.youtube.com/watch?v=PBw-i56DJxA",
"publish_date": "2022-10-28T16:34:24Z",
"length_minutes": "10m 20s"
},
{
"title": "Why You NEED TO Backtest! (And How To Do It)",
"url": "https://www.youtube.com/watch?v=X4iY_qXd734",
"publish_date": "2022-10-26T12:17:34Z",
"length_minutes": "8m 54s"
},
{
"title": "Removing EGO From Trading - JeaFx Podcast Episode 3",
"url": "https://www.youtube.com/watch?v=b7Gvvv9vy-M",
"publish_date": "2022-10-25T21:46:57Z",
"length_minutes": "15m 3s"
},
{
"title": "How I Use The Dollar Index (DXY) To Make More Money Trading",
"url": "https://www.youtube.com/watch?v=QtHN5T29mns",
"publish_date": "2022-10-21T10:03:34Z",
"length_minutes": "8m 46s"
},
{
"title": "You Are Trading TOO MUCH! Here's How To Fix It",
"url": "https://www.youtube.com/watch?v=n1LyZTq6qnI",
"publish_date": "2022-10-19T12:56:26Z",
"length_minutes": "8m 27s"
},
{
"title": "Should You Trade With a Prop Firm? | Trading Thoughts Podcast (Ep.2) - JeaFx",
"url": "https://www.youtube.com/watch?v=BPJGmjSa7fY",
"publish_date": "2022-10-18T14:04:57Z",
"length_minutes": "15m 21s"
},
{
"title": "Why You Should Only Trade a Few Currency Pairs....",
"url": "https://www.youtube.com/watch?v=bzHwAKWm5HI",
"publish_date": "2022-10-14T14:40:37Z",
"length_minutes": "10m 6s"
},
{
"title": "Goal Setting in Trading | What Goals Should You Aim For?",
"url": "https://www.youtube.com/watch?v=5L4zLlbsnjk",
"publish_date": "2022-10-12T14:42:07Z",
"length_minutes": "10m 45s"
},
{
"title": "Building a Trading System | Trading Thoughts Podcast (Ep.1) - JeaFx",
"url": "https://www.youtube.com/watch?v=zECUxZMnJrk",
"publish_date": "2022-10-11T16:13:02Z",
"length_minutes": "18m 56s"
},
{
"title": "Day Trading & Economic News | US30 Case Study - JeaFx",
"url": "https://www.youtube.com/watch?v=G7Vtsl60S3Y",
"publish_date": "2022-10-08T12:23:13Z",
"length_minutes": "13m 17s"
},
{
"title": "Buying & Selling Traps",
"url": "https://www.youtube.com/watch?v=XoQD4HnOMlA",
"publish_date": "2022-09-23T07:30:04Z",
"length_minutes": "12m 46s"
},
{
"title": "Buy-Side & Sell-Side Liquidity | What Is It? (Forex Lesson) - JeaFx",
"url": "https://www.youtube.com/watch?v=zb_kiI-VVwU",
"publish_date": "2022-09-15T11:31:28Z",
"length_minutes": "10m 49s"
},
{
"title": "Trading Psychology Tips | Negative Mental Compounding - JeaFx",
"url": "https://www.youtube.com/watch?v=67mbwK6K6f0",
"publish_date": "2022-09-09T15:00:42Z",
"length_minutes": "12m 35s"
},
{
"title": "EURUSD Analysis (5th September 22) | Supply & Demand Trading - JeaFx",
"url": "https://www.youtube.com/watch?v=1DijAxv0rKU",
"publish_date": "2022-09-05T13:20:33Z",
"length_minutes": "6m 58s"
},
{
"title": "Learning From Trading Mistakes! | JeaFx's Forex Trade Recap (EURUSD)",
"url": "https://www.youtube.com/watch?v=1SWjR_Vs9mo",