-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudemy_courses-raw.csv
We can't make this file beautiful and searchable because it's too large.
3684 lines (3684 loc) · 678 KB
/
udemy_courses-raw.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
course_id,course_title,url,is_paid,price,num_subscribers,num_reviews,num_lectures,level,content_duration,published_timestamp,subject
1070968,Ultimate Investment Banking Course,https://www.udemy.com/ultimate-investment-banking-course/,True,200,2147,23,51,All Levels,1.5,2017-01-18T20:58:58Z,Business Finance
1113822,Complete GST Course & Certification - Grow Your CA Practice,https://www.udemy.com/goods-and-services-tax/,True,75,2792,923,274,All Levels,39.0,2017-03-09T16:34:20Z,Business Finance
1006314,Financial Modeling for Business Analysts and Consultants,https://www.udemy.com/financial-modeling-for-business-analysts-and-consultants/,True,45,2174,74,51,Intermediate Level,2.5,2016-12-19T19:26:30Z,Business Finance
1210588,Beginner to Pro - Financial Analysis in Excel 2017,https://www.udemy.com/complete-excel-finance-course-from-beginner-to-pro/,True,95,2451,11,36,All Levels,3.0,2017-05-30T20:07:24Z,Business Finance
1011058,How To Maximize Your Profits Trading Options,https://www.udemy.com/how-to-maximize-your-profits-trading-options/,True,200,1276,45,26,Intermediate Level,2.0,2016-12-13T14:57:18Z,Business Finance
192870,Trading Penny Stocks: A Guide for All Levels In 2017,https://www.udemy.com/trading-penny-stocks-a-guide-for-all-levels/,True,150,9221,138,25,All Levels,3.0,2014-05-02T15:13:30Z,Business Finance
739964,Investing And Trading For Beginners: Mastering Price Charts,https://www.udemy.com/investing-and-trading-for-beginners-mastering-price-charts/,True,65,1540,178,26,Beginner Level,1.0,2016-02-21T18:23:12Z,Business Finance
403100,"Trading Stock Chart Patterns For Immediate, Explosive Gains",https://www.udemy.com/trading-chart-patterns-for-immediate-explosive-gains/,True,95,2917,148,23,All Levels,2.5,2015-01-30T22:13:03Z,Business Finance
476268,Options Trading 3 : Advanced Stock Profit and Success Method,https://www.udemy.com/day-trading-stock-options-3/,True,195,5172,34,38,Expert Level,2.5,2015-05-28T00:14:03Z,Business Finance
1167710,The Only Investment Strategy You Need For Your Retirement,https://www.udemy.com/the-only-investment-strategy-you-need-for-your-retirement/,True,200,827,14,15,All Levels,1.0,2017-04-18T18:13:32Z,Business Finance
592338,Forex Trading Secrets of the Pros With Amazon's AWS,https://www.udemy.com/trading-with-amazons-aws-servers-trade-secrets-of-the-pros/,True,200,4284,93,76,All Levels,5.0,2015-09-11T16:47:02Z,Business Finance
975046,Trading Options With Money Flow,https://www.udemy.com/trading-options-using-money-flow/,True,200,1380,42,17,All Levels,1.0,2016-10-18T22:52:31Z,Business Finance
742602,Financial Management Risk and Return For Securities,https://www.udemy.com/risk-and-return-finance/,True,30,3607,21,19,All Levels,1.5,2016-02-03T18:04:01Z,Business Finance
794151,Forex Trading Course: Work Smarter Not Harder Proven Results,https://www.udemy.com/the-complete-trading-course/,True,195,4061,52,16,All Levels,2.0,2016-03-16T15:40:19Z,Business Finance
1196544,Python Algo Trading: Sentiment Trading with News,https://www.udemy.com/hedge-fund-strategy-trading-with-sentiment-analysis/,True,200,294,19,42,All Levels,7.0,2017-04-28T16:41:44Z,Business Finance
504036,Short Selling: Learn To Sell Stocks Before The Fall,https://www.udemy.com/short-selling-learn-to-sell-before-the-fall/,True,75,2276,106,19,Intermediate Level,1.5,2015-06-22T21:18:35Z,Business Finance
719698,Basic Technical Analysis: Learn the structure of the market,https://www.udemy.com/learn-basic-technical-analysis/,True,20,4919,79,16,Beginner Level,1.5,2016-01-08T17:21:26Z,Business Finance
564966,The Complete Chart Pattern Trading Course: A Proven Approach,https://www.udemy.com/make-money-trading-stocks-from-home/,True,200,2666,115,52,All Levels,4.0,2015-08-10T21:07:35Z,Business Finance
606928,7 Deadly Mistakes of Investing that Will Slash Your Profits!,https://www.udemy.com/7-deadly-mistakes-of-investing/,True,50,5354,24,23,All Levels,1.5,2015-09-21T18:10:34Z,Business Finance
58977,Financial Statements Made Easy,https://www.udemy.com/intro-to-financial-statements-for-entrepreneurs/,True,95,8095,249,12,Beginner Level,0.5833333333333334,2013-06-09T00:21:26Z,Business Finance
1242604,Winning Forex Trading with Live Forex Trading Examples,https://www.udemy.com/forexmacross/,True,200,809,3,25,All Levels,2.0,2017-06-06T02:54:04Z,Business Finance
798740,Forex Traders - Create Your First Trading Robot. No Coding!,https://www.udemy.com/launch-your-amazing-forex-robot-in-30-minutes-no-coding/,True,200,2295,84,39,All Levels,4.0,2016-05-02T19:26:48Z,Business Finance
506568,Create A Business From Home Trading Stocks Today In 2017,https://www.udemy.com/work-from-home-buying-penny-stocks/,True,75,10149,83,16,All Levels,2.0,2015-05-26T17:25:46Z,Business Finance
1020760,Introduction to Accounting : Mastering Financial Statements,https://www.udemy.com/introduction-to-accounting-mastering-financial-statements/,True,50,1916,38,23,Beginner Level,1.0,2016-12-05T22:14:17Z,Business Finance
859742,The Complete Ethereum Course: Get .01 Ether In Your Wallet,https://www.udemy.com/ethereum/,True,45,2507,333,40,All Levels,2.0,2016-05-30T18:53:46Z,Business Finance
383414,Beginner to Pro in PowerPoint: Complete PowerPoint Training,https://www.udemy.com/powerpoint-master-class-for-business-and-finance-graduates/,True,150,5786,518,50,All Levels,5.0,2015-01-31T15:34:05Z,Business Finance
353044,Investing 101: The Complete Online Investing Course,https://www.udemy.com/online-investing-guide/,True,200,5334,373,42,All Levels,4.5,2014-11-28T17:49:03Z,Business Finance
447362,Create Your Own Hedge Fund: Trade Stocks Like A Fund Manager,https://www.udemy.com/create-your-own-hedge-fund-double-your-money-every-year/,True,175,4005,237,25,Intermediate Level,2.0,2015-04-12T20:13:47Z,Business Finance
831066,Learn MQL5: Build an 8-Currency Hedging Robot (MetaTrader 5),https://www.udemy.com/learn-mql5/,True,150,2877,103,81,All Levels,4.5,2016-04-26T22:41:46Z,Business Finance
1266306,Forex Trading: Your Complete Guide to Get Started Like a Pro,https://www.udemy.com/forex-trading-your-complete-guide-to-get-started-like-a-pro/,True,140,1026,25,37,Beginner Level,3.0,2017-06-27T22:21:31Z,Business Finance
1170894,Python Algo Stock Trading: Automate Your Trading!,https://www.udemy.com/algorithmic-stock-trading-bootcamp-automate-your-trading/,True,95,1165,21,41,Beginner Level,2.5,2017-05-28T23:41:03Z,Business Finance
948974,THE Forex Robot: Incredible ROI (Robot Included),https://www.udemy.com/the-forex-robot-1000-annual-profit-robot-included/,True,200,1843,171,35,All Levels,1.5,2016-10-04T15:20:57Z,Business Finance
380970,The Complete Bitcoin Course: Get .001 Bitcoin In Your Wallet,https://www.udemy.com/bitcoin-for-beginners/,True,45,8797,449,80,All Levels,6.5,2015-01-09T03:55:15Z,Business Finance
1217778,Mastering High Probability Iron Condor Options Trading,https://www.udemy.com/mastering-high-probability-iron-condor-options-trading/,True,200,1030,11,22,All Levels,2.0,2017-06-01T05:22:08Z,Business Finance
1246208,The Complete Short Course on Ethereum,https://www.udemy.com/ethereum1/,True,200,1041,12,28,All Levels,1.5,2017-06-11T19:02:03Z,Business Finance
434774,Options Trading Stocks: Proven Toolbox For Financial Success,https://www.udemy.com/trading-stock-options-ii-simplified-strategies-for-success/,True,195,7884,118,68,Intermediate Level,10.0,2015-05-19T23:25:41Z,Business Finance
308690,Forex Trading A-Z™ - With LIVE Examples of Forex Trading,https://www.udemy.com/forex-trading/,True,195,16900,2476,52,Beginner Level,5.5,2014-12-12T23:58:39Z,Business Finance
888716,"Introduction to Finance, Accounting, Modeling and Valuation",https://www.udemy.com/introduction-to-accounting-finance-modeling-valuation-by-chris-haroun/,True,200,11441,1118,61,All Levels,4.5,2016-06-28T06:12:23Z,Business Finance
321410,Beginner to Pro in Excel: Financial Modeling and Valuation,https://www.udemy.com/beginner-to-pro-in-excel-financial-modeling-and-valuation/,True,195,22257,2697,138,All Levels,7.5,2014-11-25T23:00:40Z,Business Finance
965832,The Complete Investment Banking Course 2017,https://www.udemy.com/the-complete-investment-banking-course-2016/,True,195,8575,809,110,All Levels,5.5,2016-10-10T16:16:26Z,Business Finance
648826,The Complete Financial Analyst Course 2017,https://www.udemy.com/the-complete-financial-analyst-course/,True,195,24481,2347,174,All Levels,10.0,2016-01-21T01:38:48Z,Business Finance
1035472,Python for Finance: Investment Fundamentals & Data Analytics,https://www.udemy.com/python-for-finance-investment-fundamentals-data-analytics/,True,195,3811,278,103,All Levels,6.5,2017-03-30T22:17:09Z,Business Finance
1154754,Financial Modeling for Startups & Small Businesses,https://www.udemy.com/financial-modeling-for-startups-small-businesses/,True,195,4991,137,79,Beginner Level,11.5,2017-03-29T22:36:05Z,Business Finance
627540,Options Trading - How to Win with Weekly Options,https://www.udemy.com/work-from-home-setup-your-own-options-trading-business/,True,115,7489,1190,25,Intermediate Level,1.0,2015-10-22T21:54:28Z,Business Finance
301442,Black Algo Trading: Build Your Trading Robot,https://www.udemy.com/build-your-trading-robot/,True,200,20195,1113,227,All Levels,16.0,2014-10-27T22:01:36Z,Business Finance
640100,Accounting & Financial Statement Analysis: Complete Training,https://www.udemy.com/accounting-fsa-a-solid-foundation-for-a-career-in-finance/,True,150,10042,594,43,All Levels,3.0,2015-10-22T00:03:48Z,Business Finance
1247394,Cryptocurrency Trading: Complete Guide To Trading Altcoins,https://www.udemy.com/cryptocurrency-trading/,True,95,367,42,35,All Levels,5.0,2017-06-21T23:18:47Z,Business Finance
260470,Forex Robots: Expect To Earn 175% P.A. Forex Robot Included!,https://www.udemy.com/backtesting/,True,200,10603,872,42,All Levels,5.5,2014-10-12T21:19:11Z,Business Finance
1214702,Three Steps Trading - Live Trading - Real Account,https://www.udemy.com/three-steps-trading-live-trading-real-account/,True,190,1197,11,46,All Levels,5.0,2017-05-24T23:02:07Z,Business Finance
848664,Option Trading for Rookies: Understand Options Completely,https://www.udemy.com/complete-course-introduction-to-option-trading/,True,150,2893,65,62,All Levels,2.0,2016-08-10T15:27:06Z,Business Finance
1142570,How I Learned Stock Trading (and How You Can Too),https://www.udemy.com/best-stock-traders/,True,200,1580,12,53,Expert Level,2.0,2017-05-02T21:20:54Z,Business Finance
325834,Learn to Trade for Profit: Find and Trade Winning Stocks,https://www.udemy.com/trading-stocks-successfully-introduction-to-stock-trading/,True,95,10605,71,77,All Levels,3.0,2014-10-24T18:13:49Z,Business Finance
411168,Trading Inside Bars - Master 1 Easy Pattern To Be Successful,https://www.udemy.com/trading-inside-bars-find-setups-today-make-money-tomorrow/,True,125,2996,200,23,Intermediate Level,2.0,2015-03-09T00:24:38Z,Business Finance
885974,Four Fundamentals of Financial Planning,https://www.udemy.com/four-fundamentals-of-financial-planning/,True,30,6219,23,20,All Levels,1.0,2017-02-14T04:42:58Z,Business Finance
1151092,Options Trading - Calendar Spread Course for Every Trader,https://www.udemy.com/options-trading-calendar-spread-course-for-every-trader/,True,200,1113,11,17,All Levels,1.5,2017-04-02T21:46:00Z,Business Finance
358326,Dividend Investing: Build Your Portfolio for a Better Future,https://www.udemy.com/dividend-investing/,True,60,8314,83,47,Beginner Level,4.0,2015-01-24T06:31:19Z,Business Finance
153210,Learn Accounting. Understand Business.,https://www.udemy.com/learn-accounting-understand-business/,True,200,5572,123,33,Beginner Level,5.5,2014-03-27T17:58:37Z,Business Finance
834836,How to Consistently Win Trading Stocks in 30 Days or Less,https://www.udemy.com/winningstocktrades/,True,145,1433,169,15,Intermediate Level,1.0,2016-05-09T05:44:33Z,Business Finance
1171994,A Beginner's Guide to Quantopian Futures API,https://www.udemy.com/quantopian-futures/,True,20,936,6,11,Intermediate Level,1.5,2017-04-11T00:59:50Z,Business Finance
1239068,How to Buy Cheap Options - Options Trading Pricing Model,https://www.udemy.com/options-black-scholes-model/,True,200,658,2,19,All Levels,1.0,2017-06-02T18:12:45Z,Business Finance
985922,Excel Crash Course: Master Excel for Financial Analysis,https://www.udemy.com/excel-crash-course-master-excel-for-financial-analysis/,True,105,8121,689,40,All Levels,3.5,2016-10-18T00:51:59Z,Business Finance
765562,"Comprehensive Guide to Financial Markets, Investing &Trading",https://www.udemy.com/financial-markets-a-to-z-for-beginners/,True,60,4187,600,79,Beginner Level,9.0,2016-02-29T18:45:41Z,Business Finance
165964,Stock Trading Ninja: Complete System For Trading Success,https://www.udemy.com/stock-trading-ninja-learn-how-to-make-money-trading-stocks/,True,155,9445,497,38,All Levels,4.5,2014-02-19T19:04:28Z,Business Finance
855172,Hedge and Mutual Fund Careers: The Complete Guide,https://www.udemy.com/hedge-fund-mutual-fund-careers-the-complete-guide-how-to-pick-stocks/,True,200,3255,340,102,All Levels,8.5,2016-06-20T20:17:12Z,Business Finance
258232,Algorithmic Trading In Forex: Create Your First Forex Robot!,https://www.udemy.com/learn-mql4/,True,185,7941,713,40,All Levels,6.5,2014-08-11T08:01:14Z,Business Finance
994754,The Power Modeling Bootcamp: Advanced Excel in 10 Days,https://www.udemy.com/the-power-modeling-bootcamp-advanced-excel-in-10-days/,True,150,1680,158,76,All Levels,5.5,2016-11-26T04:09:14Z,Business Finance
43319,Options Trading Basics (3-Course Bundle),https://www.udemy.com/learn-options-trading-courses/,True,180,10100,985,45,Beginner Level,11.0,2013-02-25T11:36:06Z,Business Finance
408440,How to Win 97% of Your Options Trades,https://www.udemy.com/how-to-win-97-percent-of-your-trades/,True,125,5050,461,26,All Levels,1.5,2015-02-10T04:21:40Z,Business Finance
918688,How I Make Consistent Returns Trading Options,https://www.udemy.com/how-i-make-15-per-month-trading-options/,True,200,2310,162,26,All Levels,3.5,2016-10-05T17:42:52Z,Business Finance
308694,"Forex Strategies: Kelly Criterion, Larry Williams and more!",https://www.udemy.com/money-management/,True,185,5528,506,32,All Levels,3.0,2015-02-19T11:31:27Z,Business Finance
199450,"Elite Trend Trader: Learn To Trade Stocks, Options & Forex",https://www.udemy.com/elite-trend-trader-how-to-make-a-fortune-trading-the-trend/,True,125,6451,237,28,All Levels,5.0,2014-04-16T13:58:31Z,Business Finance
401784,Options Trading Introduction: Day Trade Stock Options,https://www.udemy.com/how-to-trade-stock-options-level-1-start-day-trading/,True,95,12394,218,30,Beginner Level,2.5,2015-02-20T21:39:41Z,Business Finance
1122792,The Almost Perfect Options Trading Strategy System - Unique,https://www.udemy.com/the-almost-perfect-options-trading-strategy-system-unique/,True,200,1793,18,15,All Levels,1.0,2017-03-03T21:43:05Z,Business Finance
709500,Forex Trading - Learn to Trade Forex Like the Banks,https://www.udemy.com/forex-trading-learn-the-same-strategies-used-by-banks/,True,20,3223,240,23,All Levels,1.0,2016-03-30T15:29:03Z,Business Finance
285638,Learn to Trade for Profit:Trading with Japanese Candlesticks,https://www.udemy.com/introduction-to-japanese-candlesticks/,True,60,16385,273,45,Beginner Level,3.0,2014-09-02T03:53:13Z,Business Finance
1135126,The Most Powerful Options Spread Trading Front Ratio Spread,https://www.udemy.com/the-most-powerful-options-spread-trading-front-ratio-spread/,True,200,1487,16,18,All Levels,2.0,2017-03-08T21:09:41Z,Business Finance
834558,What Finance Job is for You? Explanation of 14 Finance Roles,https://www.udemy.com/what-finance-job-is-for-you-explanation-of-14-financial-analyst-roles/,True,200,2951,232,60,All Levels,4.0,2016-05-04T05:22:32Z,Business Finance
551968,The Blueprint for Successful Stock Trading,https://www.udemy.com/stock-market-millionaire-blueprint/,True,120,2697,331,15,All Levels,1.0,2015-08-13T18:58:05Z,Business Finance
1005658,Trading for Beginners - Intermediate Level,https://www.udemy.com/trading-for-beginners-tier-2/,True,150,3979,40,39,Beginner Level,5.0,2016-11-09T01:45:20Z,Business Finance
746432,Start Trading Stocks Using Technical Analysis!,https://www.udemy.com/professional-stock-trader/,True,25,3190,244,45,All Levels,4.0,2016-02-03T17:10:31Z,Business Finance
1057242,Learn How to Set Up an Incubator Hedge Fund - Step-by-Step,https://www.udemy.com/hedge-fund-startup/,True,200,1406,71,54,Expert Level,1.5,2017-01-18T20:55:27Z,Business Finance
284118,VPS for Forex Trading - Protect Your Forex Robots,https://www.udemy.com/forex-vps/,True,160,4252,225,24,All Levels,2.0,2014-09-19T04:07:58Z,Business Finance
302562,Introduction to Accounting: The Language of Business,https://www.udemy.com/learnaccountingforfree/,True,20,11958,370,134,Beginner Level,11.5,2014-10-02T09:16:55Z,Business Finance
596598,Basic Excel for Basic Bookkeeping and Accounting,https://www.udemy.com/basic-excel-for-basic-bookkeeping/,True,95,7743,340,33,Beginner Level,1.5,2015-09-10T00:30:48Z,Business Finance
860890,"Using 'The Greeks To Understand Options""",https://www.udemy.com/options-greeks/,True,50,2134,55,5,All Levels,1.0,2016-07-13T18:37:40Z,Business Finance
951050,Trading Options For Consistent Returns: Calendar Spreads,https://www.udemy.com/trading-options-for-consistent-returns-calendar-spreads/,True,200,1214,69,20,All Levels,1.5,2016-10-07T04:58:46Z,Business Finance
796450,How to Create Your Personal Budget,https://www.udemy.com/personal-budget/,True,20,3870,53,10,All Levels,1.0,2016-03-21T21:09:49Z,Business Finance
502772,The Complete Value Investing Course: A Proven Approach,https://www.udemy.com/value-investing-essential-guide-to-picking-stocks/,True,200,2146,212,49,All Levels,4.5,2015-06-16T22:43:07Z,Business Finance
1102462,FOREX Trading with Price Action,https://www.udemy.com/forex-trading-system/,True,195,484,57,19,Beginner Level,1.0,2017-03-14T18:30:55Z,Business Finance
1062092,Emini ES Futures - Advanced Non Directional Options Trading,https://www.udemy.com/emini-es-futures-advanced-non-directional-options-trading/,True,200,1057,15,14,All Levels,1.5,2017-01-11T20:48:19Z,Business Finance
891484,Forex Trading - Advanced Fundamental Analysis,https://www.udemy.com/forex-trading-advanced-fundamental-analysis/,True,20,1754,100,49,Intermediate Level,2.5,2016-06-30T17:06:46Z,Business Finance
1217064,How To Invest With Tiny Capital In Stocks ?,https://www.udemy.com/howtoinvest5k/,True,20,1239,5,6,Beginner Level,0.7,2017-05-23T16:07:09Z,Business Finance
382204,Learn How To Successfully Trade Stocks: In 5 Simple Steps,https://www.udemy.com/learn-how-to-successfully-trade-stocks-in-5-simple-steps/,True,95,2493,276,108,All Levels,9.5,2015-01-31T19:02:09Z,Business Finance
308696,Forex MetaTrader 4: Master MT4 Like A Pro Forex Trader,https://www.udemy.com/metatrader4/,True,150,2602,402,57,Beginner Level,5.0,2015-10-28T17:32:56Z,Business Finance
474928,Intermediate Options trading concepts for Stocks and Options,https://www.udemy.com/intermediate-options-trading-concepts-for-stocks-and-options-traders/,True,40,2000,30,9,All Levels,1.0,2015-04-13T20:28:04Z,Business Finance
1148774,Options Trading 101: The Basics,https://www.udemy.com/options-trading-101-the-basics/,False,0,1514,66,11,Beginner Level,0.55,2017-03-23T22:19:57Z,Business Finance
959144,Practical Accounts APP Overview,https://www.udemy.com/practical-accounts-app-overview/,True,20,1361,1,14,Intermediate Level,3.0,2016-10-04T23:38:32Z,Business Finance
1233350,Bitcoin Profits for Beginners,https://www.udemy.com/bitcoin-profits-for-beginners/,True,100,61,18,30,Beginner Level,1.5,2017-06-09T17:01:05Z,Business Finance
572744,Trend Traders Club: How To Find And Trade Fast Moving Trends,https://www.udemy.com/how-to-find-and-trade-profitable-fast-moving-trends/,True,75,1513,31,60,All Levels,5.5,2015-08-04T19:16:51Z,Business Finance
724062,Financial Statements Basics,https://www.udemy.com/financial-statements-basics/,True,20,1374,19,9,Beginner Level,2.0,2016-01-14T18:58:56Z,Business Finance
474212,High performance Stock Trading using key Options techniques,https://www.udemy.com/high-performance-stock-trading-using-options-trading-techniques/,True,40,2103,15,6,All Levels,1.5,2015-04-12T22:28:45Z,Business Finance
771276,Introduction to Financial Statement Analysis,https://www.udemy.com/introduction-to-financial-statement-analysis/,True,20,1480,25,25,Beginner Level,1.5,2016-03-21T17:00:37Z,Business Finance
388164,Basics of Economics (College Level),https://www.udemy.com/economics-for-accounting-and-finance-professionals/,True,25,2516,12,20,All Levels,1.5,2015-01-08T13:55:52Z,Business Finance
133536,Stock Market Investing for Beginners,https://www.udemy.com/the-beginners-guide-to-the-stock-market/,False,0,50855,2698,15,Beginner Level,1.5,2013-12-25T19:53:34Z,Business Finance
655300,Accounting for Beginners : Learn Basics in under 1 Hour,https://www.udemy.com/accounting-for-beginners-how-to-do-accounting-super-easily/,True,50,1971,13,20,Beginner Level,1.5,2015-12-03T17:08:10Z,Business Finance
949504,Straddle Options Trading - Profit in Any Market Direction,https://www.udemy.com/straddle-options-trading-profit-in-any-market-direction/,True,200,837,9,19,All Levels,1.0,2016-10-03T17:32:40Z,Business Finance
265960,Fundamentals of Forex Trading,https://www.udemy.com/fundamentals-of-forex-trading/,False,0,17160,620,23,All Levels,1.0,2014-08-29T20:10:38Z,Business Finance
680044,"Binary Options: Trading Strategies, 90% Accuracy and Signals",https://www.udemy.com/learn-trading-binary-options-from-scratch-and-3-strategies/,True,195,1723,38,24,Beginner Level,1.0,2015-12-14T18:29:57Z,Business Finance
923616,Website Investing 101 - Buying & Selling Online Businesses,https://www.udemy.com/cash-flow-website-investing-buy-sell-online-businesses-digital-assets/,False,0,6811,151,51,All Levels,2.0,2016-08-05T17:03:15Z,Business Finance
741898,Practical Accounts & Bookkeeping Automated Overview ,https://www.udemy.com/practical-accounts-bookkeeping-automated-overview/,True,20,2060,17,30,All Levels,4.5,2016-01-28T21:43:31Z,Business Finance
381330,Live Account - ETF Trading System - Hacking The Stock Market,https://www.udemy.com/cracked-wall-street-hacked-the-stock-market-top-secret/,True,150,2318,19,16,All Levels,5.0,2014-12-31T03:29:21Z,Business Finance
545918,Stock Market Leverage: How to Start Trading Options Wisely,https://www.udemy.com/stock-market-tips-how-to-successfully-trade-options/,True,95,2153,14,13,Beginner Level,1.5,2015-07-27T18:39:51Z,Business Finance
191854,Stock Market Foundations,https://www.udemy.com/how-to-invest-in-the-stock-market-beginners/,False,0,19339,794,9,Beginner Level,2.0,2014-03-31T21:35:06Z,Business Finance
471546,Crash Course on Working Capital Management,https://www.udemy.com/crash-course-on-working-capital-management/,True,20,3177,8,8,All Levels,1.0,2015-04-16T17:35:54Z,Business Finance
866584,Advanced Accounting A Complete Study for CA / CMA / CFA / CS,https://www.udemy.com/branch-accounts-a-complete-analysis/,True,150,1535,16,462,All Levels,62.0,2016-06-03T17:42:27Z,Business Finance
889824,61% Profit In 1 Month - Crush Your Forex Trading Paradigm,https://www.udemy.com/61-profit-in-1-month-shattering-your-trading-paradigm/,True,20,1027,29,25,All Levels,1.5,2016-07-18T22:38:56Z,Business Finance
1191504,How to create a routine Trading,https://www.udemy.com/how-to-create-a-trading-routine/,True,25,307,8,5,All Levels,0.13333333333333333,2017-05-01T18:50:43Z,Business Finance
585752,"Forex Trading Secrets |MT4 Robot (EA) inside, no coding",https://www.udemy.com/forex-trading-robot-forex-trading/,True,150,2096,48,29,All Levels,0.6833333333333333,2015-08-24T22:16:54Z,Business Finance
671578,Forex SOS Course: Trading Tweaks And Working Forex Strategy,https://www.udemy.com/forex-sos-course/,True,50,1315,48,59,Beginner Level,2.5,2015-11-18T22:40:10Z,Business Finance
151668,Introduction to Financial Modeling,https://www.udemy.com/financial-modeling-asimplemodel/,False,0,29167,1463,8,Intermediate Level,1.5,2014-05-27T16:22:16Z,Business Finance
1105344,Quantitative Aptitude for Banking & Competitive Examinations,https://www.udemy.com/quantitative-aptitude-for-competitive-examinations-part-i/,True,50,1056,1,42,All Levels,3.0,2017-02-09T19:33:52Z,Business Finance
44836,Option Spreads and Credit Spreads Bundle,https://www.udemy.com/option-spreads-and-credit-spreads-bundle/,True,180,2212,194,24,Expert Level,4.5,2013-03-05T18:27:38Z,Business Finance
840300,B Com Accountancy I (Paper ECO 02 IGNOU),https://www.udemy.com/accounts-from-incomplete-records/,True,50,2946,6,284,All Levels,31.5,2016-05-05T23:07:43Z,Business Finance
1100054,FOREX TRADING - Learn in a quick + profitable way + support,https://www.udemy.com/forex-the-only-simple-trading-your-ever-need-bank-trading/,True,100,271,48,47,All Levels,3.5,2017-02-20T23:45:20Z,Business Finance
421054,Auditing Basics (Professional Course Level),https://www.udemy.com/basics-of-auditing/,True,25,3771,10,35,All Levels,2.5,2015-02-13T14:37:18Z,Business Finance
528784,Stock market Investing Encyclopedia: How to invest in stocks,https://www.udemy.com/stockmarket/,True,200,3143,11,39,Intermediate Level,3.0,2015-11-10T22:55:53Z,Business Finance
637430,Learn the basics of preparing accounting statements,https://www.udemy.com/basics-of-financial-accounting/,True,20,1951,30,20,Intermediate Level,0.55,2015-10-13T21:07:22Z,Business Finance
236080,Elliott Wave -Forex Trading With The Elliott Wave Theory,https://www.udemy.com/forex-trading-with-the-elliot-wave-theory/,True,90,4022,35,14,Expert Level,1.0,2016-12-15T15:49:13Z,Business Finance
777444,Corporate Finance - A Brief Introduction,https://www.udemy.com/finance-a-brief-introduction-and-basics-finance-101/,False,0,11724,649,17,Beginner Level,1.5,2016-03-04T05:58:09Z,Business Finance
474238,Excel functions to analyze and visualize data,https://www.udemy.com/basic-excel-functions-to-analyze-large-data/,True,20,2283,54,16,Intermediate Level,2.0,2015-04-20T18:52:32Z,Business Finance
1245244,Building Financial Statements in Excel,https://www.udemy.com/guide-to-building-financial-statements/,True,35,1181,1,18,Beginner Level,1.0,2017-06-29T23:34:42Z,Business Finance
1051570,Transfer Pricing A Complete Analysis,https://www.udemy.com/transfer-pricing-a-complete-analysis/,True,50,1852,3,14,All Levels,2.5,2016-12-28T18:19:16Z,Business Finance
262370,Accounting: Get Hired Without Work Experience,https://www.udemy.com/accounting-get-hired-without-work-experience/,True,100,4661,187,20,All Levels,1.0,2014-09-01T21:43:47Z,Business Finance
1188178,Forex Trading for Beginners - Basics,https://www.udemy.com/complete-forex-trading-for-beginners-in-1-course-basics/,True,50,989,9,11,All Levels,1.0,2017-04-24T16:42:56Z,Business Finance
824592,Basic Bookkeeping Hacks,https://www.udemy.com/basic-bookkeeping/,True,20,5841,16,28,All Levels,1.5,2016-06-14T15:43:23Z,Business Finance
1147458,Complete Trading Plan Course for Stocks & Forex (10 Hours),https://www.udemy.com/killer-trading-plan-6-year-old-can-invest-10-hours-stocks-forex-etf/,True,200,1087,14,61,All Levels,9.5,2017-03-23T05:54:27Z,Business Finance
1243448,"Forex Trading with Fixed 'Risk through Options Trading""",https://www.udemy.com/forexoptions/,True,200,611,4,26,Beginner Level,1.0,2017-06-07T17:15:07Z,Business Finance
730414,"Intro to Investment Banking, M&A, IPO, Modeling + Free Book",https://www.udemy.com/investment-banking-mergers-ipo-financial-model-business-mba-pro-forma/,True,60,1922,149,15,All Levels,20.0,2016-01-21T01:25:31Z,Business Finance
252396,How to Pick The Right Penny Stocks To Invest In 2017,https://www.udemy.com/how-to-make-5000month-trading-penny-stocks/,True,150,9015,65,23,All Levels,2.5,2014-07-01T20:04:27Z,Business Finance
1198166,Top 10 Trading Ideas in the Equities Market,https://www.udemy.com/top-10-trading-ideas-in-the-equities-market/,True,20,661,4,12,All Levels,1.0,2017-05-02T21:59:07Z,Business Finance
920604,Intro to Financial Modeling,https://www.udemy.com/intro-to-financial-modeling/,True,105,1077,110,55,Beginner Level,6.0,2016-08-19T20:12:24Z,Business Finance
215728,Shark Accounting - Building a Business by the Numbers!,https://www.udemy.com/shark-accounting/,True,20,6050,140,17,Beginner Level,1.5,2014-05-18T19:08:04Z,Business Finance
722174,Forex Trading MAKE YOUR FIRST TRADE TODAY!,https://www.udemy.com/trade-forex/,True,150,3523,46,45,All Levels,4.0,2016-01-10T21:39:39Z,Business Finance
48841,Accounting in 60 Minutes - A Brief Introduction,https://www.udemy.com/accounting-in-60-minutes-a-brief-introduction/,False,0,56659,4397,16,Beginner Level,1.5,2013-04-07T21:39:25Z,Business Finance
907444,SAP FICO For Beginners - A Guide to SAP Financial Accounts,https://www.udemy.com/sap-fico-for-sap-beginners/,True,100,1444,101,59,Beginner Level,5.0,2016-07-25T16:08:07Z,Business Finance
317030,Learn how to double your Forex Trading Account in one trade,https://www.udemy.com/learn-how-to-double-your-forex-trading-account-in-one-trade/,True,60,2900,424,36,Intermediate Level,2.5,2014-10-19T22:04:51Z,Business Finance
891490,"Accounting Superpowers: Learn Accounts, Understand Business!",https://www.udemy.com/accounting-basics-for-success-in-business-and-in-life/,True,200,1437,96,34,Beginner Level,2.5,2016-08-08T22:23:09Z,Business Finance
1070886,Python Algo Trading: FX Trading with Oanda,https://www.udemy.com/python-algo-trading-fx-trading-with-oanda/,True,200,453,42,33,Intermediate Level,3.0,2017-03-14T00:39:45Z,Business Finance
812616,Save on Your Taxes,https://www.udemy.com/save-on-your-taxes/,True,20,2437,12,23,All Levels,1.5,2016-11-16T17:38:38Z,Business Finance
407984,Financial Model Basics: Build a model from start to finish,https://www.udemy.com/financial-model-basics-build-a-model-from-start-to-finish/,True,30,5057,142,13,Beginner Level,1.0,2015-02-06T07:12:25Z,Business Finance
214046,Option Trading for Rookies: The Covered Call Option Strategy,https://www.udemy.com/option-trading-for-rookies-investing-the-profitable-way/,True,95,6092,25,29,Beginner Level,1.5,2016-11-03T05:22:20Z,Business Finance
512400,EFT for Stock Options Trading Success & Making Better Trades,https://www.udemy.com/eft-for-stock-option-trading-success/,True,95,4530,13,31,All Levels,1.5,2015-08-06T19:08:20Z,Business Finance
377370,Learn to Trade the Stock Market without Blowing Your Profits,https://www.udemy.com/learn-to-trade-the-stock-market-without-blowing-your-profits/,True,60,6967,16,34,All Levels,1.0,2017-05-02T20:53:24Z,Business Finance
1175694,Get a Credit Repair Publication On Amazon and Live LIFE..,https://www.udemy.com/get-a-credit-repair-publication-on-amazon-and-live-life/,True,20,727,11,25,Beginner Level,3.0,2017-04-26T18:17:51Z,Business Finance
945750,Fundamentals of Accounting,https://www.udemy.com/fundamentals-of-accounting/,True,20,1560,43,25,All Levels,3.0,2016-08-31T22:03:44Z,Business Finance
1085580,"RSI, Options Trading & Technical Analysis (3 Course Bundle)",https://www.udemy.com/charting-rsi-options-stock-trading-for-beginners-newtechnical-analysis/,True,200,1047,9,46,All Levels,3.5,2017-01-26T22:55:27Z,Business Finance
1188410,Basics of Mutual Funds for CA / CMA / CS / CFA Exams,https://www.udemy.com/basics-of-mutual-funds-for-ca-cma-cs-cfa-exams/,True,125,1045,2,17,Intermediate Level,1.0,2017-04-24T21:59:45Z,Business Finance
402836,Accounting 101: How to read an Accounting Balance Sheet,https://www.udemy.com/financial-statements-101-how-to-read-a-balance-sheet/,True,200,3050,86,22,Beginner Level,2.0,2015-01-27T09:27:49Z,Business Finance
588764,Stock Options Day Trading Mindset for Success,https://www.udemy.com/stock-options-day-trading-success-mindset/,True,200,2988,21,43,All Levels,4.5,2015-09-29T19:15:24Z,Business Finance
576946,Introduction to bookkeeping and Accounting,https://www.udemy.com/introduction-to-bookkeeping-and-accounting/,True,35,2623,158,20,Beginner Level,1.0,2015-08-21T20:33:25Z,Business Finance
543242,Learn to Trade The News,https://www.udemy.com/learn-to-trade-the-news/,True,200,1924,351,544,All Levels,46.5,2015-07-16T22:03:29Z,Business Finance
502240,"Value Investing, Taught by Six Superinvestors",https://www.udemy.com/investing-stars/,True,200,3804,267,66,All Levels,5.0,2015-06-19T21:22:17Z,Business Finance
598266,Trading for everyone - The Independent Investor Course I,https://www.udemy.com/trading-for-everyone-the-independent-investor-course/,True,120,4133,15,36,Beginner Level,4.0,2015-10-08T20:23:36Z,Business Finance
814068,Get Acquired: Learn From The Head Of Acquisitions For eBay,https://www.udemy.com/entrepreneurship-buy-and-sell-your-startup-or-business/,True,195,1420,70,29,All Levels,2.5,2016-04-28T18:04:46Z,Business Finance
1076920,Stock Market investment: Practical Accounting,https://www.udemy.com/stock-market-investment-practical-accounting/,True,125,1120,6,43,Beginner Level,3.0,2017-01-23T17:04:49Z,Business Finance
1103272,"How to remove 'Risk from Penny Stocks - Options Trading""",https://www.udemy.com/best-penny-stock-options-to-buy-hot-stocks-put-call-stock-options/,True,200,668,12,22,All Levels,1.0,2017-02-07T00:45:51Z,Business Finance
441112,Accounting Basics in 66 Minutes (absolutely for beginners),https://www.udemy.com/accounting-through-visual-presentation/,True,25,4086,31,14,All Levels,1.5,2015-03-08T21:13:13Z,Business Finance
1022108,"Tax Accounting: Difficult Topic, Made Easy to Understand",https://www.udemy.com/taxaccounting/,True,200,1033,10,29,All Levels,2.0,2017-01-11T16:17:20Z,Business Finance
1028030,Analysis of Company Financial Statements,https://www.udemy.com/analysis-of-company-financial-statements/,True,20,832,34,34,All Levels,1.5,2016-12-07T20:19:37Z,Business Finance
1018380,Forex Trading Like Banks – Step by Step with Live Examples,https://www.udemy.com/forex-trading-like-banks-step-by-step-with-live-examples/,True,195,677,45,40,All Levels,4.5,2016-12-18T16:13:47Z,Business Finance
575676,Fundamentals of Investing!,https://www.udemy.com/investment-basics-lets-invest-series/,True,20,3125,54,13,Beginner Level,2.0,2015-08-09T18:34:30Z,Business Finance
1105216,Bank Financial Management A Comprehensive Study,https://www.udemy.com/bank-financial-management-a-comprehensive-study/,True,50,1081,6,21,All Levels,1.5,2017-02-10T00:51:57Z,Business Finance
936328,Learn to Trade Forex and Stocks: From Beginner to Advanced,https://www.udemy.com/tradeforex/,True,200,1645,25,42,All Levels,2.0,2016-09-07T20:33:30Z,Business Finance
43441,"Master 'Technical Analysis and Chart reading skills Bundle""",https://www.udemy.com/master-technical-analysis-and-chart-reading-skills-bundle/,True,120,3348,352,13,All Levels,3.0,2013-02-25T21:38:29Z,Business Finance
1103718,Naked Put Options Trade Covered Call & Poor Man Covered Call,https://www.udemy.com/naked-put-options-trade-covered-call-poor-man-covered-call/,True,200,939,7,19,All Levels,1.5,2017-02-10T22:40:57Z,Business Finance
584410,The Ultimate Guide to Dividend & Dividend Growth Investing,https://www.udemy.com/investing-learn-how-to-build-a-dividend-portfolio-step-by-step/,True,200,2115,59,88,All Levels,5.5,2015-11-13T18:10:25Z,Business Finance
625568,Charting for Beginners 101: Technical Analysis Demystified,https://www.udemy.com/charting-for-beginners-101/,True,45,2230,102,10,All Levels,1.5,2015-10-09T21:27:49Z,Business Finance
297742,Build a DCF Valuation Model,https://www.udemy.com/build-a-dcf-valuation-model/,True,50,2053,234,44,All Levels,5.5,2014-10-01T18:49:29Z,Business Finance
24877,Introductory Financial Accounting,https://www.udemy.com/introductory-financial-accounting/,True,80,1793,265,54,Beginner Level,10.0,2012-10-03T03:20:10Z,Business Finance
1188742,Introduction to Cryptocurrencies and Blockchain,https://www.udemy.com/introduction-to-cryptocurrencies/,False,0,3775,138,11,Beginner Level,2.0,2017-05-01T21:18:54Z,Business Finance
597716,Trade Pullback Candlestick Strategy - Make Consistent Pips,https://www.udemy.com/make-consistent-profit-using-pullback-candlestick-strategy/,True,200,521,67,24,All Levels,3.0,2016-02-24T17:30:41Z,Business Finance
415802,Accounting Standards Basics (Professional Course Level),https://www.udemy.com/basics-of-accounting-standards/,True,20,2222,9,12,All Levels,0.7,2015-02-07T15:06:57Z,Business Finance
323950,Use the Magic Multiple Moving Average Forex Trading system,https://www.udemy.com/the-magic-multiple-moving-average-forex-trading-system/,True,50,1097,252,10,Intermediate Level,1.0,2014-11-08T02:21:54Z,Business Finance
488818,QuickBooks 2015 Training for Newbies,https://www.udemy.com/free-training-quickbooks-2015/,True,200,2506,21,76,Beginner Level,6.0,2015-05-11T23:16:54Z,Business Finance
610890,TRADING PSYCHOLOGY: Trading Mindset Mastery,https://www.udemy.com/trading-psychology-trading-mindset-mastery/,True,120,975,23,23,Intermediate Level,1.0,2015-09-30T18:57:45Z,Business Finance
638980,Option Trading: How to Adjust Delta-Neutral Strangles!,https://www.udemy.com/option-trading-selling-strangles/,True,145,1398,15,26,All Levels,1.5,2015-10-19T23:01:15Z,Business Finance
599684,Profitable binary option trading strategy,https://www.udemy.com/binaryoptions/,True,195,1096,24,24,All Levels,1.5,2015-10-29T00:34:09Z,Business Finance
332848,Tax Strategy: Financial Planning for Beginners,https://www.udemy.com/taxsavingstrategy/,True,200,1703,59,25,All Levels,2.0,2014-11-04T01:37:23Z,Business Finance
354324,Accounting 2 Simplified for You,https://www.udemy.com/accounting-2-simplified-for-you/,True,45,1446,23,27,Beginner Level,5.0,2014-12-09T08:31:40Z,Business Finance
379682,Project Funding Modelling (for Professionals),https://www.udemy.com/project-funding-modelling/,True,20,2736,3,8,All Levels,1.5,2014-12-29T09:00:17Z,Business Finance
319020,Investing: How I Consistently Beat The Stock Market,https://www.udemy.com/beat-the-stock-market/,True,200,2000,31,34,All Levels,4.5,2014-12-11T20:35:05Z,Business Finance
713258,Bookkeeping Basics: Understand the Fundamentals,https://www.udemy.com/bookkeeping-basics/,True,75,853,45,48,Beginner Level,4.5,2016-11-06T22:33:44Z,Business Finance
537884,Leasing - A Comprehensive Study (Professional Course Level),https://www.udemy.com/leasing-a-comprehensive-study/,True,20,3094,2,22,All Levels,3.5,2015-07-17T22:10:39Z,Business Finance
919906,Trading Options For Consistent Returns: Options Basics,https://www.udemy.com/trading-options-for-income/,False,0,4077,281,20,Beginner Level,1.5,2016-08-18T21:57:04Z,Business Finance
46010,TechniTrader Leading Hybrid Indicator Trading,https://www.udemy.com/leading-hybrid-indicator-trading/,True,20,4117,54,5,Intermediate Level,1.0,2013-04-04T21:36:10Z,Business Finance
777932,Financial modeling: Build a DCF equity valuation model,https://www.udemy.com/guide-to-do-a-step-by-step-discounted-cash-flow-valuation/,True,20,1369,17,31,All Levels,1.5,2016-03-06T21:33:58Z,Business Finance
773934,CryptoArbitrager: Bitcoin Trading Robot (no mining),https://www.udemy.com/cryptoarbitrager-trade-bitcoin-vs-litecoin-with-arbitrage-robot/,True,150,1224,42,14,All Levels,0.55,2016-03-23T21:13:52Z,Business Finance
221306,Accounting Is Easy (for Beginners),https://www.udemy.com/fundamentals-of-accountancy/,True,20,3870,12,90,All Levels,9.0,2014-05-20T18:13:38Z,Business Finance
830994,Non Directional Weekly Options Trading System - ETF & Emini,https://www.udemy.com/etf-stock-options-non-directional-weekly-trading-system/,True,200,897,22,21,All Levels,2.0,2016-05-24T15:43:06Z,Business Finance
723510,The Complete Position Trading Course: Position Trading Stock,https://www.udemy.com/position-trading-course/,True,45,1311,36,5,All Levels,1.0,2016-01-15T18:10:47Z,Business Finance
42643,Master Iron Condors - Double the credit for half the risk,https://www.udemy.com/iron-condor-options-trading-strategy/,True,60,1338,139,7,Expert Level,1.0,2013-03-02T13:27:41Z,Business Finance
411778,Basics of investing in Mutual Funds,https://www.udemy.com/mutualfundinvesting/,True,20,1589,26,42,Intermediate Level,1.5,2015-03-03T01:22:39Z,Business Finance
366514,A Value Investing Approach to the Stock Market,https://www.udemy.com/start-investing-the-right-way/,True,20,1189,12,15,All Levels,1.5,2015-02-19T20:40:23Z,Business Finance
471588,Learn how to INVEST for huge profits or make it big trading!,https://www.udemy.com/learn-how-to-invest-for-huge-profits-or-make-9k-day-trading/,True,50,701,12,37,All Levels,5.5,2015-06-19T22:49:13Z,Business Finance
390096,"How to Fund your Million Dollar Idea: Equity, Debt, Unfund",https://www.udemy.com/how-to-fund-your-million-dollar-idea-equity-debt-unfund/,True,50,1105,3,54,Intermediate Level,6.0,2015-02-11T06:52:30Z,Business Finance
607876,Mastering Candlestick Charting : High Probability Trading,https://www.udemy.com/mastering-candlestick-charting/,True,50,123,16,35,All Levels,2.0,2015-09-22T00:05:53Z,Business Finance
249950,Binary Options Course - Level 2,https://www.udemy.com/binary-options-course-level-2/,False,0,5874,207,9,Intermediate Level,2.0,2014-06-26T02:00:55Z,Business Finance
792216,Stock Technical Analysis with R,https://www.udemy.com/stock-technical-analysis-with-r/,True,50,354,32,49,All Levels,7.0,2016-03-18T20:46:05Z,Business Finance
45139,"Get to know the VIX Index (aka 'The Fear Index)""",https://www.udemy.com/vix-index/,True,60,727,64,9,All Levels,1.0,2013-03-08T11:42:48Z,Business Finance
692176,Apply finance concepts for smart project management,https://www.udemy.com/apply-finance-concepts-for-smart-project-management/,False,0,3465,161,24,Beginner Level,2.0,2016-02-23T21:05:46Z,Business Finance
1224262,Introduction to Futures Trading and Live Trade Demonstration,https://www.udemy.com/introduction-to-futures-trading-and-live-trading-futures/,True,60,54,4,6,Expert Level,0.7166666666666667,2017-05-24T14:16:09Z,Business Finance
598094,Crowdfunding to Win,https://www.udemy.com/crowdfunding-to-win/,True,40,627,15,15,All Levels,1.5,2015-09-23T22:16:35Z,Business Finance
40039,Comprehensive Forex Mastery Program,https://www.udemy.com/forex-mastery/,True,45,650,107,97,All Levels,10.0,2013-02-07T19:50:45Z,Business Finance
1266148,Preparation of Consolidated Financial Statements (Basic),https://www.udemy.com/preparation-of-consolidated-financial-statements-basic/,False,0,965,0,18,Intermediate Level,1.5,2017-06-28T20:37:13Z,Business Finance
791422,Succeed in Bonds Even if You Don't Know Where to Start,https://www.udemy.com/succeed-in-bonds-even-if-you-dont-know-where-to-start/,True,200,1113,6,8,All Levels,1.0,2017-02-03T04:34:07Z,Business Finance
352150,Learn to Trade for Profit: Ten Most Profitable Trading Rules,https://www.udemy.com/trading-stocks-successfully-ten-rules-of-successful-trading/,True,95,739,28,45,All Levels,2.0,2014-12-23T15:28:09Z,Business Finance
791436,Succeed in Lotto Even if You Don't Know Where to Start!,https://www.udemy.com/succeed-in-lotto-even-if-you-dont-know-where-to-start/,True,20,1201,12,18,All Levels,1.5,2017-05-11T22:19:28Z,Business Finance
537878,CFA Corporate Finance Level 2,https://www.udemy.com/advanced-capital-budgeting-techniques/,True,50,2474,6,128,All Levels,17.5,2015-07-07T20:35:21Z,Business Finance
923184,Pin Bars: The Most Powerful Forex Trading Signal,https://www.udemy.com/make-money-in-forex-using-pin-bars/,True,200,494,16,19,All Levels,1.0,2016-08-10T13:10:13Z,Business Finance
476256,Stock Options Trades Using Interactive Brokers,https://www.udemy.com/stock-options-trades-using-interactive-brokers/,True,95,1580,26,14,Intermediate Level,1.0,2015-09-07T20:21:39Z,Business Finance
552504,Introduction to Options - Strategies For Consistent Profits,https://www.udemy.com/introduction-to-options-start-trading-now/,True,40,617,44,55,All Levels,4.5,2015-08-16T22:14:02Z,Business Finance
537888,Risk in Forex Transactions - for CA / CS / CFA exams,https://www.udemy.com/forex-risks/,True,20,2235,3,9,All Levels,1.0,2015-09-29T17:27:02Z,Business Finance
385686,Basics of Business Statistics (College Level),https://www.udemy.com/statistics-for-accounting-and-finance-professionals/,True,20,2293,9,28,All Levels,2.0,2015-01-06T13:05:53Z,Business Finance
738900,"Trading Seasonal Price Patterns in Stocks, Futures, & Forex!",https://www.udemy.com/trading-seasonal-price-patterns-in-stocks-futures-forex/,True,200,1094,8,13,Beginner Level,2.0,2016-03-30T04:56:57Z,Business Finance
57415,Interpreting Financial Statements,https://www.udemy.com/financialstatements/,True,20,1449,29,23,Beginner Level,1.5,2013-06-06T21:50:57Z,Business Finance
155344,Introduction to Bookkeeping (Accounting),https://www.udemy.com/introduction-to-bookkeeping/,True,20,3251,10,59,Beginner Level,12.0,2014-01-31T20:40:36Z,Business Finance
42491,CREDIT SPREAD SURGERY - Bear Call and Bull Put Mastery ,https://www.udemy.com/advanced-credit-spreads/,True,60,607,55,16,Intermediate Level,2.0,2013-03-05T11:31:37Z,Business Finance
511952,Investment Banking: How to Land a Job on Wall Street,https://www.udemy.com/how-to-land-a-job-on-wall-street/,True,75,1218,30,63,All Levels,3.5,2015-06-11T19:09:17Z,Business Finance
530246,Learn To Invest In Index Funds and ETFs In 7 Easy Steps,https://www.udemy.com/invest-in-index-funds-and-etfs-in-7-easy-steps/,True,20,1132,33,18,All Levels,1.0,2015-07-20T23:48:08Z,Business Finance
862786,Financial modeling: Build a multiples valuation model,https://www.udemy.com/how-to-do-a-multiples-based-valuation-of-a-company/,True,20,656,17,20,All Levels,1.5,2016-05-30T18:00:22Z,Business Finance
165122,Trade Recap I - A Real Look at Futures Options Markets,https://www.udemy.com/d-levels-trade-recap-jan-17th-feb-5th-2014/,True,20,3339,4,11,Beginner Level,1.5,2014-02-17T09:22:13Z,Business Finance
530768,Advanced Stock Options for Serious Equity Investors!,https://www.udemy.com/bullet-proof-options-controlled-leverage-investing-secrets/,True,200,1271,23,7,Expert Level,1.5,2015-09-22T19:48:31Z,Business Finance
218416,Trading Binary Options for Fun and Profit,https://www.udemy.com/trading-binary-options-for-fun-and-profit/,True,20,1574,24,46,All Levels,2.0,2015-02-21T00:36:13Z,Business Finance
619296,CFA: Fast Track your career in Finance,https://www.udemy.com/cfapreparebetter/,True,20,1393,27,21,Beginner Level,2.0,2015-09-29T20:12:53Z,Business Finance
717278,How to be a Profitable Forex Trader,https://www.udemy.com/making-money-in-forex-market/,True,20,1029,13,7,All Levels,0.6833333333333333,2016-05-04T00:01:47Z,Business Finance
445916,Excel Dashboard - Interactive Excel Dashboard and Charts,https://www.udemy.com/interactive-charts-in-excel/,True,30,843,54,34,All Levels,3.0,2015-03-19T16:57:50Z,Business Finance
267984,Accounting 101: Learn Business Finance Forecasting in 60mins,https://www.udemy.com/cashflow-forecasting-made-easy-learn-it-in-40-mins/,True,95,1730,12,12,All Levels,1.5,2014-07-24T15:20:39Z,Business Finance
180362,The Securities Trade Lifecycle,https://www.udemy.com/the-securities-trade-lifecycle/,True,50,1182,110,22,All Levels,4.0,2014-03-12T13:40:53Z,Business Finance
364810,Double your Forex Account using the MAGIC MA trading robot,https://www.udemy.com/double-your-forex-account-using-the-magic-ma-robot/,True,65,1160,117,24,Intermediate Level,2.5,2014-12-10T21:45:30Z,Business Finance
692722,Technical Analysis 101: How to Profit During Market Crashes,https://www.udemy.com/profit-from-stock-market-crashes-the-short-selling-strategy/,True,95,1730,18,53,All Levels,2.0,2016-01-27T17:38:23Z,Business Finance
298558,Advanced Accounting for Investment Banking,https://www.udemy.com/advanced-accounting-for-investment-banking/,True,50,1260,80,38,Intermediate Level,4.0,2014-10-01T18:51:06Z,Business Finance
480752,Investing In Stocks With 10 Simple Rules,https://www.udemy.com/value-investing-rules/,True,95,871,79,59,All Levels,2.0,2015-06-16T21:35:07Z,Business Finance
637922,Venture Capital. What is it and Why it Matters to You!,https://www.udemy.com/venture-capital-sector-overview-what-is-it-and-why-it-matters-to-you/,True,50,1566,48,25,All Levels,2.5,2015-10-14T17:50:29Z,Business Finance
337320,Cash Flow Valuation: Develop Your Financial Literacy,https://www.udemy.com/financial-literacy-basics/,True,105,2987,23,19,All Levels,2.0,2014-12-22T13:39:16Z,Business Finance
876646,Direction-Independ Trading - Elite Forex Traders Strategy,https://www.udemy.com/direction-independ-trading-elite-traders-forex-strategy/,True,120,973,15,28,All Levels,2.5,2016-06-21T22:46:41Z,Business Finance
529424,How to Become a Financial Analyst from Scratch!,https://www.udemy.com/become-a-financial-analyst-from-scratch-n1/,True,40,2177,31,38,Beginner Level,5.0,2015-07-07T18:59:39Z,Business Finance
720814,First Steps to Trading the Forexmarkets : Technical Analysis,https://www.udemy.com/first-steps-to-trading-the-forexmarkets-technical-analysis/,True,35,1772,19,15,Beginner Level,3.5,2016-01-08T21:40:03Z,Business Finance
515326,Financial analysis: Compare performance of companies,https://www.udemy.com/financial-performance-analysis/,True,20,1850,40,20,All Levels,1.0,2015-06-01T20:09:03Z,Business Finance
1218552,Forex for Beginners: Easy Forex Trading for Beginners,https://www.udemy.com/forex-for-beginners-easy-forex-trading-for-beginners/,False,0,1780,32,9,Beginner Level,1.0,2017-05-18T16:48:46Z,Business Finance
851106,Investment Crowdfunding 101 (a.k.a Equity Crowdfunding),https://www.udemy.com/crowdfund-investing-101-the-basics-of-equity-crowdfunding/,False,0,4607,181,11,Beginner Level,0.5333333333333333,2016-05-17T00:43:59Z,Business Finance
429308,Read financial statements like a pro,https://www.udemy.com/read-financial-statements-in-5-minutes/,True,50,12,1,38,Intermediate Level,4.0,2015-03-02T23:49:35Z,Business Finance
302450,10 Numbers Every Business Owner Should Know,https://www.udemy.com/10-numbers-every-business-owner-should-know/,True,20,13,1,9,All Levels,1.0,2015-03-08T19:11:24Z,Business Finance
1117834,Learn How To Trade Gold In 2017,https://www.udemy.com/learn-how-to-trade-gold-in-2017/,True,200,2,1,16,All Levels,1.0,2017-04-06T04:59:32Z,Business Finance
190816,IAS 18 - Revenue,https://www.udemy.com/ias-18-revenue/,False,0,2571,32,23,All Levels,4.5,2014-03-29T14:10:31Z,Business Finance
244000,Forex Trading: The High ROI Forex Trading End of Day Course,https://www.udemy.com/the-high-roi-forex-trading-end-of-day-course/,True,125,8,1,19,Intermediate Level,2.5,2014-06-16T11:02:39Z,Business Finance
429482,Fundraise the Simplified Way: A Crowdfunding Blueprint,https://www.udemy.com/fundraise-the-simplified-way-a-crowdfunding-blueprint/,True,35,7,1,19,All Levels,1.0,2015-02-23T04:37:14Z,Business Finance
831940,Fundamentals of Accounting for Business Owners,https://www.udemy.com/fundamentals-of-accounting-for-business-owners/,True,20,217,0,47,Beginner Level,2.5,2017-02-06T16:35:44Z,Business Finance
833770,Practical Financial Statement Analysis,https://www.udemy.com/practical-financial-statement-analysis/,True,75,22,5,45,All Levels,4.5,2017-05-01T23:22:07Z,Business Finance
658764,Forex Management - Detailed Study for CA / CS / CFA Exams,https://www.udemy.com/international-finance-a-comprehensive-study/,True,50,131,2,38,All Levels,3.0,2015-11-03T18:54:45Z,Business Finance
707224,Financial Statement Review 101: How to Find Errors,https://www.udemy.com/financial-statement-review-101-how-to-find-errors/,True,30,5,2,15,Beginner Level,2.0,2017-02-03T16:23:16Z,Business Finance
64739,Professional Risk Manager (PRM) Certification: Level 1,https://www.udemy.com/professional-risk-manager-prm-certification-level-1/,True,50,116,10,51,All Levels,24.0,2013-07-23T20:18:35Z,Business Finance
907716,International Tax - Tax Beyond boundaries,https://www.udemy.com/international-tax-course-intermediate-level/,True,100,27,6,235,All Levels,19.5,2016-09-06T15:03:27Z,Business Finance
1030976,The Complete Financial Statement Analysis Course,https://www.udemy.com/the-complete-financial-statement-analysis-course/,True,150,912,12,37,Beginner Level,3.0,2017-01-11T02:52:19Z,Business Finance
722682,Advanced Excel functions,https://www.udemy.com/advanced-excel-functions-to-analyze-large-data/,True,20,1964,47,15,All Levels,1.5,2016-01-12T20:03:45Z,Business Finance
1122146,Penny Stocks Value & Chart Pattern Trading (2 Course Bundle),https://www.udemy.com/basics-investing-penny-stocks-beginners-hot-best-penny-stocks-trading/,True,200,1033,2,31,Beginner Level,1.5,2017-02-22T21:36:08Z,Business Finance
808506,Candlestick Analysis For Professional Traders,https://www.udemy.com/testing-candlesticks/,True,95,913,117,48,Expert Level,2.0,2016-05-18T16:04:14Z,Business Finance
673016,Build A Career In Forex Trading- Learn Fundamental Analysis,https://www.udemy.com/build-a-career-in-forex-trading-learn-fundamental-analysis/,True,200,2092,77,52,All Levels,3.5,2015-11-23T20:42:22Z,Business Finance
358062,Financial Modeling: Build a Complete DCF Valuation Model,https://www.udemy.com/learn-how-to-value-a-company-and-build-a-dcf-model/,True,95,2240,185,44,All Levels,2.5,2014-12-03T21:41:25Z,Business Finance
372234,Hands-on Financial Modeling (With 6 Excel Templates),https://www.udemy.com/financial-modelling-in-excel/,True,30,4601,38,14,Intermediate Level,4.0,2015-04-02T17:51:17Z,Business Finance
822514,CAIIB Advanced Bank Management (Part I),https://www.udemy.com/statistics-regression-analysis/,True,25,2953,20,211,All Levels,20.5,2016-04-15T18:43:40Z,Business Finance
1045726,Stock Market investment:Non financial fundamental analysis,https://www.udemy.com/stock-market-investmentnon-financial-fundamental-analysis/,True,125,1091,4,29,Beginner Level,3.0,2016-12-20T14:36:59Z,Business Finance
943426,Learn How to Play CashFlow Game,https://www.udemy.com/learn-how-to-play-cashflow-game/,True,35,1459,11,26,Beginner Level,1.0,2016-10-17T21:16:49Z,Business Finance
46927,Basics of Business Finance,https://www.udemy.com/basics-of-business-finance/,True,30,4855,64,24,Beginner Level,4.0,2013-03-22T17:42:18Z,Business Finance
567070,Accounting Made Easy 2,https://www.udemy.com/accounting-made-easy-2/,True,50,4034,8,40,Intermediate Level,3.0,2015-09-16T18:57:23Z,Business Finance
867440,"Bitcoin: el futuro del dinero, hoy",https://www.udemy.com/bitcoin-el-futuro-del-dinero-hoy/,True,200,57,22,19,Intermediate Level,3.0,2016-06-06T00:06:37Z,Business Finance
501996,Aprende a invertir practicando,https://www.udemy.com/aprende-a-invertir-practicando/,True,35,26,9,42,All Levels,2.0,2015-05-28T18:12:44Z,Business Finance
1103590,Trading con retrocesos de Fibonacci,https://www.udemy.com/trading-con-retrocesos-de-fibonacci/,True,25,14,4,15,All Levels,2.5,2017-02-07T15:34:03Z,Business Finance
1172370,Mit Finanzwissen zu besserem Unternehmertum,https://www.udemy.com/mit-finanzwissen-zu-besserem-unternehmertum/,True,50,49,3,23,Beginner Level,3.0,2017-05-10T15:10:34Z,Business Finance
673702,Como hacer empresa en 10 sesiones prácticas,https://www.udemy.com/finanzas-para-principiantes/,True,20,11,2,10,Intermediate Level,0.5,2015-11-19T18:20:45Z,Business Finance
821108,المحاسبة للإداريين و غير المحاسبين,https://www.udemy.com/accounting-for-non-accountants-trendcast/,True,20,9,3,17,Beginner Level,0.7166666666666667,2016-04-23T22:57:42Z,Business Finance
863998,株式投資で本当のファンダメンタル分析ができるようになる,https://www.udemy.com/jun-sakai-trading-course3/,True,20,91,7,30,All Levels,2.0,2016-06-21T17:59:58Z,Business Finance
822926,Curso de Trading práctico basado en casos reales,https://www.udemy.com/trading-practico/,True,20,44,6,55,All Levels,10.0,2016-08-29T16:36:38Z,Business Finance
666254,Curso Avanzado de Trading,https://www.udemy.com/curso-avanzado-de-trading/,True,125,106,11,100,All Levels,20.5,2015-11-28T06:25:44Z,Business Finance
421546,สอนเทรดไบนารี่ อ๊อฟชั่นอย่างง่าย,https://www.udemy.com/binary-options-for-thai/,False,0,2079,258,25,All Levels,2.0,2015-02-15T12:17:56Z,Business Finance
518886,MQL4 Tutorial Golden Goose,https://www.udemy.com/mql4-tutorial-golden-goose-trading-tutorial/,True,20,135,5,12,Beginner Level,1.5,2015-06-07T19:32:46Z,Business Finance
868128,Análise de Concessão de Crédito,https://www.udemy.com/estacio-analise-de-concessao-de-credito/,True,20,31,11,20,All Levels,10.5,2016-06-29T20:21:24Z,Business Finance
986034,Technical Analysis Using Elliott Wave Theory,https://www.udemy.com/technical-analysis-using-elliott-wave-theory/,True,60,217,7,16,All Levels,1.0,2016-11-01T19:30:11Z,Business Finance
42642,The Basics Of Volume Analysis,https://www.udemy.com/volume-analysis-basis/,True,60,611,57,13,All Levels,1.5,2013-02-24T13:23:14Z,Business Finance
471428,Crash Course on Cost of Capital and Capital Structuring,https://www.udemy.com/crash-course-on-cost-of-capital-and-capital-structuring/,False,0,5007,41,19,All Levels,3.0,2015-04-13T17:52:57Z,Business Finance
600206,Business Accounting Made Easy,https://www.udemy.com/accounting-level-1-course/,True,50,1168,5,26,Beginner Level,5.5,2015-09-05T05:15:07Z,Business Finance
283780,Build a DCF Model from Scratch,https://www.udemy.com/build-a-dcf-model/,False,0,4653,395,5,All Levels,0.5166666666666666,2014-09-14T21:13:26Z,Business Finance
52118,"Multiply your returns using 'Value Investing"",https://www.udemy.com/multiply-your-returns-using-value-investing/,true,20,1942,19,63,All Levels,4.5 hours,2015-07-23T00:08:33Z
874284,Weekly Forex Analysis by Baraq FX""",https://www.udemy.com/weekly-forex-analysis-by-baraq-adnan/,False,0,3035,12,14,All Levels,1.5,2016-06-20T21:02:36Z,Business Finance
42640,Technical Analysis - A practical approach for trade entry,https://www.udemy.com/learn-technical-analysis/,True,60,454,52,15,Expert Level,2.0,2013-02-24T04:47:36Z,Business Finance
767256,Mastering Technical Analysis : Maximizing Trading Profits,https://www.udemy.com/mastering-technical-analysis/,True,60,325,14,62,All Levels,5.0,2016-03-04T15:33:46Z,Business Finance
843854,The Complete Guide to Professional Trading with Elliott Wave,https://www.udemy.com/practical-trading-trade-stocks-forex-with-elliott-wave/,True,115,228,49,43,All Levels,4.5,2016-05-11T16:40:05Z,Business Finance
247558,A Complete Guide to Becoming a Trader on the Forex Market,https://www.udemy.com/make-a-living-with-forex/,True,25,562,11,15,All Levels,1.0,2014-06-28T05:52:41Z,Business Finance
696616,Stock Market for Beginners - Complete Starter Toolkit,https://www.udemy.com/complete-stock-market-starter-toolkit-for-beginners/,True,120,577,45,82,Intermediate Level,6.5,2016-03-31T18:22:30Z,Business Finance
205810,Beginners Binary Options Course,https://www.udemy.com/beginners-binary-options-trading-course/,False,0,10540,799,14,Beginner Level,1.5,2014-04-27T06:58:27Z,Business Finance
507486,Technical Analysis 101: Secrets of Trading Revealed,https://www.udemy.com/secrets-of-stock-market-trading-revealed/,True,150,912,27,81,All Levels,2.5,2015-07-16T22:29:32Z,Business Finance
965306,Forex: What's a Trend and When it is Strong and Reliable,https://www.udemy.com/forex-whats-a-trend-strong-and-reliable/,False,0,2955,43,30,Intermediate Level,2.0,2016-10-05T15:39:55Z,Business Finance
1128662,Volatility Trading Analysis with R,https://www.udemy.com/volatility-trading-analysis-with-r/,True,50,190,13,45,Expert Level,6.0,2017-03-06T21:26:55Z,Business Finance
1068986,How To Profit From Stock Market Volatility,https://www.udemy.com/how-to-trade-stock-market-volatility/,False,0,1736,36,11,All Levels,0.6,2017-01-23T18:23:58Z,Business Finance
627706,Awaken the Accountant in You | Master the Accounting Basics,https://www.udemy.com/enlightened-accountant-master-accounting-basics-in-no-time/,True,35,1135,10,16,Beginner Level,1.5,2015-11-24T23:55:22Z,Business Finance
255280,WE WILL PAY YOU TO TRADE WITH US,https://www.udemy.com/trade-forex-the-professional-way-by-trading-live-with-us/,True,20,2101,51,11,All Levels,2.0,2014-08-18T21:09:54Z,Business Finance
628944,Situational Trading: Proven Option Strategy for any Scenario,https://www.udemy.com/situationaltrading/,True,200,1048,11,16,All Levels,1.5,2015-11-06T19:01:58Z,Business Finance
537886,Portfolio Management for CA / CS / CFA exams,https://www.udemy.com/portfolio-management-quantitative-techniques/,True,20,1740,5,8,All Levels,1.0,2015-07-21T19:24:17Z,Business Finance
517938,Algorithmic Trading in MATLAB: WFAToolbox App GUI (Finance),https://www.udemy.com/algorithmic-trading-with-matlab-wfatoolbox/,True,20,1749,41,21,All Levels,1.0,2015-06-23T22:37:31Z,Business Finance
779678,Finding an Unlimited Amount of Investors,https://www.udemy.com/accredited-investors/,True,80,1187,6,6,All Levels,0.7,2016-03-03T22:25:41Z,Business Finance
494330,Bookkeeping Made Easy,https://www.udemy.com/accounting-made-easy/,True,70,1263,21,18,Beginner Level,1.5,2015-07-14T00:00:48Z,Business Finance
153926,BITCOIN VISUALLY. Part I.,https://www.udemy.com/bitcoin-visually-part-i/,True,50,115,6,31,Beginner Level,4.0,2014-03-16T14:36:01Z,Business Finance
806122,Learn and Master the Basics of Finance,https://www.udemy.com/finance-101/,True,20,43,17,39,Beginner Level,3.0,2016-09-25T20:37:51Z,Business Finance
725658,FOREX : LearnTo Trade the Improved ( Advanced ) Patterns,https://www.udemy.com/forex-learnto-trade-the-improved-advanced-patterns/,True,75,55,2,27,All Levels,5.5,2016-01-13T03:15:11Z,Business Finance
1032234,Mastering the Market : (Technical Analysis + Candlestick),https://www.udemy.com/mastering-the-market-volume-i/,True,90,18,7,97,All Levels,7.0,2016-12-16T15:01:34Z,Business Finance
996542,Mastering Countertrend Trading : High Profit Trading Pattern,https://www.udemy.com/mastering-countertrend-trading/,True,40,14,5,11,All Levels,1.0,2016-10-29T19:15:04Z,Business Finance
756520,Exam 1 Review - Managerial Accounting (U of H),https://www.udemy.com/exam-1-review-mgr-acct/,True,30,47,9,22,Beginner Level,2.0,2016-02-11T16:23:46Z,Business Finance
768028,* An Integrated Approach to the Fundamentals of Accounting,https://www.udemy.com/an-integrated-approach-to-the-fundamentals-of-accounting/,True,200,134,14,123,All Levels,5.5,2016-03-15T17:23:07Z,Business Finance
73030,Get to grips with the CFA calculator,https://www.udemy.com/cfa-calculator/,True,20,153,8,14,All Levels,1.5,2013-08-05T16:02:15Z,Business Finance
476880,Financial Model Fundamentals-Learn the Essential Skills,https://www.udemy.com/financial-model-fundamentals-learn-the-essential-skills/,True,75,47,5,27,All Levels,2.5,2015-06-01T20:58:11Z,Business Finance
773060,Forex: Economic News Trading,https://www.udemy.com/forex-economic-news-trading/,True,25,42,14,11,All Levels,0.6833333333333333,2016-02-29T18:44:03Z,Business Finance
552058,Analyze Real Estate Investments | Financial Modeling,https://www.udemy.com/real-estate-financial-modeling/,True,20,120,18,21,All Levels,2.0,2015-07-21T21:45:17Z,Business Finance
509512,Forex For Beginners - A Guide To Currency Trading,https://www.udemy.com/forex-for-beginners-a-guide-to-currency-trading/,True,20,68,10,23,Beginner Level,0.5,2015-05-25T18:19:21Z,Business Finance
497236,Raise Your Credit Score to 800 Or More....,https://www.udemy.com/raise-your-credit-score-to-800-or-more/,True,50,844,33,40,All Levels,2.0,2015-07-12T19:05:43Z,Business Finance
471556,Financial Management Budgeting Techniques,https://www.udemy.com/learn-cash-budgeting-techniques/,True,20,2045,3,10,All Levels,2.0,2015-04-12T16:28:31Z,Business Finance
403602,Forex Killing Divergence - How to trade with precision,https://www.udemy.com/forex-killing-divergence-how-to-trade-with-precision/,True,20,1168,38,11,All Levels,0.6833333333333333,2015-01-25T18:41:28Z,Business Finance
326948,Working Capital Management for CA / CFA / CPA Exams,https://www.udemy.com/working-capital-management/,True,25,2342,9,33,Intermediate Level,3.5,2014-10-25T13:00:19Z,Business Finance
537896,Risk Analysis - Capital Budgeting for CA / CS / CFA exams,https://www.udemy.com/risk-analysis-in-capital-budgeting/,True,20,2268,4,47,All Levels,5.5,2015-07-07T20:21:29Z,Business Finance
797762,Corporate Finance 101: Financial Statement Analysis & Ratios,https://www.udemy.com/corp-fin-101-fsa-ratios/,True,50,967,16,43,All Levels,8.0,2016-03-20T21:39:38Z,Business Finance
674350,Mastering Futures Options for Beginners - Your Top 5 Plays!,https://www.udemy.com/mastering-futures-options-for-beginners-your-top-10-plays/,True,200,1185,10,33,Beginner Level,2.5,2016-02-02T20:35:37Z,Business Finance
439362,"Professional Options Trading, Simplified",https://www.udemy.com/optionstrading/,True,200,631,49,21,All Levels,2.0,2015-04-17T21:59:15Z,Business Finance
42634,"Advanced Options Concepts - Probability, Greeks, Simulation",https://www.udemy.com/advanced-options-analysis/,True,60,968,81,10,Intermediate Level,2.0,2013-02-27T13:05:27Z,Business Finance
494800,Accounting Basics - A Complete Study,https://www.udemy.com/fundamentals-of-accounting-a-complete-study/,True,180,1132,70,332,All Levels,29.0,2015-05-06T23:27:45Z,Business Finance
1222836,Case Studies in Macro Economics,https://www.udemy.com/case-studies-in-macro-economics/,True,50,114,1,22,Beginner Level,4.0,2017-05-25T17:00:12Z,Business Finance
990440,My Forex Strategy that win consistently over and over,https://www.udemy.com/my-forex-strategy-that-help-me-consistently-winning/,True,200,204,23,9,Intermediate Level,1.5,2016-10-29T14:51:53Z,Business Finance
109988,Understand Banks & Financial Markets ,https://www.udemy.com/the-banking-fundamentals-course/,True,30,1548,24,34,All Levels,3.0,2013-12-19T21:19:37Z,Business Finance
815482,Stock Technical Analysis with Python,https://www.udemy.com/stock-technical-analysis-with-python/,True,50,409,35,46,All Levels,8.0,2016-04-12T00:40:03Z,Business Finance
569436,How to Become an Accountant from scratch!,https://www.udemy.com/the-udemy-case-study/,True,40,1169,7,15,Beginner Level,3.0,2015-08-20T20:24:00Z,Business Finance
803664,How to invest in Gold,https://www.udemy.com/howtoinvestingold/,True,50,249,14,39,Beginner Level,2.5,2016-06-14T17:10:19Z,Business Finance
213154,Automate Your Finances,https://www.udemy.com/automate-your-personal-finances/,True,20,690,17,21,Beginner Level,1.0,2014-05-08T23:09:32Z,Business Finance
484132,MBA Accounting and Finance for Managers(Paper MS04 of IGNOU),https://www.udemy.com/dividend-decision-a-comprehensive-study/,True,150,1340,4,272,All Levels,26.0,2015-07-19T19:43:52Z,Business Finance
640062,Accounting Made Easy: A Quick Guide to Financial Accounting,https://www.udemy.com/accounting-made-easy-a-quick-guide-to-financial-accounting/,True,95,274,41,18,All Levels,1.5,2015-10-26T23:22:09Z,Business Finance
363404,Futures/Commodity Training (Basics),https://www.udemy.com/commodity/,False,0,4863,202,6,Beginner Level,1.5,2015-02-07T07:04:07Z,Business Finance
454724,Cost Accounting Marginal Costing Theory and Practice,https://www.udemy.com/marginal-costing-theory-and-practice/,True,20,1923,4,31,All Levels,2.5,2015-03-24T19:07:08Z,Business Finance
702278,The Big Volatility Short: The Best Trade On Wall Street!,https://www.udemy.com/the-big-volatility-short/,True,200,224,35,16,All Levels,1.5,2016-04-25T16:25:53Z,Business Finance
323196,Master Finance in Three Hours,https://www.udemy.com/basic-finance-for-startups-smes-quick-clear-practical/,True,20,721,12,29,Beginner Level,3.0,2014-10-28T20:48:49Z,Business Finance
1225686,Learn Options on Futures for Hedging Options and Stocks,https://www.udemy.com/learn-options-on-futures-for-hedging-options-and-stocks/,True,60,51,2,6,Expert Level,0.7,2017-05-23T22:23:38Z,Business Finance
443584,Option selling trading as income source. Beginners friendly,https://www.udemy.com/option-trading/,True,195,1276,46,61,All Levels,6.0,2015-04-06T17:34:49Z,Business Finance
1034074,Introduction to Value Growth Investing,https://www.udemy.com/introduction-to-value-growth-investing/,False,0,2768,83,10,All Levels,1.0,2016-12-20T16:08:26Z,Business Finance
1209694,Become A Forex Trader - Forex trading like a professional,https://www.udemy.com/become-a-forex-trader/,False,0,1735,31,19,All Levels,2.5,2017-05-28T14:35:47Z,Business Finance
418732,Hedge Fund Trading System,https://www.udemy.com/hedge-fund-trading-system/,False,0,8985,584,12,All Levels,1.0,2015-03-06T01:11:18Z,Business Finance
757450,Bulletproof Personal Finance: Expert Asset Allocation,https://www.udemy.com/bulletproof-personal-finance-expert-asset-allocation/,True,45,1119,22,18,All Levels,1.0,2016-02-10T04:57:32Z,Business Finance
403468,Financial Accounting: The Complete Introductory Crash Course,https://www.udemy.com/university-level-introduction-to-financial-accounting/,True,100,2591,44,69,All Levels,10.0,2015-01-26T20:09:29Z,Business Finance
761808,Learn About Trading Options from a real wallstreet trader,https://www.udemy.com/learn-about-trading-options-from-a-former-stockbroker/,True,20,1046,17,12,All Levels,1.0,2016-02-21T22:40:55Z,Business Finance
614510,Forex Rate -Why it fluctuates -for CA / CMA / CS / CFA Exams,https://www.udemy.com/forex-rate-parity-theories/,True,20,2239,4,7,All Levels,1.0,2015-09-20T20:25:11Z,Business Finance
519776,How to Build a Massive Stock Portfolio from Zero!,https://www.udemy.com/how-to-build-your-million-dollar-stock-portfolio-from-zero/,True,200,1882,51,129,All Levels,11.0,2015-07-20T23:07:38Z,Business Finance
805336,Introductory Forex Trading Course,https://www.udemy.com/introductory-forex-trading-course/,False,0,5931,158,15,Beginner Level,3.5,2016-05-04T22:34:45Z,Business Finance
828254,Budgeting Hacks to Build Wealth!,https://www.udemy.com/budgeting-wealth/,False,0,4931,154,7,Beginner Level,0.5333333333333333,2016-05-31T15:10:45Z,Business Finance
471440,Accounting and Finance for Bankers - A Comprehensive Study,https://www.udemy.com/crash-course-on-financial-management/,True,180,3056,9,316,All Levels,24.5,2015-04-10T19:24:28Z,Business Finance
478598,Forex Prep Academy for Beginners-Real trades!,https://www.udemy.com/forex-prep-academy-for-beginners/,True,75,1303,21,44,Beginner Level,3.0,2015-06-19T15:22:42Z,Business Finance
394636,Accounting for Deferred Taxes (Professional Course Level),https://www.udemy.com/accounting-for-deferred-taxes/,True,25,2924,6,11,All Levels,1.5,2015-01-15T13:19:33Z,Business Finance
512004,TRADING TRUTHS,https://www.udemy.com/trading-truths/,True,50,1405,14,27,All Levels,2.0,2015-06-12T17:34:50Z,Business Finance
1194426,The Binary Institute - Introductory Course in Binary Options,https://www.udemy.com/the-binary-institute-introductory-course-in-binary-options-trading/,False,0,1121,12,6,All Levels,1.0,2017-04-27T23:49:48Z,Business Finance
538540,Forex Trading vs Option Trading,https://www.udemy.com/trading-excellence/,True,95,1776,14,29,All Levels,2.5,2015-07-08T21:09:43Z,Business Finance
406922,How to Invest in Stocks + Billionaire Investing Tips,https://www.udemy.com/how-to-invest-in-stocks-warren-buffett/,True,40,1643,18,19,All Levels,2.0,2015-07-01T20:43:10Z,Business Finance
743914,Value Investing For Beginners,https://www.udemy.com/value-investing-for-beginners-y/,True,100,801,48,25,Beginner Level,2.5,2016-05-11T17:20:38Z,Business Finance
419308,TRADING TACTICS,https://www.udemy.com/trading-tactics/,True,145,951,25,62,All Levels,6.0,2015-02-13T20:19:58Z,Business Finance
542028,MQL4 Tutorial Bootcamp - Trading Robot Coding in Metatrader4,https://www.udemy.com/mql4-tutorial-bootcamp-trading-robot-coding-in-metatrader4/,True,30,1278,33,23,Beginner Level,0.7166666666666667,2015-07-02T21:57:04Z,Business Finance
482534,Ultimate Retirement: Build Your Own Dynamic Retirement Plan,https://www.udemy.com/retirement-master-course-create-a-retirement-income-to-last/,True,50,1184,15,37,All Levels,6.0,2015-07-28T00:45:02Z,Business Finance
716136,build a solid foundation for trading options,https://www.udemy.com/option-basics-to-be-profitable-trader/,True,20,1115,8,8,All Levels,1.0,2016-05-26T21:17:14Z,Business Finance
737514,Forex Scam: Avoid the scam today,https://www.udemy.com/forex-secrets/,True,20,1086,27,28,All Levels,2.0,2016-02-05T00:04:50Z,Business Finance
471446,Cost Accounting Crash Course,https://www.udemy.com/crash-course-on-cost-accounting/,True,20,3730,11,17,All Levels,2.5,2015-04-10T21:01:47Z,Business Finance
920424,Option Trading for Rookies: Basic Option Strategies,https://www.udemy.com/basic-option-strategies-trading-vertical-options/,True,95,810,27,61,All Levels,2.5,2016-08-25T18:10:44Z,Business Finance
49886,Business Analysis: Working with Use Cases,https://www.udemy.com/usecases/,True,90,2338,224,5,All Levels,1.5,2013-04-17T19:33:22Z,Business Finance
292462,Learn to Raise the Funds You Need via Crowdfunding,https://www.udemy.com/thecrowdfundedkit/,True,20,3403,29,70,All Levels,8.0,2014-09-19T20:38:16Z,Business Finance
211874,Business finances,https://www.udemy.com/business-finances-learn-about-business-loans-debt-credit/,True,75,4695,7,20,Beginner Level,1.0,2014-05-07T01:51:09Z,Business Finance
754028,Financial Accounting - A Brief Introduction,https://www.udemy.com/accounting-in-less-then-one-hour/,False,0,17847,1440,17,Beginner Level,1.0,2016-02-24T14:53:28Z,Business Finance
546924,Trading Economic Indicators - Complete Trading System,https://www.udemy.com/hacking-trading-through-economic-indicators/,True,50,2692,25,25,Beginner Level,1.5,2015-09-17T18:47:54Z,Business Finance
105972,Foundation of Options Trading and Investing,https://www.udemy.com/options-trading-course-australia/,True,20,6374,21,14,All Levels,1.0,2013-10-16T04:41:28Z,Business Finance
556068,Option Trading - How To Earn If You Can't Predict The Market,https://www.udemy.com/option-trading-how-to-earn/,True,145,2305,19,30,All Levels,1.5,2015-07-22T19:02:23Z,Business Finance
1053272,The Financial Analyst Skills Training (FAST) course 2017,https://www.udemy.com/the-financial-analyst-skills-training-fast-course-2017/,True,100,589,31,138,All Levels,10.0,2017-01-02T17:44:17Z,Business Finance
1273896,Covered Calls - Powerful Income Strategy for Stock Traders,https://www.udemy.com/covered-calls-income-strategy-for-stock-traders/,True,60,22,0,8,Beginner Level,1.0,2017-07-03T15:13:33Z,Business Finance
317572,Accounting 1 Simplified for You,https://www.udemy.com/accounting-1-simplified-for-you/,True,45,2490,95,13,Beginner Level,3.0,2014-11-10T03:28:26Z,Business Finance
738910,[Value Investing] Where White People Keep Their Money,https://www.udemy.com/where-white-people-keep-their-money/,True,200,2715,70,20,Expert Level,4.0,2016-05-25T21:04:41Z,Business Finance
1015274,How to Start Investing: Made Simple and Easy,https://www.udemy.com/how-to-start-investing-made-simple-and-easy/,True,200,1506,12,12,All Levels,1.0,2016-11-25T04:52:51Z,Business Finance
934574,Basics of Commerce A Complete Study,https://www.udemy.com/basics-of-commerce-a-complete-study/,True,150,2197,4,105,All Levels,5.5,2016-12-21T16:30:33Z,Business Finance
1110470,The Passive Investing Blueprint - Build Wealth Passively,https://www.udemy.com/how-to-start-passive-investing-in-1-day/,True,200,338,32,66,All Levels,3.5,2017-03-08T22:37:44Z,Business Finance
988804,7 Steps: Your Introduction to Trading,https://www.udemy.com/7-steps-your-introduction-to-trading/,True,25,1076,22,176,Beginner Level,5.0,2016-11-04T22:07:32Z,Business Finance
529718,Forex - Elliott Wave Theory with Fibonacci. ,https://www.udemy.com/forex-strategy-elliott-wave-theory-with-fibonacci/,True,20,2769,54,32,All Levels,1.5,2015-06-19T22:06:07Z,Business Finance
998872,The Actuarial Profession: Basic Sciences and Principles,https://www.udemy.com/actuarial-intro-eng/,True,25,1531,6,7,Beginner Level,0.5833333333333334,2016-11-20T20:47:37Z,Business Finance
1023670,Investing in stocks: Avoid stock market loss,https://www.udemy.com/avoid-investment-lossesforecast-the-next-recession/,True,125,1136,12,13,Beginner Level,1.0,2016-11-29T19:05:57Z,Business Finance
571394,QuickBooks Online: Complete Guide & Certification tips,https://www.udemy.com/learn-quickbooks-online-qbo-with-hector-garcia-and-friends/,True,50,2187,218,91,All Levels,13.0,2015-08-03T17:46:24Z,Business Finance
637176,Build Financial Models & Value Companies The Easy Way,https://www.udemy.com/build-basic-financial-models-valuation-companies-the-easy-way/,True,20,1609,137,18,All Levels,1.0,2015-10-13T00:45:13Z,Business Finance
677802,Adventure Capital: How to pay off debt ,https://www.udemy.com/how-to-pay-off-debt/,True,20,2895,56,14,Beginner Level,1.0,2015-11-23T21:19:00Z,Business Finance
1084642,Chart Patterns Trading Demystified,https://www.udemy.com/stock-chart-patterns-forecasting-explosive-gains-technical-analysis/,True,200,1023,8,29,All Levels,2.5,2017-02-08T03:49:44Z,Business Finance
739390,Financial Planning & Analysis: Building a Company's Budget,https://www.udemy.com/financial-planning-analysis-building-a-companys-budget/,True,150,1988,137,27,All Levels,1.5,2016-06-15T23:45:51Z,Business Finance
1134864,Simple things you must know before start FOREX (OFFER),https://www.udemy.com/forex-simple-things/,True,200,1053,20,15,Beginner Level,0.7333333333333333,2017-03-10T22:11:34Z,Business Finance
489146,Practical Finance,https://www.udemy.com/practical-finance/,True,20,4497,281,11,All Levels,1.0,2015-07-14T18:14:16Z,Business Finance
910650,Forex Trading: Comprehensive & Concise Forex Trading Course,https://www.udemy.com/forex-trading-comprehensive-concise-forex-trading-course/,True,160,2379,33,44,All Levels,3.5,2016-08-06T00:52:21Z,Business Finance
1079040,Leaps Options Trading System - Diagonal Leaps Options Spread,https://www.udemy.com/leaps-options-trading-system-diagonal-leaps-options-spread/,True,200,993,19,16,All Levels,1.0,2017-01-19T19:09:29Z,Business Finance
109622,Finance - Ratios Analysis & Interpretations,https://www.udemy.com/financial-ratios/,True,30,10338,52,41,Beginner Level,2.5,2013-10-23T18:34:25Z,Business Finance
881378,Forex Trading - Learn to Trade From Scratch!,https://www.udemy.com/forex-trading-ultimate-course-to-get-you-started/,True,20,1423,103,37,Beginner Level,1.5,2016-06-19T14:56:45Z,Business Finance
474150,Technical Analysis tools for Stocks and Options trading,https://www.udemy.com/technical-analysis-tools-for-stock-trading-and-options-trading/,True,40,3555,89,11,All Levels,1.5,2015-04-12T18:31:07Z,Business Finance
1046724,Quantitative Trading Analysis with R,https://www.udemy.com/quantitative-trading-analysis-with-r/,True,50,567,40,53,All Levels,7.5,2016-12-22T18:24:55Z,Business Finance
1095116,Penny Stocks King: How 2 really Trade Penny Stocks (6 Hours),https://www.udemy.com/charting-for-penny-stocks-technical-analysis-best-penny-stocks-buy/,True,200,1085,17,48,All Levels,6.0,2017-02-03T16:44:02Z,Business Finance
233900,Get Started With Penny Stocks -Step by Step Guide to Trading,https://www.udemy.com/trading-penny-stocks-advanced-strategies/,True,200,7159,61,18,All Levels,2.0,2014-06-02T03:34:56Z,Business Finance
116128,CPA 101: How To Master Affiliate Marketing In No Time,https://www.udemy.com/cpa-marketing-101/,True,100,11517,92,21,All Levels,1.5,2013-11-09T21:46:52Z,Business Finance
1249164,Corporate Internal Controls and Fraud Controls,https://www.udemy.com/corporate-internal-controls-fraud-controls/,True,50,1,0,12,Intermediate Level,2.0,2017-06-29T17:27:52Z,Business Finance
877106,"Forex trading tactics, that work!",https://www.udemy.com/forex-trading-tactics-that-work/,True,20,10,1,5,Beginner Level,0.6,2016-06-16T20:23:51Z,Business Finance
65105,Professional Risk Manager (PRM) Certification: Level 2,https://www.udemy.com/professional-risk-manager-prm-certification-level-2/,True,50,41,1,55,All Levels,7.5,2013-07-23T20:24:14Z,Business Finance
889066,Trading Options Basics,https://www.udemy.com/trading-options-basics/,True,200,8,0,8,Beginner Level,1.5,2016-07-01T03:13:22Z,Business Finance
28172,Practical Trading on Financial Futures & Options Markets,https://www.udemy.com/getting-started-with-option-spreads/,True,50,43,0,25,Beginner Level,4.0,2012-11-12T15:01:43Z,Business Finance
257996,Bookkeeping made simple,https://www.udemy.com/bookkeeping-essentials/,True,30,23,1,19,Beginner Level,1.0,2015-02-13T12:50:30Z,Business Finance
811534,The Visual Learning Basic Accounting Course,https://www.udemy.com/the-visual-learning-basic-accounting-course/,True,20,9,0,6,Beginner Level,1.0,2016-05-03T21:14:25Z,Business Finance
95176,ChalkTalk: Financial Accounting,https://www.udemy.com/chalk-talk-accounting/,True,20,25,1,108,All Levels,3.5,2014-01-23T22:33:18Z,Business Finance
880564,The 7 fundamentals to Successful Cashflow Management,https://www.udemy.com/successful-cashflow-management/,True,25,7,0,12,All Levels,1.0,2016-07-11T17:22:40Z,Business Finance
613944,How to trade options,https://www.udemy.com/how-to-trade-options/,True,45,12,1,9,Intermediate Level,0.7166666666666667,2015-09-20T21:45:48Z,Business Finance
1208148,Coaching Course:Investment Analysis for your clients,https://www.udemy.com/coaching-courseinvestment-analysis-for-your-clientsjoanne/,True,200,1,0,6,Intermediate Level,0.5666666666666667,2017-06-23T16:35:04Z,Business Finance
24815,Harnessing the Power of Growth Stocks,https://www.udemy.com/harnessing-the-power-of-growth-stocks/,True,50,29,2,7,Intermediate Level,2.0,2012-10-31T01:05:18Z,Business Finance
736836,The Investment Banking Recruitment Series,https://www.udemy.com/investmentbanking/,True,40,17,6,26,All Levels,3.5,2016-02-06T01:21:33Z,Business Finance
462474,Business Banking 101,https://www.udemy.com/business-banking-101/,True,25,132,3,14,All Levels,1.5,2015-04-06T18:05:26Z,Business Finance
73938,CFA Level I Workshop 2: Financial Reporting & Analysis I ,https://www.udemy.com/cfa-workshop-2/,True,20,126,2,5,All Levels,1.0,2013-08-12T13:26:27Z,Business Finance
158444,Breakout Patterns Workshop by Pattern Trader,https://www.udemy.com/breakout-patterns-workshop-by-pattern-trader/,True,60,32,6,15,All Levels,1.5,2016-09-09T04:22:05Z,Business Finance
577198,Asset Protection Using Offshore Companies,https://www.udemy.com/asset-protection-using-offshore-companies/,True,20,480,3,21,All Levels,1.0,2015-08-12T17:28:53Z,Business Finance
993160,Get Credit for Your EIN That's Not Linked to Your SSN,https://www.udemy.com/business-credit/,True,20,27,4,15,Beginner Level,1.5,2016-12-14T17:29:34Z,Business Finance
233294,Financial Translation,https://www.udemy.com/financial-translation/,True,20,167,6,29,Beginner Level,1.5,2014-06-11T17:50:13Z,Business Finance
281844,How to Pick Stocks,https://www.udemy.com/pickwinningstocks/,True,20,131,3,28,All Levels,1.5,2014-09-15T19:45:17Z,Business Finance
1072156,Binary Beginners Mastery Strategy.,https://www.udemy.com/binary-beginners-mastery-strategy/,False,0,927,8,14,Beginner Level,1.0,2017-05-02T18:58:47Z,Business Finance
607362,Accounting 101-Master Class for Understanding Business,https://www.udemy.com/master-key-financial-indicators-and-build-business-success/,True,20,37,2,43,All Levels,2.5,2015-10-10T04:45:42Z,Business Finance
1069866,High-Frequency Trading & Dark Pools,https://www.udemy.com/high-frequency-trading-dark-pools/,True,40,19,11,22,Beginner Level,2.0,2017-04-18T21:43:21Z,Business Finance
25794,How To Crowdfund,https://www.udemy.com/how-to-crowdfund/,True,30,43,6,17,All Levels,1.5,2012-10-02T22:00:03Z,Business Finance
387348,Financial Statement Fundamentals for Small Biz & Investors,https://www.udemy.com/financial-statement-fundamentals/,True,30,751,1,61,Beginner Level,3.0,2015-05-14T21:17:53Z,Business Finance
475912,Master The Stock Market with practice,https://www.udemy.com/master-the-stock-market-with-practice/,True,35,49,10,42,All Levels,2.0,2015-05-15T18:04:34Z,Business Finance
332690,Introduction to Trade Theory (Technical Analysis) For Stocks,https://www.udemy.com/intro-price-theory-klatch-tminr/,True,20,45,4,6,Beginner Level,1.0,2014-11-24T04:14:02Z,Business Finance
830870,Forex Trading For Beginners: Technical Trading,https://www.udemy.com/forex-trading-for-beginners-technical-trading/,False,0,1685,29,16,Beginner Level,2.0,2016-04-28T22:42:54Z,Business Finance
199822,IAS 12 - Accounting for Income Taxes (Basics),https://www.udemy.com/ias-12-accounting-for-income-taxes-basics/,False,0,4269,60,17,All Levels,4.5,2014-05-17T13:19:55Z,Business Finance
56058,Surpassing Your Kickstarter Goals,https://www.udemy.com/surpassing-your-kickstarter-goals/,True,30,124,7,12,All Levels,1.0,2013-05-24T17:42:25Z,Business Finance
587232,Simple Linear Regression Analysis ( A Complete Course ),https://www.udemy.com/macro-economic-concepts/,True,200,811,5,29,All Levels,1.5,2015-08-27T19:42:37Z,Business Finance
398798,Forex: Learn to Trade Forex and FX Consistently,https://www.udemy.com/forex-learn-to-trade-forex-and-fx-consistently/,True,50,956,4,21,All Levels,5.5,2015-01-20T04:28:14Z,Business Finance
130366,Trading: High-ROI Trading,https://www.udemy.com/the-high-roi-trading-video-course/,True,190,126,20,47,Intermediate Level,12.5,2014-02-05T19:02:33Z,Business Finance
530430,Fundraising 101,https://www.udemy.com/fundraising101/,True,95,26,4,5,Beginner Level,1.0,2015-06-17T23:50:28Z,Business Finance
615204,Professional Bookkeeping & Accounting 2 - Bank Daybook,https://www.udemy.com/professional-bookkeeping-accounting-2-petty-cash-bank/,True,35,91,6,36,All Levels,2.0,2015-11-01T18:29:15Z,Business Finance
441016,Filing with Companies House UK,https://www.udemy.com/filing-with-companies-house-uk/,True,30,30,5,9,All Levels,1.0,2015-03-08T19:26:34Z,Business Finance
598722,"Build, Grow, and Protect Your Assets: A Step-by-Step Guide",https://www.udemy.com/ron-delegges-crash-course-for-investors/,True,195,226,26,26,All Levels,3.5,2015-09-23T03:00:27Z,Business Finance
1225674,The Advantages of ETF Options and Index Options Trading,https://www.udemy.com/learn-etf-options-and-index-options-trading/,True,60,52,3,9,Intermediate Level,1.0,2017-05-23T21:04:42Z,Business Finance
1167536,Learn to Trade Forex - from Beginner to Professional,https://www.udemy.com/learn-to-trade-forex-from-only-10-minutes-a-day/,True,195,89,7,64,All Levels,12.5,2017-04-06T16:59:36Z,Business Finance
979616,"Investing In Stocks For Big Gains, Fundamental Investing",https://www.udemy.com/fundamental-analysis-of-stocks/,True,200,267,11,21,All Levels,2.0,2016-10-22T14:28:36Z,Business Finance
528488,Introduction to Equity Markets,https://www.udemy.com/introduction-to-equity-markets/,False,0,4770,64,31,Beginner Level,6.5,2015-07-30T19:00:30Z,Business Finance
832832,Beginners Guide To Ichimoku Trading,https://www.udemy.com/ichimoku/,True,20,265,16,17,All Levels,1.0,2016-04-27T20:06:23Z,Business Finance
256094,Financial Management - Ratio Analysis,https://www.udemy.com/financial-ratio-analysis/,True,20,2046,9,72,Beginner Level,5.5,2014-07-05T15:25:07Z,Business Finance
975074,ALGOTECH Hedge Fund Method for Stock Market Trading,https://www.udemy.com/algotech-hedge-fund-method-for-stock-market/,True,20,605,19,4,All Levels,0.31666666666666665,2016-10-10T21:05:19Z,Business Finance
436488,Futures/Commodity Trading,https://www.udemy.com/futurestrading/,True,50,472,34,23,All Levels,5.5,2015-03-05T22:58:02Z,Business Finance
72644,Complete Claritas Investment Certificate,https://www.udemy.com/claritas-investment-certificate/,True,50,388,56,35,All Levels,11.5,2013-08-05T16:01:50Z,Business Finance
980408,Introduction to the economics of public services regulation,https://www.udemy.com/introduction-to-the-economics-of-public-services-regulation/,True,80,98,35,69,Intermediate Level,8.0,2017-01-03T17:57:55Z,Business Finance
343886,Accounting Standard 3 - An Analysis,https://www.udemy.com/learn-cash-flow-analysis/,True,25,1888,6,11,Intermediate Level,1.0,2014-11-14T07:42:47Z,Business Finance
837322,Essentials of money value: Get a financial Life !,https://www.udemy.com/essentials-of-money-value/,True,20,0,0,20,All Levels,0.6166666666666667,2016-05-16T18:28:30Z,Business Finance
1157298,Introduction to Forex Trading Business For Beginners,https://www.udemy.com/introduction-to-forex-trading-business-for-beginners/,True,20,0,0,27,Beginner Level,1.5,2017-04-23T16:19:01Z,Business Finance
1282064,Cryptocurrency (BTC & ETH) Investment & Trading Course 2017,https://www.udemy.com/cryptocurrency-btc-eth-investment-trading-course-2017/,True,20,0,0,7,Beginner Level,2.5,2017-07-06T21:46:30Z,Business Finance
1247992,Introduction to Project Management for Finance and Acct'g,https://www.udemy.com/introduction-to-project-management-m/,True,50,0,0,9,Beginner Level,2.0,2017-07-03T21:40:32Z,Business Finance
1251582,Best Practices in Corporate Budgeting,https://www.udemy.com/best-practices-corporate-budgeting/,True,50,0,0,9,Intermediate Level,2.0,2017-06-29T22:01:56Z,Business Finance
1258666,Financial Statement Auditing Cycles,https://www.udemy.com/financial-statement-auditing-cycles/,True,50,0,0,9,Intermediate Level,2.0,2017-06-29T23:20:10Z,Business Finance
1168172,Case studies on credit appraisal for bankers,https://www.udemy.com/case-studies-on-credit-appraisal-for-bankers/,True,20,0,0,15,Beginner Level,3.5,2017-05-01T20:16:26Z,Business Finance
1233314,Building a Balanced Scorecard,https://www.udemy.com/building-balanced-scorecard/,True,50,0,0,11,Intermediate Level,2.0,2017-07-03T21:38:22Z,Business Finance
1276182,Options Trading Foundation: Your journey to competency...,https://www.udemy.com/option-trading-foundation-your-journey-to-competency/,True,95,0,0,5,Intermediate Level,1.0,2017-07-05T04:41:54Z,Business Finance
1187084,Forex how traders beat the markest with little experience,https://www.udemy.com/forex-how-traders-beat-the-markest-with-little-experience/,True,100,0,0,16,All Levels,1.0,2017-07-06T21:16:13Z,Business Finance
1084454,CFA Level 2- Quantitative Methods,https://www.udemy.com/cfa-level-2-quantitative-methods/,True,40,0,0,35,All Levels,5.5,2017-07-02T14:29:35Z,Business Finance
885413,Foundations of Investing,https://www.udemy.com/foundations-of-investing/,True,40,0,0,18,Beginner Level,2.0,2016-07-27T21:07:46Z,Business Finance
178602,Capital Market Road Map,https://www.udemy.com/capital-market-road-map/,True,50,495,47,21,All Levels,4.0,2014-03-11T16:15:21Z,Business Finance
601912,TRADING: 5K CHALLENGE,https://www.udemy.com/trading_course/,True,55,375,10,19,Intermediate Level,1.0,2015-09-12T00:13:34Z,Business Finance
831170,CurrencyFair - Avoid Bank Charges when converting currencies,https://www.udemy.com/currencyfair-currency-exchange/,False,0,1730,34,11,All Levels,0.6666666666666666,2016-05-05T14:38:15Z,Business Finance
327788,Bitcoin - A Comprehensive Guide,https://www.udemy.com/bitcoin-a-comprehensive-guide/,True,20,283,13,35,All Levels,2.5,2015-01-27T04:10:17Z,Business Finance
324656,Forex Trading,https://www.udemy.com/how-to-trade-forex/,True,95,136,14,25,All Levels,4.5,2014-11-18T10:52:45Z,Business Finance
1220862,"The True ' Secret Sauce For Stock Market Success""",https://www.udemy.com/stockmarketsuccesssecretsauce/,True,200,23,2,30,All Levels,3.0,2017-06-11T16:01:03Z,Business Finance
403628,Bookkeeping to Command Senior Bookkeeping Wages,https://www.udemy.com/bookkeeping-to-command-senior-bookkeeping-wages/,True,55,683,16,58,All Levels,4.5,2015-03-06T01:31:54Z,Business Finance
280842,Take Your Career to the Next Level with MBA Finance,https://www.udemy.com/take-your-career-to-the-next-level-with-mba-finance/,True,50,618,10,19,All Levels,2.0,2015-10-29T23:18:23Z,Business Finance
306360,How to Read Financial Statements: Build Financial Literacy.,https://www.udemy.com/learn-how-to-read-financial-statements/,True,25,188,10,20,Beginner Level,1.5,2014-12-19T18:23:17Z,Business Finance
521234,Accounting Books of Accounts (College Level),https://www.udemy.com/books-of-accounts/,True,20,911,2,18,All Levels,1.5,2015-06-05T19:01:45Z,Business Finance
327962,Forex Trading Profitably,https://www.udemy.com/learn-how-to-make-1000s-a-day-forex-trading-in-under-1-hour/,True,20,512,13,15,All Levels,0.6666666666666666,2014-11-04T12:37:45Z,Business Finance
790034,Learn How to Trade Pump and Dumps. 5 Setups Well Explained.,https://www.udemy.com/how-to-trade-pump-and-dumps/,True,50,769,10,18,All Levels,2.0,2016-03-14T17:17:00Z,Business Finance
400976,Bitcoin Trading 101,https://www.udemy.com/bitcoin-trading/,True,95,302,6,19,All Levels,2.0,2015-01-29T08:03:35Z,Business Finance
892446,Visualizing Data,https://www.udemy.com/visualizing-data/,True,40,149,2,63,Intermediate Level,6.5,2016-07-22T13:09:03Z,Business Finance
322118,IFRS Financial Reporting,https://www.udemy.com/ifrs-financial-reporting/,True,55,72,9,15,All Levels,3.5,2014-10-24T16:55:03Z,Business Finance
1029062,Forex Trading System: Correlation EUR/GBP vs GBP/USD,https://www.udemy.com/forex-trading-correlation-strategy-eurgbp-gbpusd/,True,50,33,4,26,Intermediate Level,1.0,2016-12-14T15:49:54Z,Business Finance
1048496,"SAP Crystal Reports:Master-Detail,Cross-Tab,Sub-Reports",https://www.udemy.com/sap-crystal-reportsmaster-detailcross-tabsub-reports/,True,50,13,1,9,All Levels,2.0,2016-12-26T17:39:05Z,Business Finance
501502,Learn Financial Accounting Different,https://www.udemy.com/learn-financial-accounting-different/,True,20,79,1,58,All Levels,6.0,2015-05-24T21:14:23Z,Business Finance
74004,CFA Level I Workshop 4: Fixed Income and Equity,https://www.udemy.com/cfa-workshop-4/,True,20,139,3,6,All Levels,1.5,2013-08-12T13:51:50Z,Business Finance
226084,"IAS37 - Provisions, Contingents Liabilities & Assets",https://www.udemy.com/ias37-provisions-contingents-liabilities-assets/,False,0,2247,53,29,All Levels,4.0,2014-06-30T08:58:16Z,Business Finance
968056,What You Should Know to Become a Trader,https://www.udemy.com/what-you-should-know-to-become-a-trader/,True,125,17,2,14,All Levels,1.5,2016-09-29T05:13:00Z,Business Finance
1107904,Financial Reporting A Comprehensive Study,https://www.udemy.com/financial-reporting-a-comprehensive-study/,True,50,45,1,72,All Levels,8.0,2017-02-09T21:58:02Z,Business Finance
691180,An Abundance Mindset: How to Craft Yours,https://www.udemy.com/mindset-of-a-6-figure-income-earner-how-to-craft-yours/,True,50,33,4,40,Beginner Level,4.5,2016-01-22T21:45:33Z,Business Finance
843536,Forex Trading Profit 183%p.a : Trend is Our Friend-ALGOTREND,https://www.udemy.com/forex-robot-trading-trend-is-our-friend-algo-trend/,True,120,54,11,12,All Levels,0.6,2016-12-05T17:01:51Z,Business Finance
532836,How to Build a Massive Retirement Plan from Scratch!,https://www.udemy.com/take-the-bulletproof-401k-super-charger-rat-race-off-ramp/,True,200,1498,30,23,Beginner Level,2.0,2015-06-22T23:04:23Z,Business Finance
493014,Financial modeling: Build a forward looking financial model,https://www.udemy.com/how-to-make-an-integrated-financial-model/,True,20,2317,44,22,All Levels,2.0,2015-05-05T17:47:11Z,Business Finance
955748,Trading for Beginners - Entry Level,https://www.udemy.com/trading-for-beginners-tier-1/,False,0,5077,256,16,Beginner Level,1.5,2016-10-03T22:21:54Z,Business Finance
49798,Bitcoin or How I Learned to Stop Worrying and Love Crypto,https://www.udemy.com/bitcoin-or-how-i-learned-to-stop-worrying-and-love-crypto/,False,0,65576,936,24,All Levels,8.0,2013-04-20T02:25:22Z,Business Finance
429662,Trend Following Stocks: A Complete Trading System,https://www.udemy.com/trend-following/,True,95,1202,76,64,Expert Level,3.5,2015-03-23T17:03:31Z,Business Finance
97338,Forex Basics,https://www.udemy.com/forex-basics/,False,0,22344,712,26,Beginner Level,3.5,2013-10-16T17:40:23Z,Business Finance
510178,Accounting Bank Reconciliation Statement (College Level),https://www.udemy.com/bankreconciliationstatement/,True,20,2189,4,16,All Levels,1.5,2015-05-25T19:46:32Z,Business Finance
1002282,Bitcoin - Ethereum: Trading -Watch me manage my own account!,https://www.udemy.com/bitcoin-tips/,True,165,431,58,22,All Levels,2.5,2016-11-12T04:22:59Z,Business Finance
706670,FOREX : Learn Technical Analysis,https://www.udemy.com/learn-technical-analysis-from-beginner-to-pro/,True,200,1199,37,79,All Levels,18.0,2016-01-01T19:04:07Z,Business Finance
275294,FastTrack to Stock Trading Strategies,https://www.udemy.com/fasttrack-to-stock-trading-strategies/,True,25,5685,5,12,All Levels,3.5,2014-08-05T18:24:18Z,Business Finance
594936,Algorithmic futures trading - Investing with no experience,https://www.udemy.com/algorithmic-futures-trading/,True,195,1512,23,19,All Levels,1.5,2015-09-14T18:24:03Z,Business Finance
521342,Succeed in Forex Even if You Don't Know Where to Start!,https://www.udemy.com/forex-trading-for-beginners-live-fx-examples/,True,200,1806,38,211,Beginner Level,19.5,2015-06-19T22:16:52Z,Business Finance
828740,Hedge Fund Accounting and Valuation,https://www.udemy.com/hedge-fund-accounting-and-valuation/,True,20,668,10,11,All Levels,0.5666666666666667,2016-04-28T16:39:21Z,Business Finance
501960,"Binary, Forex, Stock and Bitcoin Trading Strategy",https://www.udemy.com/binary-forex-stock-and-bitcoin-trading-strategy/,False,0,3757,70,14,All Levels,0.6166666666666667,2015-05-28T22:38:25Z,Business Finance
486240,2 Easy Steps To Investment And Avoiding Traps,https://www.udemy.com/easy-steps-to-investment/,True,20,828,1,20,All Levels,1.0,2015-04-27T23:18:59Z,Business Finance
869652,Ethereum Course for Investors,https://www.udemy.com/how-to-purchase-store-and-profit-from-ethereuem/,True,40,111,20,11,All Levels,1.0,2016-06-09T04:21:43Z,Business Finance
1095700,Using Xero for your bookkeeping needs do beautiful business,https://www.udemy.com/xero-101/,True,95,39,6,28,Beginner Level,1.0,2017-02-27T16:33:33Z,Business Finance
169662,Capital Market Immersion,https://www.udemy.com/capital-market-immersion/,True,195,613,33,142,All Levels,24.5,2014-02-25T15:43:53Z,Business Finance
1041522,Forex Trading :RSI Indicator-A Secret Weapon,https://www.udemy.com/forex-tradinglearn-rsi-indicator-to-trade-like-a-pro/,True,95,57,13,14,All Levels,1.5,2016-12-21T14:44:15Z,Business Finance
657130,"Trading Mindset, and Three Steps To Profitable Trading",https://www.udemy.com/trading-mindset-steps-to-profitable-trading/,True,20,246,8,24,Beginner Level,1.5,2015-11-02T20:13:05Z,Business Finance
774570,Professional Bookkeeping & Accounting 4:Trial Balance & More,https://www.udemy.com/professional-bookkeeping-accounting-4trial-balance-more/,True,35,83,8,21,All Levels,1.0,2016-03-12T05:06:29Z,Business Finance
1078520,"Internal Controls - Design, Implementation and Monitoring",https://www.udemy.com/internal-controls/,True,195,62,6,27,Beginner Level,6.5,2017-03-20T18:42:56Z,Business Finance
999262,Forex online live trading system (Special Offer),https://www.udemy.com/forex-trading-i-will-show-you-how-to-get-profit/,True,200,31,8,34,All Levels,5.5,2016-11-07T14:51:41Z,Business Finance
100526,Winning Options Trading System,https://www.udemy.com/winning-options-trading-system/,True,105,367,11,24,All Levels,7.5,2013-10-09T21:12:00Z,Business Finance
513046,Learn The ABC's Of Investing And Understanding True Financial Value,https://www.udemy.com/investing-101-guide/,True,20,3,0,8,All Levels,1.5,2015-06-01T22:47:06Z,Business Finance
309854,How to invest in Russian equity market,https://www.udemy.com/how-to-invest-in-russian-equity-market/,True,30,3,0,12,Intermediate Level,1.5,2015-09-15T18:28:43Z,Business Finance
580068,Handle difficult questions the bank manager will ask you,https://www.udemy.com/handle-difficult-questions-the-bank-manager-will-ask-you/,True,20,2,0,12,All Levels,1.0,2015-09-04T20:03:24Z,Business Finance
304410,Credit Control Procedures,https://www.udemy.com/credit-control/,True,20,3,0,6,All Levels,0.5666666666666667,2014-09-22T03:58:46Z,Business Finance
782256,FMT: Forex Market Trader Certificate,https://www.udemy.com/fmtcertificate/,True,20,1,0,27,All Levels,2.0,2016-03-17T17:43:59Z,Business Finance
826912,Six Stage Negotiation,https://www.udemy.com/six-stage-negotiation-for-cash-collection/,True,30,1,0,21,All Levels,2.5,2016-05-11T17:08:03Z,Business Finance
313512,Financial Reporting - Fundamentals/Basics,https://www.udemy.com/financial-reporting-fundamentals/,True,20,2,0,28,Beginner Level,2.5,2014-11-08T02:53:57Z,Business Finance
759262,Decide whether to Invest in a Business ,https://www.udemy.com/decide-whether-to-invest-in-a-business/,True,20,1,0,43,Beginner Level,1.0,2016-02-15T17:33:49Z,Business Finance
359926,UK Tax Returns with HMRC,https://www.udemy.com/corporation-tax-returns-hmrc/,True,40,2,0,11,Beginner Level,1.0,2016-04-05T15:48:32Z,Business Finance
591724,Financial Market Environment & Investment Strategies,https://www.udemy.com/financial-market-environment-investment-strategies/,True,105,1,0,25,All Levels,1.5,2017-06-20T02:29:09Z,Business Finance
533458,How to Obtain a Business Loan,https://www.udemy.com/how-to-obtain-a-business-loan/,True,20,1,1,12,All Levels,0.5666666666666667,2015-11-17T19:17:56Z,Business Finance
1064904,Evolution and Features of ETFs,https://www.udemy.com/evolution-and-features-of-etfs/,True,100,0,0,10,All Levels,0.7166666666666667,2017-04-03T22:17:10Z,Business Finance
484134,Cost Accounting Operating Costing(Professional Course Level),https://www.udemy.com/operating-costing/,True,20,731,2,8,All Levels,1.0,2015-04-24T00:21:44Z,Business Finance
1046940,Trade RSI Breakout Strategy: Great Risk/Reward Ratio (Forex),https://www.udemy.com/trade-rsi-breakout-strategy-great-riskreward-ratio-forex/,True,200,66,12,19,All Levels,2.0,2017-05-01T19:56:30Z,Business Finance
1107954,"Day trading strategy for all level, with 72% success rate",https://www.udemy.com/1-shot-1kill/,True,95,51,9,15,All Levels,0.5333333333333333,2017-03-02T16:25:56Z,Business Finance
455452,"Accounting, Finance and Banking - A Comprehensive Study",https://www.udemy.com/accounting-finance-and-banking-a-comprehensive-study/,True,180,507,36,395,All Levels,33.0,2015-03-26T18:01:39Z,Business Finance
1263966,Advanced Technical Analysis PART1!,https://www.udemy.com/advanced-technical-analysis-part1/,True,100,9,1,19,Intermediate Level,3.0,2017-06-27T22:00:27Z,Business Finance
658766,Advanced Financial Management for CA / CS / CFA /CPA Exams,https://www.udemy.com/advanced-financial-management-a-comprehensive-study/,True,150,375,15,194,All Levels,24.5,2015-11-03T18:22:32Z,Business Finance
927442,Learn the Foundations of Stocks and Options,https://www.udemy.com/learn-how-to-trade-stocks-and-options/,True,50,80,18,63,Beginner Level,7.5,2016-08-11T21:18:34Z,Business Finance
972126,Forex Trading Masterclass - Learn To Trade Better,https://www.udemy.com/forex-market-masterclass/,True,200,152,7,30,All Levels,3.0,2016-10-09T21:19:54Z,Business Finance
1031696,Introduction to Accounting - Analyzing Financial Statements,https://www.udemy.com/introduction-to-accounting-analyzing-financial-statements/,True,60,37,15,12,Intermediate Level,1.0,2016-12-13T21:12:10Z,Business Finance
742106,Credit Risk Analysis,https://www.udemy.com/credit-specific-analysis/,True,20,194,24,19,Intermediate Level,3.5,2016-01-28T22:09:01Z,Business Finance
355374,Fund Flow Analysis for CA / CFA / CPA Exams,https://www.udemy.com/learn-fund-flow-analysis/,True,25,1184,2,7,Intermediate Level,1.5,2014-11-28T11:43:27Z,Business Finance
529828,Python for Trading & Investing,https://www.udemy.com/python-for-trading-investing/,True,95,638,25,36,All Levels,5.0,2015-06-17T22:23:31Z,Business Finance
538560,Stocks For Beginners - A Guide To Investing,https://www.udemy.com/stocks-for-beginners-a-guide-to-investing/,True,20,64,15,14,Beginner Level,1.0,2015-07-17T19:16:47Z,Business Finance
994666,Intro to Impact Investing,https://www.udemy.com/intro-to-impact-investing/,True,200,44,4,12,Beginner Level,0.5333333333333333,2016-11-08T17:02:08Z,Business Finance
389108,Stock Market - Swing Trading Strategies for Wall Street,https://www.udemy.com/get-rich-to-a-millions-using-swing-trading-strategies/,True,50,814,9,5,All Levels,1.0,2015-01-09T04:22:24Z,Business Finance
38456,Essential Options: Strategies for Mastering the Stock Market,https://www.udemy.com/essentialoptions/,True,50,211,9,27,Intermediate Level,5.0,2013-03-06T05:28:43Z,Business Finance
282050,The Day Trader: Learn to Trade The Stock Market and Forex,https://www.udemy.com/day-trading-course/,True,20,768,23,54,All Levels,10.5,2014-08-21T17:18:12Z,Business Finance
607800,Introduction To The World Of Equity Finance,https://www.udemy.com/equity-finance-basics/,True,20,29,9,32,All Levels,2.0,2015-12-08T17:12:06Z,Business Finance
832410,Stock Technical Analysis with Excel,https://www.udemy.com/stock-technical-analysis-with-excel/,True,50,156,16,41,All Levels,7.0,2016-04-28T18:22:49Z,Business Finance
779000,Beginners Forex strategy,https://www.udemy.com/beginners-forex-strategy/,False,0,2144,47,20,Beginner Level,1.0,2016-03-18T15:07:45Z,Business Finance
180372,Mortgage Backed Securities,https://www.udemy.com/mortgage-backed-securities/,True,50,376,29,21,All Levels,3.5,2014-03-13T12:47:09Z,Business Finance
429952,The Complete Financial Model Builder Course-Build 7 Models,https://www.udemy.com/the-complete-financial-model-builder-course-build-7-models/,True,75,214,20,88,All Levels,9.0,2015-03-19T19:00:23Z,Business Finance
172898,Fundamental Financial Math,https://www.udemy.com/fundamental-financial-math/,True,50,406,13,15,All Levels,2.5,2014-03-04T19:36:43Z,Business Finance
180360,Equity Swaps,https://www.udemy.com/equity-swaps/,True,50,394,25,18,All Levels,3.0,2014-03-13T22:12:01Z,Business Finance
713416,Proven Methods In Trading Candlestick Patterns,https://www.udemy.com/candlestick-patterns-winning-the-day-trading-game/,True,75,438,10,22,All Levels,1.5,2016-02-12T23:44:27Z,Business Finance
407658,Read financial statements as a stock investor,https://www.udemy.com/read-financial-statements-to-be-a-stock-investor/,True,20,56,8,18,Beginner Level,2.0,2015-07-10T19:32:16Z,Business Finance
572992,Investing: How to Fix Hidden Flaws Inside Your Portfolio,https://www.udemy.com/investing-how-to-fix-hidden-flaws-inside-your-portfolio/,True,195,58,8,14,All Levels,1.0,2015-12-03T02:30:13Z,Business Finance
192724,Certificate Program in Financial Accounting,https://www.udemy.com/certificate-program-in-financial-accounting/,True,50,1047,3,20,All Levels,4.5,2014-04-24T10:56:31Z,Business Finance
469526,Trading Biotech Stocks - Understanding the Healthcare Sector,https://www.udemy.com/trading-biotech-stocks/,True,55,166,17,16,All Levels,1.5,2015-04-24T21:22:27Z,Business Finance
854764,Indian Contract Act 1872: Must for all Finance Professionals,https://www.udemy.com/indian-contract-act-1872must-know-for-finance-professionals/,True,20,605,3,14,All Levels,1.0,2016-05-20T17:19:02Z,Business Finance
754524,Fundraising Success: The Art & Science of Major Gifts,https://www.udemy.com/fundraising-success-the-art-science-of-major-gifts/,True,50,38,9,25,Intermediate Level,2.5,2016-05-27T17:16:58Z,Business Finance
851288,Smart Trading Techniques for Safe & Consistent Weekly Result,https://www.udemy.com/smart-trading-techniques-for-safe-consistent-weekly-result/,True,100,46,11,24,Intermediate Level,2.5,2016-05-24T04:57:49Z,Business Finance
363058,Technical Trading and Investing Made Easy,https://www.udemy.com/technical-trading-and-investing-made-easy/,True,40,217,7,27,Intermediate Level,1.5,2014-12-24T22:46:08Z,Business Finance
700080,Budgeting for Business,https://www.udemy.com/budgeting-for-business/,True,40,78,22,25,All Levels,2.5,2016-01-11T20:46:47Z,Business Finance
637452,Complete Guide to Business Loans,https://www.udemy.com/complete-guide-to-business-loans/,True,30,35,4,35,Beginner Level,1.5,2015-12-04T05:11:46Z,Business Finance
360916,Hot Trading Investing Strategy: ETF and Futures,https://www.udemy.com/learn-to-trade-stocks-and-futures-with-profitable-strategy/,True,50,80,10,13,All Levels,2.5,2014-12-08T07:07:22Z,Business Finance
375594,Financial Management - A Complete Study,https://www.udemy.com/financial-management-a-complete-study/,True,190,1941,128,527,All Levels,71.5,2014-12-22T16:57:30Z,Business Finance
703770,MQL4 Programming for Traders: Build Robust Trading Robots!,https://www.udemy.com/algorithmic-trading-bootcamp-metatrader4/,True,195,1367,33,74,All Levels,7.0,2016-02-22T00:31:08Z,Business Finance
602032,Ultimate Stock Market Investing: Learn How to Value Stocks,https://www.udemy.com/stock-investing/,True,50,1519,40,46,All Levels,3.5,2015-11-03T00:09:31Z,Business Finance
475032,Collection of Advanced Options concepts for Options traders,https://www.udemy.com/advanced-options-concepts-for-options-stock-traders/,True,40,2025,34,9,Expert Level,1.0,2015-04-13T23:02:21Z,Business Finance
925854,No Bull Investing: Investing 101 For Financial Freedom,https://www.udemy.com/no-bull-investing-investing-101-for-financial-freedom/,True,100,1213,12,25,Beginner Level,6.5,2017-03-13T22:53:07Z,Business Finance
895936,Financial Modeling - Build Your Own 3 Statement Projection,https://www.udemy.com/financial-modelling-build-your-own-3-statement-projection/,True,20,1092,48,13,Beginner Level,1.0,2016-07-05T20:58:26Z,Business Finance
399170,Small Business Owners: Drive a Productive Business and Grow,https://www.udemy.com/small-business-owners-drive-a-productive-business-and-grow/,True,20,5099,2,15,Beginner Level,3.0,2015-01-20T21:39:42Z,Business Finance
593460,Successful Day Trading with Fibonacci,https://www.udemy.com/use-fibonacci-on-thinkorswim-to-day-trade/,True,200,869,135,11,All Levels,2.0,2015-08-31T19:54:34Z,Business Finance
1225564,Short Straddles - Exploit Earnings Option Volatility Crush,https://www.udemy.com/short-straddles-exploit-option-volatility-crush/,True,60,59,8,7,Expert Level,0.5833333333333334,2017-05-24T14:45:31Z,Business Finance
774174,Bitcoin For Beginners: Your Quick Start Guide To Bitcoin,https://www.udemy.com/bitcoin-podcast/,False,0,10670,444,15,All Levels,1.0,2016-03-03T21:03:33Z,Business Finance
294292,Technical Analysis 101: Ten Primary Candlestick Reversals,https://www.udemy.com/trading-stocks-successfully-01-ten-primary-reversal-patterns/,True,95,1741,85,84,All Levels,7.0,2014-10-05T16:09:30Z,Business Finance
189160,Financial Analysis: A Recipe for Success,https://www.udemy.com/financial-analysis-a-recipe-for-success/,False,0,19614,635,14,All Levels,1.5,2014-04-23T15:10:52Z,Business Finance
1000136,"Basics of Fixed Income Valuation, CFA Level I 2017 Prep",https://www.udemy.com/basics-of-fixed-income-valuation-cfa-level-i-2017-prep/,True,20,4,0,14,Beginner Level,3.5,2017-01-28T16:47:51Z,Business Finance
1232382,Intro to Financial Statement Audits,https://www.udemy.com/intro-financial-statement-audits/,True,50,1,0,9,Intermediate Level,1.5,2017-06-29T18:09:01Z,Business Finance
1058530,"How to Get Growing, Passive Income from the Fortune 500!",https://www.udemy.com/how-to-get-growing-passive-income-from-the-fortune-500/,True,25,4,0,12,All Levels,1.0,2017-01-19T16:07:18Z,Business Finance
994118,Managing Budgets in the Public and Non Profit Sector,https://www.udemy.com/managing-budgets-in-the-public-and-non-profit-sector/,True,95,4,0,20,All Levels,2.0,2017-06-22T20:28:25Z,Business Finance
621014,System of Asset Management for Professionals (SAMP),https://www.udemy.com/professional_asset_management_system/,True,50,8,1,8,Expert Level,1.0,2015-09-25T21:59:24Z,Business Finance
673750,How to invest in Forex Trading & add an additional income,https://www.udemy.com/forex-truth-fundamentals-and-understanding/,True,50,8,2,14,All Levels,2.0,2015-11-21T20:47:58Z,Business Finance
390510,Tax made simple for Limited Company Owners and Contractors,https://www.udemy.com/tax-made-simple-for-limited-company-owners-and-contractors/,True,50,11,0,57,All Levels,3.0,2015-02-18T11:50:46Z,Business Finance
282044,Introduction to the 8 Pillars for Accountants,https://www.udemy.com/8-pillars-for-accountants-introduction/,True,20,18,0,33,Beginner Level,0.6166666666666667,2014-08-16T17:37:15Z,Business Finance
118836,FX Trading for Beginners,https://www.udemy.com/fx-trading-for-beginners/,True,20,16,0,22,All Levels,1.5,2013-12-01T04:10:23Z,Business Finance
849632,Write a Successful Business Grant Proposal,https://www.udemy.com/write-a-successful-business-grant-proposal/,True,20,6,0,23,Beginner Level,2.5,2016-07-10T17:11:15Z,Business Finance
904240,A Guide To Trade Binary Options Like An Expert,https://www.udemy.com/a-guide-to-trade-binary-options-like-an-expert/,True,55,4,0,21,All Levels,1.0,2016-07-18T21:48:10Z,Business Finance
1165780,Ratio analysis for bankers and credit analysts,https://www.udemy.com/ratio-analysis-for-bankers-and-credit-analysts/,True,20,1,0,13,Beginner Level,3.0,2017-04-12T16:55:26Z,Business Finance
304424,Numbers for the Business Plan,https://www.udemy.com/numbers-for-the-business-plan/,True,20,210,1,12,All Levels,1.5,2014-09-22T05:12:53Z,Business Finance
1246684,Dash Crypto Currency Technical and Trading Overview Bootcamp,https://www.udemy.com/introduction-to-dash-crypto-currency-technical-overview/,True,20,4,1,14,All Levels,1.0,2017-06-19T21:59:42Z,Business Finance
591880,1 - Concepts of Statistics For Beginners Step by Step,https://www.udemy.com/concepts-of-statistics/,True,200,273,4,15,Beginner Level,0.5166666666666666,2015-08-30T22:48:34Z,Business Finance
155616,4. Ordinary Simple Annuities: The Basics,https://www.udemy.com/ordinary-simple-annuities-the-basics/,True,20,237,1,17,All Levels,1.5,2014-01-31T22:27:11Z,Business Finance
1185936,الدروس التعليمية لسوق الفوركس والأسواق المالية الأخرى,https://www.udemy.com/arabic-forex-education-by-pforex/,False,0,368,3,69,All Levels,20.5,2017-04-25T15:02:33Z,Business Finance
65802,Financial Risk Manager (FRM) Certification: Level II,https://www.udemy.com/financial-risk-manager-frm-certification-level-ii/,True,50,86,7,87,All Levels,47.0,2013-07-24T03:18:38Z,Business Finance
229360,Level 1 2014 CFA® Program – Corporate Finance,https://www.udemy.com/level-1-2014-cfa-program-corporate-finance/,True,40,204,1,18,All Levels,3.0,2014-06-21T05:43:33Z,Business Finance
159388,3. Compound Interest ,https://www.udemy.com/compound-interest/,True,20,570,2,21,All Levels,2.0,2014-02-11T18:06:18Z,Business Finance
172298,8. Amortization Schedules,https://www.udemy.com/amortization-schedules/,True,20,225,1,5,All Levels,1.0,2014-03-19T18:30:55Z,Business Finance
570996,Finance Fundamentals for Non Finance Leaders,https://www.udemy.com/finance-fundamentals-for-business-leaders/,True,20,37,7,15,All Levels,1.0,2015-08-04T21:56:58Z,Business Finance
944594,Strategy layout and Backtesting,https://www.udemy.com/strategy-layout-and-backtesting/,True,200,36,2,24,Expert Level,4.0,2016-09-21T19:36:22Z,Business Finance
81064,Easy Forex and Futures Trading,https://www.udemy.com/easy-forex-and-futures-trading/,True,100,218,5,66,All Levels,14.5,2013-12-31T01:22:44Z,Business Finance
364034,Finanzas y Análisis Financiero: Manejo Seguro de Negocios,https://www.udemy.com/finanzas-y-analisis-financiero-manejo-seguro-de-negocios/,True,20,50,18,13,Beginner Level,1.5,2014-12-16T03:10:02Z,Business Finance
119276,Aprende a hacer paper trading (simulación) con Ninja Trader,https://www.udemy.com/aprende-a-hacer-paper-trading-simulacion-con-ninja-trader/,True,25,148,3,15,Beginner Level,1.5,2013-11-15T17:53:03Z,Business Finance
753610,Trading mit kleinen Konten - Grundlagen die du kennen musst,https://www.udemy.com/werden-sie-privater-trader-im-forex-cfd-oder-rohstoffmarkt/,True,80,74,4,20,Beginner Level,3.5,2017-03-29T00:06:21Z,Business Finance
616564,entiende la contabilidad y consigue un aumento de salario,https://www.udemy.com/fundamentos_de_contabilidad_foli/,True,20,260,18,17,Beginner Level,1.5,2015-09-23T15:25:09Z,Business Finance
596026,Trade for Profit: Find-Trade Stocks Successfully Arabic عربي,https://www.udemy.com/trading-stocks-successfully-stock-trading-introduction-arabic/,True,95,299,5,65,All Levels,2.5,2015-11-12T00:51:16Z,Business Finance
1264512,Trading Forex - L'analyse des volumes,https://www.udemy.com/trading-forex-lanalyse-des-volumes/,True,70,4,3,13,All Levels,2.0,2017-06-29T21:32:21Z,Business Finance
499504,Disminuye deudas en tu hogar en menos de 30 días,https://www.udemy.com/disminuye-deudas-en-tu-hogar/,True,20,65,3,15,Beginner Level,1.5,2015-05-19T22:25:23Z,Business Finance
903326,CPA 10 COMPLETO,https://www.udemy.com/estacio-cpa-10-anbima/,True,25,101,25,18,All Levels,5.0,2016-08-10T23:07:28Z,Business Finance
412108,Trading Intradiario basado en Precio y Volumen,https://www.udemy.com/trading-intradiario-basado-en-precio-y-volumen/,True,40,92,15,19,Intermediate Level,1.5,2015-02-18T23:28:01Z,Business Finance
865630,Aprenda Cálculo Financeiro de Forma Simples,https://www.udemy.com/aprenda-calculo-financeiro-de-forma-simples/,True,20,76,14,21,All Levels,2.0,2016-06-02T18:09:38Z,Business Finance
1210062,Wie funktionieren Bitcoin? Ein Einführungskurs.,https://www.udemy.com/wie-funktionieren-bitcoin-ein-einfuhrungskurs/,True,20,14,4,14,Beginner Level,0.6166666666666667,2017-05-10T23:37:44Z,Business Finance
1180960,Estruturação Financeira,https://www.udemy.com/estruturacao-financeira/,True,45,18,3,18,All Levels,3.5,2017-05-08T02:40:04Z,Business Finance
660846,Five steps to becoming a winner in stock investing,https://www.udemy.com/five-steps-to-becoming-a-winner-in-stock-investing/,True,20,21,1,28,All Levels,3.0,2015-11-06T19:05:01Z,Business Finance
829206,Financial Accounting Plus Excel and SAP Crash Course.,https://www.udemy.com/financial-accounting1/,True,20,18,2,11,Beginner Level,1.0,2016-05-23T17:03:43Z,Business Finance
385604,Introduction to Financial Consolidation under IFRS,https://www.udemy.com/introduction-to-financial-consolidation-under-ifrs/,True,25,21,3,8,All Levels,1.5,2016-12-05T14:18:39Z,Business Finance
302468,How to read a Profit & Loss Account and Balance Sheet,https://www.udemy.com/how-to-read-a-profit-loss-account-and-balance-sheet/,True,20,49,10,13,All Levels,2.0,2014-09-22T04:05:52Z,Business Finance
331600,Learn Bookkeeping From Scratch,https://www.udemy.com/bookkeeping/,True,20,168,2,21,All Levels,3.0,2014-11-05T21:43:45Z,Business Finance
557436,ACCA MA1 Management Information,https://www.udemy.com/acca-ma1-management-information/,True,50,16,1,48,Beginner Level,3.5,2015-08-24T23:33:21Z,Business Finance
1162656,Introduction to Bitcoin for Beginners,https://www.udemy.com/introduction-to-bitcoin-for-beginners/,True,20,2,1,7,Beginner Level,0.5666666666666667,2017-04-28T00:03:47Z,Business Finance
389834,Stock Trading: Ultimate Guide to swing trading stocks,https://www.udemy.com/swingtrading/,True,200,336,6,13,All Levels,0.6833333333333333,2016-10-25T16:11:24Z,Business Finance
304414,Bookkeeping Systems,https://www.udemy.com/bookkeeping-systems/,True,20,20,1,9,All Levels,1.0,2014-09-22T05:16:06Z,Business Finance
55136,Precious Metal Equities,https://www.udemy.com/precious-metal-equities/,True,20,28,1,8,All Levels,1.0,2013-05-26T14:14:33Z,Business Finance
619792,Start Now: A Rescue Plan for Retirement Late Savers,https://www.udemy.com/start-now-a-rescue-plan-for-retirement-late-savers/,True,150,11,1,15,All Levels,0.65,2016-11-19T03:30:03Z,Business Finance
505144,Eu Funding: Module 2 - Introduction to Horizon 2020,https://www.udemy.com/introduction-to-horizon-2020/,True,20,11,1,6,Intermediate Level,1.0,2015-05-20T00:00:42Z,Business Finance
688244,How I Make Money Writing About Stocks Online,https://www.udemy.com/seeking-alpha-how-to-write-about-stocks-online/,True,195,360,24,12,Beginner Level,2.5,2015-12-18T02:55:11Z,Business Finance
642060,Tradeonomics - Four Steps to Mastering Economic Indicators,https://www.udemy.com/a-laymans-guide-to-the-us-economy-demystifying-indicators/,True,20,1189,13,41,All Levels,4.0,2016-04-01T15:56:38Z,Business Finance
114518,Improve Your Financial Literacy,https://www.udemy.com/improve-your-financial-literacy-in-less-than-three-hours/,False,0,9995,96,10,All Levels,2.0,2014-02-10T03:50:00Z,Business Finance
1050168,Forex Trading : Power Of Moving Averages,https://www.udemy.com/forex-trading-learn-moving-averages-from-scratch-to-pro/,True,200,100,24,33,All Levels,4.0,2017-01-02T15:18:21Z,Business Finance
666910,Demystifying Your Personal Tax Return,https://www.udemy.com/demystifying-your-personal-tax-return/,False,0,3426,27,14,Beginner Level,1.0,2015-11-25T18:02:44Z,Business Finance
158830,Samuel and Co Trading - Stock & Forex Trading,https://www.udemy.com/samuel-co-forex-and-stock-trading/,True,50,592,109,24,All Levels,5.5,2014-02-10T18:12:06Z,Business Finance
577256,Accounting Department's Tips & Tricks - Beginner to Advanced,https://www.udemy.com/finance-and-accounting-for-beginners/,True,95,1222,14,61,All Levels,6.0,2015-10-07T17:25:18Z,Business Finance
192576,Certificate Program In Management Accounting,https://www.udemy.com/management-accounting/,True,50,1532,7,24,All Levels,6.0,2014-04-24T09:48:19Z,Business Finance
662450,How I Trade Forex Successfully,https://www.udemy.com/how-trade-forex-successfully/,False,0,5768,109,12,All Levels,1.5,2015-11-13T17:28:16Z,Business Finance
312834,Professional Trading With Institutional Supply & Demand,https://www.udemy.com/professional-trading-with-institutional-supply-demand/,True,200,343,84,37,All Levels,5.5,2014-11-24T10:19:35Z,Business Finance
44319,Master Calendar Spreads with this live trade on Gold (GLD),https://www.udemy.com/calendar-spreads/,True,60,540,44,6,Expert Level,1.0,2013-03-02T14:03:59Z,Business Finance
174800,Accounting 101: Guide to Business Accounting,https://www.udemy.com/book-keeping-level-1-learn-accounting-in-6-8-hours-amazing/,True,50,2031,15,29,Beginner Level,14.5,2014-04-21T16:23:37Z,Business Finance
1179546,An Introduction to Financial Markets on Wall Street,https://www.udemy.com/an-introduction-to-financial-markets-on-wall-street/,True,30,7,1,29,All Levels,2.0,2017-04-28T00:08:38Z,Business Finance
1239206,Win 90% of Trades; Quantitative Investments Models in Excel,https://www.udemy.com/quantitative-investments/,True,200,4,1,16,Beginner Level,1.5,2017-06-28T15:09:21Z,Business Finance
1149564,The Forex Pivot Points Trading Strategy,https://www.udemy.com/the-forex-pivot-points-trading-strategy/,True,20,21,2,12,All Levels,2.0,2017-03-22T22:57:34Z,Business Finance
79364,Your Business by the Numbers,https://www.udemy.com/your-business-by-the-numbers/,True,25,29,2,42,All Levels,3.0,2013-09-26T14:16:35Z,Business Finance
917172,Forex - Trade Gartley with Precision - Complete Strategy,https://www.udemy.com/forex-trade-gartley-with-precision-complete-strategy/,True,20,50,1,23,All Levels,1.5,2016-07-29T16:49:37Z,Business Finance
1276364,Bitcoin & Ethereum Course (2 Course Bundle),https://www.udemy.com/bitcoin-ethereum-bundle/,True,200,1,0,52,All Levels,2.5,2017-07-05T19:06:26Z,Business Finance
1237912,Create Trading Robot Without Coding Skills!,https://www.udemy.com/algotrading/,True,145,5,0,13,All Levels,1.0,2017-06-16T05:29:13Z,Business Finance
531710,Accounting and the Triple Bottom Line,https://www.udemy.com/accounting-and-the-triple-bottom-line/,True,30,6,2,19,Intermediate Level,0.55,2015-07-10T00:16:42Z,Business Finance
1021760,MQL5 - Beginner To Expert,https://www.udemy.com/mql5-beginner-to-expert/,True,45,16,1,16,Beginner Level,1.5,2017-04-06T21:39:23Z,Business Finance
193916,How to be A High Performance Insurance Broker Part 2,https://www.udemy.com/how-to-be-a-high-performance-insurance-broker-part-2/,True,40,70,3,15,All Levels,2.0,2014-04-06T16:50:18Z,Business Finance
74016,"CFA Level I Workshop 5: Corp Finance, Quants II & Derivative",https://www.udemy.com/cfa-workshop-5/,True,20,110,1,5,All Levels,1.0,2013-08-12T13:54:47Z,Business Finance
1073430,Xero Bookkeeping Course & Certification by Accounting Firm,https://www.udemy.com/online-bookkeeping-with-practice-and-job-recommendation/,True,20,7,3,15,Beginner Level,2.0,2017-02-13T23:21:49Z,Business Finance
834606,Trading News Using Binary Options,https://www.udemy.com/trading-news/,True,145,1186,16,22,All Levels,1.5,2016-05-11T18:15:50Z,Business Finance
629060,Trading Trends in ANY Market,https://www.udemy.com/trading-trends-in-the-market-stocks-futures-forex/,True,30,632,49,22,All Levels,2.0,2015-10-04T18:43:16Z,Business Finance
698278,Financial Statements Analysis: Learn to Invest Like a Pro!,https://www.udemy.com/financial-statements-and-ratios-for-beginner-investors/,True,50,1237,54,35,Beginner Level,2.5,2016-02-04T17:03:14Z,Business Finance
975414,Contango VXX - ETF Options Trading - Double Your Investment,https://www.udemy.com/contango-vxx-trading-idiot-proof-way-to-double-your-return/,True,200,513,20,20,All Levels,1.0,2016-10-06T15:10:38Z,Business Finance
112296,Mergers and Acquisitions M&A Essentials You Need to Know,https://www.udemy.com/intro-to-the-ma-game/,True,95,4103,19,15,Beginner Level,1.0,2013-11-13T11:08:51Z,Business Finance
536166,TRADING MARKET MAP,https://www.udemy.com/trading-market-map/,True,45,1489,32,27,All Levels,3.5,2015-07-01T16:25:45Z,Business Finance
718338,How To Confidently Join The Bitcoin Revolution,https://www.udemy.com/how-to-confidently-join-the-bitcoin-revolution/,True,45,547,98,53,Beginner Level,7.0,2016-01-14T23:03:31Z,Business Finance
996612,High Probability Trading Across Any Market: Stocks & Forex,https://www.udemy.com/motrendtum-high-probability-trading/,True,95,353,27,105,All Levels,18.5,2016-12-01T17:36:07Z,Business Finance
941120,Option Trading for Rookies: Make & Manage Profitable Trades,https://www.udemy.com/option-trading-for-rookies-make-and-manage-profitable-option-trades/,True,95,507,19,59,All Levels,2.0,2016-09-02T22:19:00Z,Business Finance
498488,Your First Successful Forex Trades - With Case Studies,https://www.udemy.com/success-forex/,True,200,1079,34,16,All Levels,2.5,2015-05-26T20:48:48Z,Business Finance
364566,MCA Accountancy and Financial Management -Paper MCS 35 IGNOU,https://www.udemy.com/time-value-of-money/,True,180,3667,4,460,All Levels,43.5,2014-12-06T16:34:03Z,Business Finance
600316,"High-Frequency Trading #1: Basics, History & Strategies",https://www.udemy.com/high-frequency-trading-1-basics-history-strategies-forex-stocks/,True,50,2222,24,11,All Levels,0.6,2015-09-28T18:51:08Z,Business Finance
1136912,Financial Accounting - The Ultimate Beginner Course,https://www.udemy.com/financial-accounting-the-ultimate-beginner-course/,True,100,9,2,101,Beginner Level,10.0,2017-04-06T00:39:12Z,Business Finance
239416,Level 1 2014 CFA® Program – Derivatives,https://www.udemy.com/cfa-derivatives/,True,40,225,2,17,All Levels,2.5,2014-09-03T07:58:05Z,Business Finance
722274,The Complete Investing Guide: How to Beat Wall Street,https://www.udemy.com/the-complete-investing-guide-how-to-beat-wall-street/,True,50,13,3,25,All Levels,5.5,2016-06-14T19:11:45Z,Business Finance
201942,"Bitcoins - Past, Present, Future",https://www.udemy.com/bitcoins-past-present-future/,True,20,373,3,14,Beginner Level,1.5,2014-04-23T02:27:31Z,Business Finance
355798,Learn Accounting by Specific Examples - Part 1,https://www.udemy.com/accounting1/,True,50,306,0,5,All Levels,0.6333333333333333,2014-11-28T05:56:37Z,Business Finance
702800,Forex: Presentation and Analysis (Fundamental & Technical),https://www.udemy.com/forexpresentation-and-analysis-fundamental-and-technical/,True,50,14,3,22,Beginner Level,1.5,2016-01-16T02:52:22Z,Business Finance
425126,Year-end QuickBooks Procedures,https://www.udemy.com/year-end-quickbooks-procedures/,True,20,51,2,10,Beginner Level,2.0,2015-02-19T22:08:53Z,Business Finance
1013838,Price Action Gap Trading Strategies,https://www.udemy.com/gaptradingcourse/,True,20,13,2,5,Intermediate Level,1.0,2016-12-31T02:59:33Z,Business Finance
867682,How to start a successful career in finance?,https://www.udemy.com/the-complete-guide-how-to-get-your-dream-job-in-finance/,False,0,1318,7,27,All Levels,2.0,2016-08-24T18:29:34Z,Business Finance
239268,Level 1 2014 CFA® Program – Equity Investments,https://www.udemy.com/cfa-equity/,True,40,347,0,24,All Levels,4.5,2015-01-30T08:19:51Z,Business Finance
361286,Wealth Management,https://www.udemy.com/austalgroupwealth-management/,True,30,274,1,21,All Levels,3.5,2014-12-17T14:24:15Z,Business Finance
1036456,Basics of Private Equity,https://www.udemy.com/basics-of-private-equity/,True,60,9,2,6,Intermediate Level,0.6666666666666666,2017-05-09T22:19:30Z,Business Finance
617976,Curso Completo del Mercado FOREX,https://www.udemy.com/curso-completo-del-mercado-forex/,True,200,359,86,50,All Levels,5.5,2015-11-18T00:08:44Z,Business Finance
196620,Como Investir em Ações para Iniciantes,https://www.udemy.com/como-investir-em-acoes-para-iniciantes/,False,0,6024,890,18,All Levels,1.0,2014-04-11T22:03:10Z,Business Finance
667332,Robots de Forex: espere ganar 175%p.a! Incluye Robot de Fx! ,https://www.udemy.com/forex-robots/,True,130,315,49,41,All Levels,5.0,2016-01-22T18:47:07Z,Business Finance
639126,6時間でインターバンク市場を攻略!最短距離でトレード基礎力,https://www.udemy.com/startforex/,True,35,280,40,54,All Levels,4.0,2015-11-10T00:22:05Z,Business Finance
53211,Matemática Financeira de um jeito fácil,https://www.udemy.com/matematica-financeira2/,True,95,401,67,20,All Levels,1.5,2013-07-23T20:45:33Z,Business Finance
212952,ビットコイン生態系|既存通貨が主役をやめる日,https://www.udemy.com/bitcoin-ecosystem/,True,20,701,55,16,Beginner Level,1.5,2014-06-23T02:24:31Z,Business Finance
1151398,Trading Forex - Trader avec les figures harmoniques,https://www.udemy.com/trading-forex-trader-avec-les-figures-harmoniques/,True,90,57,11,23,Beginner Level,2.0,2017-03-31T22:44:53Z,Business Finance
1016420,Введение в Финансовую Инженерию,https://www.udemy.com/quantfinance101/,True,50,205,20,20,Beginner Level,5.0,2016-11-20T22:34:45Z,Business Finance
1178820,Aprenda a Investir no Tesouro Direto Passo a Passo,https://www.udemy.com/tesouro-direto-passo-a-passo/,True,35,62,10,19,All Levels,1.0,2017-04-25T07:06:14Z,Business Finance
881778,資産運用の基礎を学ぶファイナンス入門,https://www.udemy.com/jun-sakai-trading-course5/,True,20,114,13,52,Beginner Level,4.0,2016-07-07T18:16:41Z,Business Finance
173462,Aprende a invertir y deja que tu dinero trabaje para ti,https://www.udemy.com/aprende-a-invertir-y-deja-que-tu-dinero-trabaje-para-ti/,True,145,789,68,95,All Levels,14.0,2014-03-03T09:52:27Z,Business Finance
648174,Buchführung lernen leicht gemacht,https://www.udemy.com/buchfuehrung-lernen-leicht-gemacht/,True,40,446,39,70,Beginner Level,5.0,2016-06-13T19:07:19Z,Business Finance
517466,Day Trading: High ROI Day Trading ,https://www.udemy.com/day-trading-forex/,True,150,17,2,51,Intermediate Level,6.5,2015-07-29T19:08:33Z,Business Finance
304422,Flow Management and Forecasting,https://www.udemy.com/cashflow-management-and-forecasting/,True,20,16,2,10,All Levels,1.0,2014-09-22T04:57:47Z,Business Finance
177214,An Introduction to Management of Portfolios (MoP),https://www.udemy.com/an-introduction-to-management-of-portfolios-mop/,True,20,117,15,6,Beginner Level,1.5,2014-03-06T09:12:15Z,Business Finance
73898,CFA Level I Workshop 1: Ethics and Quantitative Methods,https://www.udemy.com/cfa-workshop-1/,True,20,147,4,5,All Levels,1.0,2013-08-12T13:21:26Z,Business Finance
671548,Accounting Basics 101 for Understanding Business,https://www.udemy.com/working-capital-formula-secrets-revealed/,True,20,7,2,18,All Levels,1.0,2016-01-07T17:48:25Z,Business Finance
504620,Mortgage Acceleration,https://www.udemy.com/mortgage-acceleration/,True,20,247,2,17,All Levels,1.5,2015-08-21T18:36:25Z,Business Finance
98706,Stock Market for Beginners. Learn to trade,https://www.udemy.com/stock-market-for-dummies-learn-to-trade/,True,35,143,15,42,All Levels,3.5,2013-10-03T17:44:22Z,Business Finance
364428,CFA Corporate Finance Level 1 (Part 1),https://www.udemy.com/learn-cost-of-capital-of-business/,True,180,621,1,107,All Levels,14.5,2014-12-06T07:44:46Z,Business Finance
560472,Trading Tips from Hedge Fund Manager,https://www.udemy.com/trading-tips-from-hedge-fund-manager/,True,50,6,2,32,All Levels,1.0,2015-07-22T20:56:34Z,Business Finance
682986,Effective Debt Collection Strategies,https://www.udemy.com/effective-debt-collection/,True,40,5,2,16,Intermediate Level,1.5,2015-11-30T22:38:49Z,Business Finance
270844,IAS 1-Presentation of Financial Statements ,https://www.udemy.com/ias-1-presentation-of-financial-statements/,False,0,2674,81,8,All Levels,1.0,2014-10-03T12:31:06Z,Business Finance
507600,Stock Trading Strategies Using a D.A.R.T.,https://www.udemy.com/stock-trading-strategies-using-a-dart/,True,20,227,3,5,All Levels,1.0,2015-05-26T17:15:13Z,Business Finance
363078,Capital Structuring Techiques for CA / CFA / CPA Exams,https://www.udemy.com/capital-structuring-decisions/,True,125,4480,12,50,Intermediate Level,7.0,2014-12-05T09:23:16Z,Business Finance
933394,The Complete Guide to Forex Trading,https://www.udemy.com/the-complete-guide-to-forex-trading/,True,20,1329,12,33,All Levels,5.0,2017-02-05T16:14:41Z,Business Finance
1090408,Learn How to Trade Binary Options Professionally,https://www.udemy.com/freebinaryoptions/,False,0,5144,169,7,All Levels,1.0,2017-02-03T22:15:55Z,Business Finance
707688,Learn How to Start Small and Make It Big In Small-Cap Stocks,https://www.udemy.com/small-cap-stocks/,True,50,2635,13,29,Beginner Level,2.0,2016-02-08T16:30:15Z,Business Finance
544176,Trading strategies with common sense technical analysis,https://www.udemy.com/trading-strategies-with-common-sense-technical-analysis/,True,75,1750,71,29,All Levels,3.0,2015-07-19T17:41:41Z,Business Finance
392478,Startup Business: How To Raise Seed Capital,https://www.udemy.com/startup-finance-small-business-loans-and-grants/,True,95,3360,12,34,All Levels,3.0,2015-03-15T20:29:17Z,Business Finance
613422,Business Economics - Basics (College Level),https://www.udemy.com/business-economics-basics/,True,50,3425,10,50,All Levels,4.0,2015-09-16T18:29:12Z,Business Finance
316750,Technical Analysis 101: Master the Basics of Trading,https://www.udemy.com/master-the-basics-of-trading-through-support-and-resistance/,True,95,2688,61,50,All Levels,2.0,2015-05-13T22:54:25Z,Business Finance
884658,Investing in Stocks? Master The Art of Covered Calls Selling,https://www.udemy.com/dont-leave-money-on-the-table-sell-covered-calls/,True,80,1095,17,35,All Levels,3.0,2016-07-28T00:32:48Z,Business Finance
735550,How to Trade Binary Options Effectively – All Levels,https://www.udemy.com/trade-binary-options/,True,195,1680,39,17,All Levels,1.0,2016-01-27T17:51:25Z,Business Finance
770486,Stock Market: The Zero Risk Way of Investing,https://www.udemy.com/stock-market-zero-risk-investing/,True,25,2046,14,8,Beginner Level,0.6333333333333333,2016-03-18T15:51:49Z,Business Finance
543212,Forex Trading using professional indicators by TOP traders,https://www.udemy.com/forex-trading-using-professional-indicators-by-top-traders/,True,200,1699,40,28,All Levels,3.5,2015-07-07T20:37:59Z,Business Finance
804298,Corporate Finance 101: Equity Valuation,https://www.udemy.com/corp-fin-101-equity-valuation/,True,50,1071,14,50,All Levels,6.0,2016-03-29T19:40:05Z,Business Finance
707054,Trading Strategies: Find The Trading Strategy That Fits You,https://www.udemy.com/trading-strategies-find-the-trading-strategy-that-fits-you/,True,20,1037,3,12,All Levels,2.0,2015-12-29T17:15:32Z,Business Finance
964828,Forex Trading - Learn An Effective Forex Trading Strategy,https://www.udemy.com/forex-trading-strategy-technical-analysis/,True,95,223,34,16,All Levels,1.5,2016-12-14T22:45:02Z,Business Finance
298522,Navigate the 10-K and Other Financial Reports,https://www.udemy.com/navigate-the-10-k-and-other-financial-reports/,True,40,653,55,20,All Levels,2.5,2014-11-08T18:50:53Z,Business Finance
1196728,From 0 to 1: Investments and Portfolio Theory,https://www.udemy.com/from-0-to-1-investments-and-portfolio-theory/,True,50,230,0,22,Beginner Level,4.5,2017-05-01T23:42:52Z,Business Finance
255170,Bitcoin - The Complete Guide,https://www.udemy.com/bitcoin-the-complete-guide/,True,20,2281,12,24,All Levels,5.5,2014-07-04T00:45:03Z,Business Finance
40670,Professional Trader's Mindset - Complete Forex Course,https://www.udemy.com/professional-trader-mindset/,True,50,4702,17,6,All Levels,1.0,2013-06-07T17:07:48Z,Business Finance
737832,Bitcoin Peer Investing: How To Generate Double Digit Returns,https://www.udemy.com/bitcoin-peer-investing/,True,25,366,45,41,All Levels,2.5,2016-01-24T23:09:17Z,Business Finance
240256,Forex Breakout Profits: The Definitive Guide,https://www.udemy.com/forex-breakout-profits-the-definitive-guide/,True,25,521,60,27,All Levels,2.5,2014-11-30T19:52:37Z,Business Finance
931626,Learn to Trade With Fibonacci Tools,https://www.udemy.com/learn-to-trade-with-fibonacci-tools/,True,30,252,45,30,Intermediate Level,4.0,2016-08-17T20:24:38Z,Business Finance
663022,"Investing Internationally into Real Estate, Stocks and Bonds",https://www.udemy.com/investing-internationally-into-real-estate-stocks-and-bonds/,True,200,1101,14,37,All Levels,2.0,2016-01-27T18:40:25Z,Business Finance
1196816,From 0 to 1: Bond Theory and Valuation,https://www.udemy.com/from-0-to-1-bond-theory-and-valuation/,True,50,223,2,29,Beginner Level,4.0,2017-05-02T05:53:56Z,Business Finance
202290,Stock Market Mastery,https://www.udemy.com/stockmarketmastery/,True,20,135,2,25,All Levels,7.5,2014-06-08T14:46:02Z,Business Finance
690546,UK Self Assessment Tax Return Filing Online,https://www.udemy.com/uk-tax-return/,True,20,23,7,6,All Levels,0.4666666666666667,2015-12-07T18:36:33Z,Business Finance
560218,Introduction to Financial Statements,https://www.udemy.com/introduction-to-financial-statements/,True,40,112,1,14,Beginner Level,1.5,2015-08-16T22:26:02Z,Business Finance
253810,"IAS 8-Accounting Policies ,Changes in Accounting Estimates",https://www.udemy.com/ias-8-accounting-policies-changes-in-accounting-estimates/,False,0,2122,30,15,All Levels,2.5,2014-10-03T12:29:41Z,Business Finance
420926,CFA® Level 1 2014 – Financial Reporting and Analysis,https://www.udemy.com/cfa-level1-fra/,True,50,152,2,102,All Levels,10.0,2015-02-26T08:48:32Z,Business Finance
382824,Investment Banking Operations : Securities Trade Life Cycle,https://www.udemy.com/investment-banking-operations-securities-trade-life-cycle/,True,30,267,9,10,All Levels,2.0,2015-01-02T10:18:52Z,Business Finance
73046,CFA Level I Foundation Course: Introduction to Quants,https://www.udemy.com/cfa-foundation-quants/,True,50,155,4,11,Beginner Level,5.0,2013-08-05T16:03:22Z,Business Finance
73860,Financial Risk Manager (FRM) Certification: Level I,https://www.udemy.com/financial-risk-manager-frm-certification-level-i/,True,50,87,25,113,All Levels,24.0,2013-10-26T12:54:58Z,Business Finance
191588,IAS 10 - Events After Reporting Date,https://www.udemy.com/ias-10-events-after-reporting-date/,False,0,2146,35,8,All Levels,1.0,2014-05-07T12:48:04Z,Business Finance
665866,Investment Portfolio Analysis with Excel,https://www.udemy.com/investment-portfolio-analysis-with-excel/,True,50,154,7,39,All Levels,9.0,2015-11-12T21:51:19Z,Business Finance
73068,Introduction to the CFA Program,https://www.udemy.com/cfa-introduction/,False,0,4248,66,6,Beginner Level,1.0,2013-08-12T11:10:42Z,Business Finance
252950,Chartered Financial Analyst (CFA) - Level 1 - FRA,https://www.udemy.com/apnacourse-cfa-1-fra/,True,30,517,5,17,Beginner Level,14.5,2014-06-30T09:21:49Z,Business Finance
760990,Excel 4 Accounting & Bookkeeping - Master Lookup Functions,https://www.udemy.com/excel-4-accountants-bookkeepers-master-lookup-fuctions/,True,35,2638,140,12,All Levels,1.0,2016-02-13T03:19:09Z,Business Finance
874312,Cashflow Management for Small Businesses: A How To Guide,https://www.udemy.com/cashflow-management-for-small-businesses-a-how-to-guide/,True,25,2914,11,5,All Levels,0.6166666666666667,2016-06-13T14:39:21Z,Business Finance
373716,Forex Basics (Professional Course Level),https://www.udemy.com/basics-of-international-finance/,True,20,6050,34,25,All Levels,1.5,2014-12-19T08:49:47Z,Business Finance
1275790,Advanced Butterfly Spreads for Options Income Strategies,https://www.udemy.com/advanced-butterfly-spread-option-strategies/,True,60,16,1,8,Expert Level,1.0,2017-07-04T18:08:01Z,Business Finance
836926,The Holy Grail of Auto Trading Forex Futures Stocks Revealed,https://www.udemy.com/the-holy-grail-of-auto-trading-revealed/,True,50,3917,45,7,All Levels,1.0,2016-05-03T18:23:01Z,Business Finance
1131122,IPO Fundamentals,https://www.udemy.com/ipo-fundamentals-basics-definition-tutorial/,True,20,1122,13,6,Beginner Level,1.0,2017-03-02T00:58:36Z,Business Finance
595258,Finance for Non-Finance: Learn Quick and Easy,https://www.udemy.com/finance-for-non-financials-make-profitable-decisions/,True,20,4158,51,30,Beginner Level,2.5,2016-02-25T21:48:39Z,Business Finance
1269590,Advanced Options Trading Course,https://www.udemy.com/advanced-option-trading-course/,True,40,1252,2,6,Intermediate Level,0.5333333333333333,2017-06-29T20:18:19Z,Business Finance
611420,Statistics - Measures of Dispersion for CA / CS / CFA exams,https://www.udemy.com/measures_of_dispersion/,True,20,5108,9,13,All Levels,1.0,2015-09-14T19:47:25Z,Business Finance
941990,Work From Home Online (Part/Full) : Trade Forex 4 Beginners,https://www.udemy.com/make-money-work-from-home-online-trade-forex-4-beginners/,True,45,2981,23,17,Beginner Level,1.0,2016-10-09T19:33:35Z,Business Finance
1119920,Financial Ratios Using Excel,https://www.udemy.com/financialratios/,True,100,1223,14,29,Beginner Level,1.0,2017-03-07T23:10:03Z,Business Finance
256200,How To Start Trading Penny Stocks In 10 Easy Steps 2017,https://www.udemy.com/penny-stock-trading-analyzing-the-most-profitable-stocks/,True,50,7750,58,15,All Levels,1.5,2014-07-17T08:02:54Z,Business Finance
207166,How to Copy the Best Traders on Etoro,https://www.udemy.com/how-to-copy-the-best-traders-on-etoro/,True,90,564,9,41,All Levels,3.5,2014-05-01T20:37:45Z,Business Finance
390472,How To Set Up A Limited Company In The UK,https://www.udemy.com/how-to-set-up-a-limited-company-in-the-uk/,False,0,2075,69,11,Beginner Level,0.7333333333333333,2015-04-20T23:31:47Z,Business Finance
575476,Forex trading made simple,https://www.udemy.com/forex-mentor-online-school/,True,100,45,4,31,All Levels,1.5,2015-09-25T19:08:09Z,Business Finance
460652,Financial and Business Simulation with Microsoft Excel,https://www.udemy.com/simulation/,True,20,44,5,8,Expert Level,0.5166666666666666,2015-03-29T22:10:23Z,Business Finance
157336,10. Bonds and Bond Pricing,https://www.udemy.com/bonds-and-bond-pricing/,True,20,308,4,10,All Levels,1.0,2014-02-11T18:11:55Z,Business Finance
65110,Professional Risk Manager (PRM) Certification: Level 3,https://www.udemy.com/professional-risk-manager-prm-certification-level-3/,True,50,55,5,22,All Levels,12.5,2013-07-23T20:26:47Z,Business Finance
987682,Stocks: Quick Method to get started Investing,https://www.udemy.com/quick-method-investing/,False,0,718,13,7,Beginner Level,1.0,2017-05-18T17:37:33Z,Business Finance
835212,The Fundamentals Of Finance For Non-Finance Professionals,https://www.udemy.com/finance-for-nonfinance/,True,40,206,3,7,All Levels,1.5,2016-05-18T16:02:21Z,Business Finance
882276,Forex - Top Equity Management Strategy,https://www.udemy.com/forex-millionaire-money-management-strategy/,True,20,18,4,13,All Levels,0.5833333333333334,2016-06-20T19:56:50Z,Business Finance
971110,The Truths about (in)secure Retirement,https://www.udemy.com/retirement-planning-calculator/,True,200,86,6,32,Intermediate Level,4.5,2016-10-03T18:42:18Z,Business Finance
414744,Learn How to File Taxes for Uber and Lyft Drivers,https://www.udemy.com/learn-how-to-file-taxes-from-uber-lyft/,True,40,294,5,25,All Levels,2.0,2015-02-12T06:17:10Z,Business Finance
537286,Learn the Basics of the Wave Principle:,https://www.udemy.com/the-basics-of-the-wave-principle/,True,30,27,4,10,Beginner Level,1.5,2015-07-02T00:12:02Z,Business Finance
1123226,MasterClass-Japanese & Heiken Ashi CandleStick Patterns,https://www.udemy.com/power-of-engulfing-candlestick-patterns-in-forex-trading/,True,195,375,10,26,All Levels,3.5,2017-03-12T16:13:38Z,Business Finance
1170626,Start Trading Stocks Using Technical Analysis! Part 2,https://www.udemy.com/start-trading-stocks-using-technical-analysis-part-2/,True,95,94,11,25,All Levels,2.0,2017-05-23T00:20:02Z,Business Finance
1016996,Introduction to Corporate Finance (Mergers & Acquisitions),https://www.udemy.com/introduction-to-corporate-finance/,False,0,2080,83,30,Beginner Level,1.5,2017-02-28T16:14:06Z,Business Finance
1046992,Forex & Financial Market Trading Tutorial- Online Strategies,https://www.udemy.com/forex-education-school-pforex/,False,0,3137,30,69,All Levels,9.0,2017-04-12T16:26:51Z,Business Finance
929526,Learn to trade Candlestick Patterns,https://www.udemy.com/learn-to-trade-candlestick-patterns/,True,20,155,23,22,Intermediate Level,1.5,2016-08-16T23:58:31Z,Business Finance
631276,High-Frequency Trading #2: Market Structure & Instruments,https://www.udemy.com/high-frequency-trading-2-market-structure-instruments/,True,50,1732,11,12,All Levels,0.6833333333333333,2015-11-19T18:22:19Z,Business Finance
86558,The Art Of Financial Valuation With Certificate,https://www.udemy.com/learn-how-to-think-like-a-financier-leadership-in-finance/,True,20,3372,12,12,All Levels,2.0,2013-09-29T23:52:54Z,Business Finance
615600,Sensitivity & Scenario Analysis for CA / CFA / CPA Exams,https://www.udemy.com/sensitivity-and-scenario-analysis-in-capital-budgeting/,True,20,2185,3,13,All Levels,2.0,2015-09-20T20:26:40Z,Business Finance
799434,"Economics: Competition, Elasticity, a little Game Theory",https://www.udemy.com/micro-econ-game-theory/,True,50,1008,14,42,All Levels,6.0,2016-04-12T15:12:18Z,Business Finance
1088656,Quantitative Trading Analysis with Python,https://www.udemy.com/quantitative-trading-analysis-with-python/,True,50,256,17,49,All Levels,5.5,2017-01-27T17:11:28Z,Business Finance
674354,Invest Like a Pro!,https://www.udemy.com/mastering-darvas-trade-like-a-pro-on-the-stock-market/,True,200,1173,22,15,Beginner Level,2.5,2015-12-29T18:56:44Z,Business Finance
1187758,Options Trading Essentials: The ULTIMATE Guides,https://www.udemy.com/options-trading-essentials/,False,0,1352,6,20,All Levels,4.0,2017-04-24T21:59:20Z,Business Finance
548764,ACCA FA1 Recording Financial Transactions,https://www.udemy.com/acca-fa1-recording-financial-transactions/,True,50,49,8,27,Beginner Level,3.5,2015-07-14T23:01:39Z,Business Finance
410576,CFA® Level 1 2014 – Portfolio Management,https://www.udemy.com/portfolio-management-cfa-level-1/,True,40,124,2,10,All Levels,2.0,2015-03-02T01:46:14Z,Business Finance
501384,Essentials Of Swing Trading Stocks,https://www.udemy.com/essentials-of-swing-trading/,True,20,105,9,5,All Levels,1.0,2015-06-03T18:00:18Z,Business Finance
59725,Small Business and Managerial Accounting Training Tutorial,https://www.udemy.com/small-business-and-managerial-accounting-training-tutorial/,True,20,117,3,71,Beginner Level,3.5,2013-06-19T17:52:07Z,Business Finance
47504,Use Crowdfunding Effectively With Indiegogo and Kickstarter,https://www.udemy.com/learncrowdfunding/,False,0,6533,32,9,All Levels,2.0,2013-06-25T15:22:28Z,Business Finance
1257502,The Complete Litecoin Crypto Currency Bootcamp,https://www.udemy.com/the-complete-litecoin-crypto-currency-bootcamp/,True,20,7,3,24,All Levels,1.0,2017-06-28T23:51:45Z,Business Finance
304426,Bank Reconciliation & VAT on Excel,https://www.udemy.com/bank-reconciliation-vat-on-excel/,True,20,30,5,19,All Levels,1.5,2014-09-22T04:56:43Z,Business Finance
581598,Commodity Futures Day Trading Strategies,https://www.udemy.com/futures-day-trade-course/,True,95,91,5,28,All Levels,5.0,2015-08-28T23:47:29Z,Business Finance
328842,Learn to invest in the Stock Market,https://www.udemy.com/learn-to-invest-in-the-stock-market/,True,40,28,5,14,Beginner Level,1.0,2014-11-12T17:37:03Z,Business Finance
541824,FX Commodity Chart Trading Patterns for Success,https://www.udemy.com/fx-commodity-chart-patterns-mt4-platform/,True,50,83,10,15,All Levels,2.5,2015-07-19T19:23:14Z,Business Finance
103144,Forex Elite Trading,https://www.udemy.com/elite-forex-trading-system-beginners-to-intermediate-traders/,True,85,623,7,22,All Levels,6.0,2013-10-18T16:06:44Z,Business Finance
937150,How to Invest in Startups - Expert Reveals Winning Secrets.,https://www.udemy.com/how-to-invest-in-startups/,False,0,1625,5,145,All Levels,8.5,2016-08-29T14:24:43Z,Business Finance
1215926,Kickstarter success in 5 easy steps,https://www.udemy.com/kickstarter-success-in-5-easy-steps/,True,20,0,0,12,All Levels,0.5166666666666666,2017-05-16T14:55:28Z,Business Finance
1035638,Understanding Financial Statements,https://www.udemy.com/understanding-financial-statements/,True,25,0,0,10,All Levels,1.0,2016-12-15T14:56:17Z,Business Finance
1249146,Planning and Executing a Financial Statement Audit,https://www.udemy.com/planning-executing-financial-statement-audit/,True,50,0,0,9,Intermediate Level,2.0,2017-06-29T23:18:51Z,Business Finance
1233894,The Latest Updates 2016 Financial Accounting Standards Board,https://www.udemy.com/2016-fasb-updates/,True,50,1,0,9,Intermediate Level,2.0,2017-06-29T21:40:54Z,Business Finance
975910,How to achieve personal transformation,https://www.udemy.com/learnhowtocreatewealth/,True,20,0,0,10,All Levels,0.5333333333333333,2016-12-22T00:28:07Z,Business Finance
1221942,Basic Bookkeeping,https://www.udemy.com/basic-bookkeeping-course/,True,35,0,0,12,Beginner Level,0.7333333333333333,2017-05-23T16:20:18Z,Business Finance
1169196,"Credit concepts and checklist for bankers, credit analyst",https://www.udemy.com/credit-concepts-and-checklist-for-bankers-credit-analyst/,True,20,0,0,10,Beginner Level,2.5,2017-04-24T14:56:01Z,Business Finance
1271182,Practical Film Financing: Finding & Pitching Investors,https://www.udemy.com/indiefilm-financing/,True,100,0,0,9,Beginner Level,1.0,2017-07-05T21:46:55Z,Business Finance
1233302,Ratio Analysis for Financial Statements,https://www.udemy.com/ratio-analysis-financial-statements/,True,50,0,0,6,Beginner Level,2.0,2017-07-03T21:39:57Z,Business Finance
1231958,60 Minutes to Fundamental Accounting Skills,https://www.udemy.com/60-minute-fundamental-accounting-skills/,True,75,0,0,9,Beginner Level,2.5,2017-06-28T21:55:29Z,Business Finance
837322,Essentials of money value: Get a financial Life !,https://www.udemy.com/essentials-of-money-value/,True,20,0,0,20,All Levels,0.6166666666666667,2016-05-16T18:28:30Z,Business Finance
1157298,Introduction to Forex Trading Business For Beginners,https://www.udemy.com/introduction-to-forex-trading-business-for-beginners/,True,20,0,0,27,Beginner Level,1.5,2017-04-23T16:19:01Z,Business Finance
42645,"Backspreads, Diagonals and Butterflies - Advanced Strategies",https://www.udemy.com/calendars-diagonals-butterfly-spreads/,True,60,737,41,10,Expert Level,2.0,2013-03-03T22:15:18Z,Business Finance
355622,Trade Forex 13 Patterns - Golden Ratios Secret Revealed,https://www.udemy.com/forex-13-patterns-trade-with-precision/,True,200,554,63,44,All Levels,4.0,2015-01-10T13:49:22Z,Business Finance
514036,Crystal ball trading - foresee price with seasonal patterns,https://www.udemy.com/seasonality/,True,145,807,19,23,All Levels,6.0,2015-06-14T22:08:54Z,Business Finance
45136,Weekly Options and study of Options expiration dynamics,https://www.udemy.com/weekly-options/,True,60,779,56,6,Expert Level,1.0,2013-03-08T12:22:12Z,Business Finance
371574,Cost Accounting Basics (Professional Course Level),https://www.udemy.com/basics-of-cost-accounting/,True,20,1777,11,23,Beginner Level,1.0,2014-12-17T01:11:28Z,Business Finance
915964,Learn to Reliably Invest In The Stock Market,https://www.udemy.com/become-a-stock-millionaire/,True,50,841,14,19,All Levels,0.6166666666666667,2016-07-29T15:06:31Z,Business Finance
1209556,Hedge Fund Trading Systems Part Two - Stocks & ETFs,https://www.udemy.com/hedge-fund-trading-systems-two/,True,200,56,10,23,Expert Level,2.5,2017-05-16T22:22:15Z,Business Finance
412856,Stock Market Option Trading: How Sell Options For Premium,https://www.udemy.com/make-a-steady-monthly-income-selling-stock-options/,True,200,1909,8,19,Intermediate Level,2.0,2015-02-08T20:06:08Z,Business Finance
42651,Straddles and Strangles - Volatility moves in any direction,https://www.udemy.com/straddles-and-strangles/,True,60,775,54,11,Expert Level,1.5,2013-03-12T12:30:40Z,Business Finance
294914,Debt Collection Management: Get Paid On Time EVERY TIME!,https://www.udemy.com/accounts-receivable-help/,True,20,1255,8,38,All Levels,3.0,2015-01-27T07:50:28Z,Business Finance
219306,Learn about it,https://www.udemy.com/the-mysterious-camarilla-equation/,True,20,1193,24,27,All Levels,1.5,2014-06-05T22:40:42Z,Business Finance
652768,Trading: Basics of Trading for Beginners,https://www.udemy.com/money-basics-of-trading-for-beginners/,True,140,1309,4,20,Beginner Level,1.5,2015-11-11T01:30:17Z,Business Finance
42197,Options Spreads Bundle- the heart of Options Trading,https://www.udemy.com/options-spreads-explained/,True,120,623,43,8,Intermediate Level,2.5,2013-02-19T15:04:46Z,Business Finance
936298,Trade the News in Forex: EA Robot Included,https://www.udemy.com/tradethenews/,True,200,276,11,11,All Levels,0.5666666666666667,2016-08-30T02:40:52Z,Business Finance
885443,Investment Portfolio Analysis with R,https://www.udemy.com/investment-portfolio-analysis-with-r/,True,50,314,38,37,All Levels,6.5,2016-06-27T20:39:08Z,Business Finance
585208,Basics of Economics For Beginners A to Z - A Complete Course,https://www.udemy.com/basics-of-economics-for-absolute-beginners/,True,170,1942,5,24,Beginner Level,1.5,2015-08-24T00:36:33Z,Business Finance
386922,Seeing the Big Picture: Understanding Financial Statements,https://www.udemy.com/seeing-the-big-picture-financial-statements-made-easy/,True,50,885,69,14,All Levels,0.7166666666666667,2015-01-07T21:40:43Z,Business Finance
1023650,Financial Modeling for Professionals in 1 Day!,https://www.udemy.com/financial-modeling-for-professionals/,True,200,226,12,29,Intermediate Level,4.5,2016-12-05T16:33:34Z,Business Finance
676764,Create Your Own Automated Stock Trading Robot In EXCEL!,https://www.udemy.com/automated-trading-excel/,True,150,461,45,44,All Levels,5.0,2015-12-09T18:35:24Z,Business Finance
696342,FOREX: From Zero To Hero,https://www.udemy.com/forex-from-zero-to-hero/,True,150,152,27,26,All Levels,3.0,2017-02-07T05:21:14Z,Business Finance
41145,Learn Call Options and Put Options - Introduction to Options,https://www.udemy.com/learn-options-trading-introduction-call-put-options/,True,60,1017,74,20,Beginner Level,3.0,2013-02-15T20:43:11Z,Business Finance
145220,1. Principles of Simple Interest ,https://www.udemy.com/principles-of-simple-interest/,True,20,1074,6,13,All Levels,1.0,2014-01-13T20:43:46Z,Business Finance
868686,Double Entry Bookkeeping,https://www.udemy.com/double-entry-bookkeeping/,True,50,440,17,10,Beginner Level,1.0,2016-06-15T18:23:18Z,Business Finance
745110,MQL5 Tutorial Bootcamp,https://www.udemy.com/mql5-tutorial-bootcamp/,True,20,978,7,13,Beginner Level,0.5333333333333333,2016-01-29T00:11:42Z,Business Finance
745832,Succeed at Options Even If You Don't Know Where to Start,https://www.udemy.com/succeed-at-options-even-if-you-dont-know-where-to-start/,True,200,36,1,12,All Levels,1.5,2017-04-17T18:00:13Z,Business Finance
43778,"Buying, Selling, and Storing Precious Metal",https://www.udemy.com/got-gold-get-gold-buying-and-selling-precious-metal/,True,20,74,1,14,All Levels,1.0,2013-02-27T03:38:36Z,Business Finance
19653,Accounting Skills for Managers,https://www.udemy.com/accounting-skills-for-managers/,True,20,78,3,10,Beginner Level,1.5,2012-06-27T16:41:09Z,Business Finance
1013190,Analysis and Evaluation of Economic Feasibility of Projects,https://www.udemy.com/feasibility-study/,True,100,10,1,8,Intermediate Level,1.0,2016-12-19T14:47:22Z,Business Finance
824034,Technical Analysis: Understanding Price Action,https://www.udemy.com/technical-analysis-understanding-price-action/,True,45,39,6,37,All Levels,3.0,2016-08-26T22:57:33Z,Business Finance
370440,Bitcoin For Beginners,https://www.udemy.com/bitcoinforbeginners/,True,50,37,3,22,Beginner Level,4.0,2014-12-29T18:54:54Z,Business Finance
312860,"IAS 16-Property,Plant and Equipment ",https://www.udemy.com/ias-16-propertyplant-and-equipment/,False,0,2166,38,20,All Levels,3.0,2014-10-06T09:11:10Z,Business Finance
168358,Basel II,https://www.udemy.com/basel-ii/,True,50,78,6,57,All Levels,3.5,2014-03-06T07:16:03Z,Business Finance
721746,Forex Trading Plan,https://www.udemy.com/forex-trading-plan/,True,50,21,3,24,All Levels,0.7,2016-02-13T05:53:11Z,Business Finance
885342,Financial Modeling 101,https://www.udemy.com/financial-modeling-101/,False,0,1086,37,5,Beginner Level,0.6166666666666667,2016-12-19T23:43:54Z,Business Finance
811416,Learn Financial Modeling from Scratch - Part1,https://www.udemy.com/learn-financial-modeling-part1/,True,50,7,4,29,All Levels,3.5,2016-04-06T18:00:04Z,Business Finance
35131,Introduction to Small Business Accounting Training Tutorial,https://www.udemy.com/introduction-to-small-business-accounting-training-tutorial/,True,25,168,9,75,Beginner Level,3.5,2013-01-09T02:57:25Z,Business Finance
570844,Learn Basic Concepts of Economics Step by Step - Complete,https://www.udemy.com/introduction-to-economics-for-beginners/,True,150,2801,6,25,All Levels,1.5,2015-08-16T16:36:47Z,Business Finance
189996,Introduction to Digital Payments ,https://www.udemy.com/payments/,False,0,12217,351,17,Beginner Level,1.0,2014-04-29T05:49:43Z,Business Finance
716828,The Beginner's Guide to the Futures and Options Trading,https://www.udemy.com/futures-options/,False,0,6185,138,20,All Levels,3.0,2016-01-18T19:47:54Z,Business Finance
702138,Bitcoin Investing: The Complete Buy & Hold Strategy,https://www.udemy.com/bitcoin-investing/,True,25,477,70,41,All Levels,4.0,2016-01-10T21:59:30Z,Business Finance
130298,Financial Modeling in Excel for Startups,https://www.udemy.com/financial-modeling-in-excel-for-startups/,True,50,1334,86,54,Beginner Level,6.0,2014-01-05T03:44:26Z,Business Finance
709536,Learn to Trade Forex Naked Price Action Big Shadow Trade,https://www.udemy.com/learn-to-trade-forex-naked-price-action-big-shadow-trade/,False,0,5407,192,11,Intermediate Level,1.0,2016-01-25T04:08:41Z,Business Finance
706942,Forex Trading For Beginners ,https://www.udemy.com/forex-trading-for-beginners-q/,False,0,9483,183,22,Beginner Level,2.0,2016-01-14T02:46:59Z,Business Finance
297762,Build a Trading Comps Valuation Model,https://www.udemy.com/build-a-trading-comps-valuation-model/,True,50,1032,60,55,All Levels,7.0,2014-10-01T18:49:52Z,Business Finance
614472,The Advanced Forex Course for Smart Traders,https://www.udemy.com/advanced-forex-course/,False,0,8236,144,25,All Levels,5.0,2015-10-09T16:46:49Z,Business Finance
463834,Cost Accounting Overheads (Professional Course Level),https://www.udemy.com/overheads-in-cost-accounting/,True,20,2383,6,19,All Levels,2.5,2015-03-31T21:55:21Z,Business Finance
934614,Beginners Guide to Stock Market Investing,https://www.udemy.com/beginners-guide-to-stock-market-investing/,False,0,3283,109,42,Beginner Level,2.5,2016-09-15T18:30:57Z,Business Finance
430968,Financial Management Capital Market Instruments,https://www.udemy.com/capital-market-instruments/,True,25,2650,5,17,Beginner Level,1.0,2015-02-24T14:30:21Z,Business Finance
305368,NPV and IRR Techniques for CA / CFA / CPA Exams,https://www.udemy.com/business-investment-decisions/,True,20,1551,5,55,Beginner Level,7.5,2014-09-22T14:30:17Z,Business Finance
179446,Commercial Credit Analysis,https://www.udemy.com/commercial-credit-analysis/,True,50,545,48,42,All Levels,7.5,2014-03-12T12:26:44Z,Business Finance
443502,Essential Finance For Managers,https://www.udemy.com/finance-for-managers/,True,25,663,10,79,All Levels,5.5,2015-04-16T20:10:00Z,Business Finance
414246,Bitcoin for Accountants,https://www.udemy.com/bitcoin-for-accountants/,False,0,3519,102,6,Beginner Level,1.0,2015-02-06T03:15:22Z,Business Finance
571506,ProTrader - Advanced Technical Analysis,https://www.udemy.com/protrader-advanced-technical-analysis/,True,125,825,11,34,All Levels,2.0,2016-08-22T23:31:48Z,Business Finance
1101382,Binary Options Masterclass,https://www.udemy.com/binary-options-masterclass/,True,200,70,11,16,All Levels,2.0,2017-02-13T16:37:57Z,Business Finance
638966,188% Profit in 1Year - Forex ALGO Robot Trading no indicator,https://www.udemy.com/forex-robot-trading/,True,120,357,71,20,All Levels,2.0,2016-05-03T19:04:41Z,Business Finance
757508,"Financial Accounting, its Cycle, Statements & Analysis",https://www.udemy.com/financial-accounting-in-360-minutes/,True,20,853,4,35,Beginner Level,5.0,2016-03-08T16:40:40Z,Business Finance
180384,Yield Curve Dynamics,https://www.udemy.com/yield-curve-dynamics/,True,50,397,24,19,All Levels,3.0,2014-03-12T14:54:48Z,Business Finance
812798,Value Investing and Stock Market Fundamentals,https://www.udemy.com/value-investing-and-stock-market-fundamentals/,True,195,74,8,17,Beginner Level,3.0,2016-04-07T18:10:31Z,Business Finance
364206,Media Training for Financial Service Professionals,https://www.udemy.com/media-training-for-financial-service-professionals/,True,20,1254,2,64,All Levels,7.0,2014-12-11T21:14:18Z,Business Finance
742142,Learn the Forex Naked Price Action Pogo Trade,https://www.udemy.com/learn-the-forex-naked-price-action-pogo-trade/,True,60,89,4,10,Intermediate Level,1.0,2016-02-10T16:52:50Z,Business Finance
895030,Forex - Price action Reversal Strategy,https://www.udemy.com/forex-price-action-reversal-strategy/,True,20,38,6,16,All Levels,1.0,2016-07-04T21:31:45Z,Business Finance
516168,Budget preparation for an EU project proposal,https://www.udemy.com/budget-preparation-for-an-eu-project-proposal/,True,50,18,4,5,Intermediate Level,1.0,2015-06-01T23:05:51Z,Business Finance
612528,Corporate Finance and Alternative Investment for CFA L1,https://www.udemy.com/corporate-finance-and-alternative-investment-for-cfa-l1/,True,20,103,3,27,All Levels,4.5,2015-09-17T18:09:49Z,Business Finance
597084,Don't Let Your Customers Run Your Business,https://www.udemy.com/dont-let-your-customers-run-your-business/,True,50,7,3,28,Intermediate Level,2.5,2015-10-26T20:20:43Z,Business Finance
544556,Stock Trading: Insider Tips For Determining Market Direction,https://www.udemy.com/stock-trading-stock-market-direction/,True,95,104,1,11,All Levels,1.0,2015-07-07T23:04:36Z,Business Finance
953490,TopTrader Academy - Complete Options Course,https://www.udemy.com/toptraderacademy-complete-options-course/,True,150,42,1,11,All Levels,3.0,2016-09-13T22:09:05Z,Business Finance
221872,Working Capital Management for Entrepreneurs,https://www.udemy.com/working-capital-management-of-tata-motors-limited/,True,20,507,5,15,Expert Level,1.0,2014-11-19T10:36:51Z,Business Finance
662318,Learn Quickbooks to maintain books properly,https://www.udemy.com/learn-quickbooks-to-maintain-books-properly/,True,20,241,5,26,Beginner Level,2.5,2015-11-09T20:36:53Z,Business Finance
73044,CFA Level I Foundation: Introduction to Financial Reporting,https://www.udemy.com/cfa-foundation-financial-reporting/,True,50,226,5,13,Beginner Level,5.5,2013-08-05T16:02:55Z,Business Finance
714188,"Fixed Income Valuation and Analysis, CFA L2",https://www.udemy.com/fixed-income-simplified-for-cfa-l2/,True,20,50,6,12,All Levels,3.0,2016-01-04T21:01:48Z,Business Finance
548044,Corporation Tax Returns UK,https://www.udemy.com/corporation-tax-returns-uk/,True,50,100,23,25,All Levels,2.0,2015-07-23T19:21:21Z,Business Finance
498360,Trading For Busy People,https://www.udemy.com/trading-for-busy-people/,True,50,99,12,26,All Levels,3.0,2015-07-06T22:22:25Z,Business Finance
425338,Basics of Trading,https://www.udemy.com/basicsoftrading/,True,40,99,17,27,Beginner Level,1.0,2015-04-06T20:00:01Z,Business Finance
164102,CFP - Introduction to Financial Planning,https://www.udemy.com/apnacoursecfp/,True,30,1192,12,38,Beginner Level,12.0,2014-02-21T06:40:28Z,Business Finance
902888,Investment Portfolio Analysis with Python,https://www.udemy.com/investment-portfolio-analysis-with-python/,True,50,209,13,37,All Levels,7.0,2016-07-13T21:40:32Z,Business Finance
245822,Day Trading Market Structure Signals,https://www.udemy.com/free-day-trading-course/,False,0,5529,90,5,All Levels,2.0,2014-06-18T16:42:27Z,Business Finance
729128,Professional Bookkeeping and Accounting 3: Double Entry ,https://www.udemy.com/professional-bookkeeping-and-accounting-3-double-entry/,True,35,81,8,33,All Levels,1.0,2016-01-21T18:30:28Z,Business Finance
773650,"Accounting Basics by Hector Garcia, CPA",https://www.udemy.com/accounting-explained-under-1-hour-by-hector-garcia-cpa/,False,0,1924,120,5,Beginner Level,1.0,2016-02-25T16:53:12Z,Business Finance
466632,Stock Markets: How I Became Rich By Changing How I Trade,https://www.udemy.com/become-wealthy-trading-in-the-stock-market/,True,20,646,6,17,All Levels,1.0,2015-09-13T18:57:32Z,Business Finance
466774,Learn About Bitcoin and Bitcoin Mining,https://www.udemy.com/learn-about-bitcoin-and-bitcoin-mining/,True,20,520,10,9,Beginner Level,0.5333333333333333,2015-05-01T23:05:13Z,Business Finance
442114,Take Control By Learning The Stock Market Now,https://www.udemy.com/stock-market-crash-course/,True,30,1440,0,21,Beginner Level,1.0,2015-03-10T01:15:35Z,Business Finance
781954,Cost Accounting and Financial Management - A Complete Study,https://www.udemy.com/cost-accounting-and-financial-management-a-complete-study/,True,150,452,14,444,All Levels,45.0,2016-03-04T17:04:28Z,Business Finance
902150,Learn Global Macro Trading & Investing for Retail Investor,https://www.udemy.com/gms-soros/,True,75,178,16,27,All Levels,1.5,2016-07-15T18:23:38Z,Business Finance
1169188,Energiespar-Formel // Mehr Geld durch Wasser sparen Zuhause,https://www.udemy.com/energiespar-formel-mehr-geld-durch-wasser-sparen-zuhause/,True,50,21,2,54,All Levels,1.5,2017-04-14T21:55:50Z,Business Finance
1201912,high swing - كورس لتعليم جميع مراحل احتراف تداول الفوركس,https://www.udemy.com/wiqvfsmc/,True,100,12,4,17,Intermediate Level,2.5,2017-05-17T16:04:00Z,Business Finance
167316,TRADER BOT: Introdução à Linguagem MQL5,https://www.udemy.com/intro-mql5/,True,20,209,33,33,All Levels,70.0,2014-03-07T15:13:45Z,Business Finance
1028656,财务分析与估值建模入门,https://www.udemy.com/zprzqgfl/,False,0,505,43,10,Beginner Level,1.5,2016-12-03T14:55:06Z,Business Finance
645890,Aprende desde cero a operar el mercado de divisas FOREX,https://www.udemy.com/aprende-desde-cero-a-operar-el-mercado-de-divisas-forex/,True,90,16,4,24,All Levels,4.0,2015-10-23T18:19:32Z,Business Finance
559328,Cómo usar Metatrader 4 para hacer trading?,https://www.udemy.com/como-usar-metatrader-4-para-hacer-trading/,True,20,25,1,25,All Levels,6.0,2015-07-30T20:57:23Z,Business Finance
1225194,Zoho Books Gestion Financière d'Entreprise pas à pas,https://www.udemy.com/zoho-books-gestion-financiere-dentreprise-pas-a-pas/,False,0,229,0,33,All Levels,2.0,2017-05-26T16:45:55Z,Business Finance
734280,Aprende a llevar la contabilidad de forma informatizada,https://www.udemy.com/contabilidad-informatizada/,True,25,6,1,27,Beginner Level,4.5,2016-02-08T16:55:55Z,Business Finance
1164568,Psicología del trading,https://www.udemy.com/psicologia-del-trading/,True,20,1,1,6,All Levels,0.6,2017-05-04T23:05:55Z,Business Finance
43291,La costruzione del budget di una proposta comunitaria,https://www.udemy.com/la-costruzione-del-budget-di-una-proposta-comunitaria/,True,50,10,1,5,Intermediate Level,1.0,2015-01-30T16:29:35Z,Business Finance
1034560,"Erfolgreich als Signalgeber/in, per Social- und Copytrading",https://www.udemy.com/erfolgreich-als-signalgeber_in-per-social-und-copytrading/,True,60,1,1,33,All Levels,6.0,2016-12-13T20:39:39Z,Business Finance
871682,Aprenda a Investir,https://www.udemy.com/estacio-educacao-financeira/,True,20,34,4,9,All Levels,8.0,2016-06-30T16:50:25Z,Business Finance
1057040,Teeter-Totter Accounting,https://www.udemy.com/teeter-totter-accounting/,True,90,0,0,12,Beginner Level,1.0,2017-02-08T22:15:56Z,Business Finance
1032648,beginning accounting,https://www.udemy.com/beginning_accounting/,True,20,0,0,12,Intermediate Level,0.6333333333333333,2016-12-26T16:52:47Z,Business Finance
1087466,Stop Creditors from Harassing you and Avoid Bankruptcy,https://www.udemy.com/stop-creditor-harassment-and-avoid-bankruptcy/,True,20,0,0,7,Beginner Level,0.6166666666666667,2017-02-02T16:22:37Z,Business Finance
1058852,Learn to trade using technical analysis,https://www.udemy.com/learn-to-trade-using-technical-analysis/,True,50,0,0,6,Intermediate Level,0.5333333333333333,2017-05-02T13:15:53Z,Business Finance
1083744,How to Invest Using ETFs from Former Wall Street Trader,https://www.udemy.com/etf-master-class/,True,200,0,0,10,All Levels,2.0,2017-02-15T22:34:00Z,Business Finance
1271430,Workshop on Banking Credit Analysis Process,https://www.udemy.com/workshop-on-banking-credit-analysis-process/,True,100,0,0,7,All Levels,1.5,2017-06-28T23:22:27Z,Business Finance
715476,The Cuckoo Strategy to get European Funding,https://www.udemy.com/the-cuckoo-strategy-to-get-european-funding/,True,160,0,0,6,All Levels,1.0,2016-01-06T02:38:23Z,Business Finance
1219820,Accounting - The 6 most important rules you must learn,https://www.udemy.com/accounting-the-6-most-important-rules-you-must-learn/,True,20,0,0,9,All Levels,1.0,2017-05-25T21:55:50Z,Business Finance
627332,Mutual Funds for Investors in Retirement Accounts,https://www.udemy.com/mutual-funds-for-investors-in-retirement-accounts/,True,20,0,0,0,All Levels,0.0,2015-12-17T05:38:38Z,Business Finance
1136038,Free Ways to Create Passive Income Online,https://www.udemy.com/how-to-make-passive-income-online/,True,25,0,0,27,Beginner Level,1.0,2017-04-17T22:33:13Z,Business Finance
1035638,Understanding Financial Statements,https://www.udemy.com/understanding-financial-statements/,True,25,0,0,10,All Levels,1.0,2016-12-15T14:56:17Z,Business Finance
1232282,The Cash Flow Statement - An Introduction,https://www.udemy.com/cash-flow-statement-introduction/,True,50,0,0,10,Beginner Level,1.5,2017-06-28T16:05:51Z,Business Finance
41961,"Options Foundation - Time Decay, Implied Volatility, Greeks",https://www.udemy.com/learn-options-trading/,True,60,459,25,14,Beginner Level,3.0,2013-02-17T01:48:33Z,Business Finance
42040,Buying Call and Put Options - Options beginner strategies,https://www.udemy.com/buy-call-options-buy-put-options-trading-strategies/,True,60,266,20,14,Intermediate Level,3.0,2013-02-18T10:54:27Z,Business Finance
1039442,How To Trade RSI Pullback Strategy: Entry To Exit (Forex),https://www.udemy.com/how-to-trade-rsi-pullback-strategy-entry-to-exit/,True,150,104,10,21,All Levels,2.0,2017-02-17T05:52:41Z,Business Finance
615602,Valuation of Goodwill for CA / CFA / CMA Exams,https://www.udemy.com/valuation-of-goodwill/,True,20,1509,0,9,All Levels,0.7166666666666667,2015-09-23T17:16:11Z,Business Finance
235112,Forex - Catch the Big Market Moves in Forex,https://www.udemy.com/how-to-catch-the-big-market-moves-in-forex/,True,20,212,25,14,Intermediate Level,1.5,2014-06-02T06:52:58Z,Business Finance
551910,SEASON 2 MQL4 Tutorial Bootcamp - Metatrader4 Trading Robots,https://www.udemy.com/mql4-tutorial-bootcamp-metatrader4-trading-robots-expert-advisors-mt4/,True,25,462,18,34,All Levels,1.0,2015-07-16T00:34:53Z,Business Finance
1051430,Intermediate Accounting 1: Easy. Fast. Simple!,https://www.udemy.com/intermediateaccounting/,True,200,90,12,35,Intermediate Level,2.5,2016-12-29T17:21:35Z,Business Finance
828596,Global Macro Investing - Take Control Of The World's Markets,https://www.udemy.com/global-macro-trading-take-control-of-the-worlds-markets/,True,30,153,41,27,Intermediate Level,2.0,2016-05-16T21:50:20Z,Business Finance
258894,How to Read a Balance Sheet,https://www.udemy.com/how-to-read-balance-sheet/,True,50,1055,21,64,Beginner Level,3.5,2014-07-11T11:40:35Z,Business Finance
138560,Credit Repair from a Financial Institution,https://www.udemy.com/credit-repair-from-a-financial-institution/,True,20,157,13,9,All Levels,2.5,2014-01-14T23:22:43Z,Business Finance
689868,The Binary Institute - Binary Options Trading Course,https://www.udemy.com/the-binary-institute-binary-options-trading-course/,True,200,103,25,12,All Levels,2.5,2015-12-14T18:27:08Z,Business Finance
1020244,Mental Models For Wall Street - Become A Better Trader,https://www.udemy.com/mental-models-for-wall-street/,False,0,1067,50,35,All Levels,2.0,2016-12-14T21:53:28Z,Business Finance
858764,株式投資に向く性格に変えるための心理学を学ぶ,https://www.udemy.com/jun-sakai-trading-course2/,True,20,58,11,28,All Levels,1.5,2016-06-14T15:53:31Z,Business Finance
941310,Matemática Financeira com HP12C e MS Excel,https://www.udemy.com/matematica-financeira-com-hp12-e-ms-excel/,True,20,74,17,30,Beginner Level,4.5,2016-10-12T13:50:11Z,Business Finance
1214144,¡Triunfar en La Bolsa de Valores No Requiere de Experiencia!,https://www.udemy.com/triunfar-en-la-bolsa-de-valores-no-requiere-de-experiencia/,False,0,338,7,6,Beginner Level,1.0,2017-05-30T14:30:12Z,Business Finance
492344,Cómo Crear Políticas Contables bajo NIIF para PYMES,https://www.udemy.com/como-crear-politicas-contables-bajo-niif-para-pymes/,True,20,27,5,6,All Levels,1.0,2015-08-25T16:18:04Z,Business Finance
815672,Finanzas Personales para Vivir Libre de Deudas,https://www.udemy.com/finanzas-personales-para-vivir-libre-de-deudas/,True,75,76,13,77,Beginner Level,6.0,2016-04-27T17:01:52Z,Business Finance
376712,Finanzas personales: Logrando la Libertad Financiera,https://www.udemy.com/finanzas-personales-logrando-la-libertad-financiera/,True,30,27,5,12,Beginner Level,2.0,2015-01-09T15:35:12Z,Business Finance
869716,株式投資で本当のテクニカル分析ができるようになる,https://www.udemy.com/jun-sakai-trading-course4/,True,20,68,10,45,Intermediate Level,2.5,2016-07-01T19:53:20Z,Business Finance
754156,Aktiver Vermögensaufbau mit ETF,https://www.udemy.com/aktiver-vermoegensaufbau/,True,20,112,18,33,Beginner Level,2.0,2016-02-22T15:20:36Z,Business Finance
709816,Socorro! Preciso Organizar as Minhas Finanças!,https://www.udemy.com/socorro-preciso-organizar-as-minhas-financas/,True,20,72,17,37,All Levels,1.5,2016-01-08T18:06:39Z,Business Finance
680046,Curso Completo de Opciones Binarias: Estrategias 90% Acierto,https://www.udemy.com/opciones-binarias-gana-dinero-trading-de-opciones-binarias/,True,145,335,16,26,All Levels,1.5,2015-12-16T16:51:50Z,Business Finance
1138162,Le basi del Trading,https://www.udemy.com/le-basi-del-trading/,True,200,22,5,18,All Levels,3.5,2017-03-11T00:58:58Z,Business Finance
829182,【個人事業主向け】青色申告の記帳を自力で行うための複式簿記の基本,https://www.udemy.com/aoirokojin/,True,30,41,3,37,Beginner Level,3.0,2016-05-25T16:12:15Z,Business Finance
1163242,Profit and Loss Account for bankers and credit analysts,https://www.udemy.com/profit-and-loss-account-for-bankers-and-credit-analysts/,True,20,1,0,31,Beginner Level,7.5,2017-04-23T22:07:02Z,Business Finance
46933,Business Accounts For Managers,https://www.udemy.com/business-accounts-for-managers/,True,30,16,0,23,Beginner Level,3.0,2013-04-23T13:07:51Z,Business Finance
954842,Black Scholes Option Pricing Model,https://www.udemy.com/black-scholes-option-pricing-model/,True,25,3,0,10,Beginner Level,1.0,2017-05-03T16:42:34Z,Business Finance
868112,Chief Wealth Officer,https://www.udemy.com/chief-wealth-officer/,True,45,4,0,7,Beginner Level,1.0,2016-06-03T22:38:05Z,Business Finance
1056242,Practical Accounts Training A,https://www.udemy.com/mobile-practical-accounts-training-a/,True,35,2,0,127,Intermediate Level,31.5,2017-01-18T18:52:11Z,Business Finance
113712,International Trade and New Geographic Economy,https://www.udemy.com/international-trade-and-new-geographic-economy/,True,20,12,1,6,All Levels,0.5333333333333333,2013-12-05T20:10:14Z,Business Finance
146454,2. Principles of Simple Interest - advanced problems,https://www.udemy.com/principles-of-simple-interest-advanced-problems/,True,20,10,1,12,Intermediate Level,1.5,2014-01-20T21:56:35Z,Business Finance
56926,School of Raising Capital: Agile Financial Modeling,https://www.udemy.com/agilefinancialmodeling/,True,20,12,1,11,All Levels,1.5,2013-06-28T16:41:04Z,Business Finance
589778,How to Read Financial Statements,https://www.udemy.com/how-to-read-financial-statements/,True,20,5,2,59,Beginner Level,2.0,2015-08-23T20:13:45Z,Business Finance
1113702,"Intro. to Asset-Backed Securities, CFA Level I, 2017 Prep",https://www.udemy.com/intro-to-asset-backed-securities-cfa-level-i-2017-prep/,True,20,1,0,13,All Levels,3.0,2017-03-27T19:59:34Z,Business Finance
1072220,Reach Your Personal Financial Goals the Easy Way (2017 UK),https://www.udemy.com/reach-your-personal-financial-goals-the-easy-way-2017-uk/,True,95,2,0,59,All Levels,4.5,2017-05-22T23:58:16Z,Business Finance
101038,Bitesize Bookkeeping for busy people,https://www.udemy.com/bitesize-bookkeeping-for-busy-people/,True,20,9,0,13,Beginner Level,1.5,2015-03-29T18:18:33Z,Business Finance
417088,Do Your Own Accounts,https://www.udemy.com/doyourownaccounts/,True,35,42,2,13,All Levels,1.5,2015-02-13T09:56:58Z,Business Finance
258954,CFA Level 1 - Derivatives,https://www.udemy.com/cfa-exam/,True,30,110,6,25,All Levels,4.0,2014-07-21T10:31:02Z,Business Finance
298044,Accounting for everyone! ,https://www.udemy.com/accounting-for-everyone/,True,35,420,2,14,Beginner Level,1.0,2014-11-19T00:34:25Z,Business Finance
593962,Stock Fundamental Analysis with Excel,https://www.udemy.com/stock-fundamental-analysis-with-excel/,True,50,206,13,50,All Levels,10.0,2015-09-15T21:56:38Z,Business Finance
941520,Financial Accounting For Beginners,https://www.udemy.com/financial-accounting-for-beginners/,True,60,164,3,22,All Levels,1.5,2016-09-25T18:41:49Z,Business Finance
64173,Trading: How Transformative Learning Drives Expertise,https://www.udemy.com/trading-how-transformative-learning-drives-expertise/,True,30,69,2,16,All Levels,1.0,2013-07-15T17:20:29Z,Business Finance
371828,Manual Bookkeeping,https://www.udemy.com/manual-bookkeeping/,True,20,28,2,26,Intermediate Level,2.5,2015-07-24T20:42:34Z,Business Finance
974954,Numeracy skills in business and everyday life:Think and Deal,https://www.udemy.com/numeracy-skills-in-business-and-everyday-life-think-and-deal/,True,20,90,4,15,Beginner Level,0.6333333333333333,2016-10-11T19:36:43Z,Business Finance
818572,Financial Modelling in Excel Step by Step,https://www.udemy.com/financial-modelling-course-using-excel/,True,20,13,2,17,Intermediate Level,1.5,2016-05-05T16:50:07Z,Business Finance
115752,Straight From Business School: Create Financial Statements,https://www.udemy.com/straight-from-business-school-create-financial-statements/,True,20,31,2,5,Beginner Level,1.0,2013-11-28T01:07:56Z,Business Finance
731150,How To Pay Less Tax (UK version),https://www.udemy.com/paylesstax/,True,50,13,2,98,All Levels,0.5166666666666666,2016-01-19T18:20:04Z,Business Finance
627772,Interpreting financial statements,https://www.udemy.com/financial-statements-focused-on-cash-flows/,False,0,2119,111,54,All Levels,2.0,2015-10-28T18:25:41Z,Business Finance
850726,Forex trading with binary options,https://www.udemy.com/forex-trading-with-binary-options/,True,25,136,28,21,All Levels,3.0,2016-05-16T21:40:10Z,Business Finance
136244,Triple P Trading Course,https://www.udemy.com/triple-p-trading-course/,True,20,797,15,16,All Levels,3.0,2013-12-24T04:53:53Z,Business Finance
485889,Cost Accounting - A Comprehensive Study,https://www.udemy.com/cost-accounting-a-comprehensive-study/,True,180,503,43,286,All Levels,29.5,2015-04-26T23:46:55Z,Business Finance
507778,How to become a successful day trader,https://www.udemy.com/a-successful-day-trader/,True,95,1150,6,27,All Levels,2.5,2015-05-25T23:32:56Z,Business Finance
422918,Essentials of Finance and Investment in 2 hours,https://www.udemy.com/finance-hien-minh-luu/,True,20,1403,6,14,Beginner Level,2.0,2015-06-01T21:48:13Z,Business Finance
362530,Public Speaking: You Can Give Great Financial Presentations,https://www.udemy.com/how-to-give-financial-presentations/,True,20,916,6,23,All Levels,6.5,2014-12-11T06:00:27Z,Business Finance
579642,Professional Trading - Consistent Profits with Low Risk!,https://www.udemy.com/professional-trading-consistent-profits-with-low-risk/,True,20,627,5,27,All Levels,1.0,2015-10-17T05:44:17Z,Business Finance
1022796,Trading for winning,https://www.udemy.com/charting-for-beginners-for-dummies-newbies-technical-analysis/,True,200,168,7,27,All Levels,2.0,2017-01-23T05:18:48Z,Business Finance
793084,Succeed in Stocks Even if you Don't Know Where to Start,https://www.udemy.com/succeed-in-stocks-even-if-you-dont-know-where-to-start/,False,0,2554,20,10,Beginner Level,1.0,2017-03-09T04:55:24Z,Business Finance
881062,Options Basics & Trading With Small Capital! - Level 1,https://www.udemy.com/options-basics-trading-with-small-capital/,True,30,120,17,19,Beginner Level,2.0,2016-07-26T20:26:58Z,Business Finance
838260,Forex trading Basic to advance Professional Level course,https://www.udemy.com/forex-trading-basic-to-advance-professional-level-course/,True,20,750,13,28,All Levels,2.5,2016-05-05T19:34:08Z,Business Finance
380542,Day Trading in Stocks: Strategies for Beginner Investors,https://www.udemy.com/day-trading-in-stocks-strategies-for-beginner-investors/,True,50,217,19,9,All Levels,2.0,2015-01-08T17:52:16Z,Business Finance
772480,Learn to Trade Forex Big U-Turn Trade,https://www.udemy.com/learn-to-trade-forex-big-u-turn-trade/,True,50,106,13,12,Beginner Level,1.0,2016-02-24T18:44:24Z,Business Finance
576906,"Technical Analysis Primer for trading Stocks, Bonds & Forex",https://www.udemy.com/technical-analysis-made-easy/,True,50,397,4,36,Beginner Level,3.0,2015-11-23T19:16:33Z,Business Finance
410196,DIY: Reduce Unpaid Federal Tax thru IRS Offer in Compromise,https://www.udemy.com/diy-reduce-unpaid-federal-tax-thru-irs-offer-in-compromise/,True,20,44,3,8,All Levels,1.0,2015-03-26T18:20:18Z,Business Finance
581662,Stock Trading with this Strategy,https://www.udemy.com/stock-trading-with-this-strategy/,True,50,30,3,6,All Levels,1.0,2015-08-13T21:52:16Z,Business Finance
1088102,The Psychology of Trading,https://www.udemy.com/the-psychology-of-trading/,True,20,95,3,20,All Levels,1.0,2017-02-02T03:58:36Z,Business Finance
788756,Professional Forex Strategy+2 weeks for FREE trading alerts,https://www.udemy.com/forex-candlesticks-strategy/,True,95,55,9,15,All Levels,1.0,2016-03-29T17:23:29Z,Business Finance
380206,Stock Trading Essentials for Day Traders,https://www.udemy.com/stock-trading-essentials-for-day-traders/,True,100,94,15,9,All Levels,1.0,2015-01-08T17:40:22Z,Business Finance
160322,Basics of Finance and Budgeting,https://www.udemy.com/basics-of-finance-and-budgeting/,True,20,578,7,34,Beginner Level,6.0,2014-05-19T04:02:10Z,Business Finance
610812,Portfolio Management CFA L1 2016,https://www.udemy.com/portfolio-management-cfa-l1/,True,20,393,5,34,All Levels,5.0,2015-09-15T20:48:19Z,Business Finance
288256,"Trade Stocks, Forex & Financial Markets like a Professional",https://www.udemy.com/stock-and-forex-trading-strategy-course/,True,20,116,6,12,All Levels,3.0,2014-08-28T15:02:35Z,Business Finance
662996,The Tax Advantaged Investor: A Guide to Legal Tax Reduction!,https://www.udemy.com/university-of-puerto-rico-mba-student-act-20-act-22-course/,False,0,1888,42,25,All Levels,2.0,2015-12-17T05:22:24Z,Business Finance
101234,The Smart Option Trader,https://www.udemy.com/the-smart-option-trader/,True,45,412,19,74,All Levels,13.0,2013-10-10T22:02:48Z,Business Finance
1113442,Beginners Chart Patterns Trading for Penny Stocks,https://www.udemy.com/beginners-chart-patterns-for-penny-stocks-part-2/,True,200,40,7,26,Beginner Level,1.5,2017-02-22T05:37:40Z,Business Finance
746366,Financial Statements: Learn Accounting. Unlock the Numbers.,https://www.udemy.com/learn-accounting-unlock-the-numbers/,True,40,222,12,35,Beginner Level,3.0,2016-02-17T17:55:46Z,Business Finance
186556,CFA® Level 1 2014 – Alternative Investments,https://www.udemy.com/cfa-level-1-2014-alternative-investments/,True,30,831,1,13,All Levels,2.0,2014-04-14T11:27:09Z,Business Finance
179500,Interest Rate Swaps,https://www.udemy.com/interest-rate-swaps/,True,50,485,24,20,All Levels,3.5,2014-03-11T18:08:54Z,Business Finance
304000,Financial Modelling for entrepreneurs,https://www.udemy.com/financial-modelling-for-entrepreneurs/,True,20,232,7,17,All Levels,1.0,2014-09-20T08:26:56Z,Business Finance
334838,Economics - CFA Level 1 - 2014,https://www.udemy.com/economics-cfa-level-1-2014/,True,20,135,20,24,Beginner Level,4.0,2014-11-08T13:48:00Z,Business Finance
302456,Bookkeeping Made Simple,https://www.udemy.com/bookkeeping-made-simple/,True,40,61,16,22,All Levels,2.5,2015-07-16T20:51:43Z,Business Finance
537748,What is Bitcoin,https://www.udemy.com/what-is-bitcoin/,True,20,61,3,27,All Levels,5.0,2015-07-09T00:07:44Z,Business Finance
378464,Accounting for CA CPT Exams Part I,https://www.udemy.com/inventory-valuation/,True,50,874,2,120,All Levels,13.5,2014-12-27T11:10:19Z,Business Finance
532216,Raising Capital for Your Business,https://www.udemy.com/raising-capital-for-your-business/,True,50,22,5,60,All Levels,2.5,2015-08-03T22:46:45Z,Business Finance
41973,"Silver, Gold, and Inflation",https://www.udemy.com/got-gold-get-gold-inflation/,False,0,5597,76,11,Beginner Level,1.0,2013-02-16T16:08:05Z,Business Finance
138004,Accounting Concepts For Technocrats,https://www.udemy.com/accounting-concepts-for-technocrats/,True,20,261,2,35,Beginner Level,2.5,2013-12-26T12:41:50Z,Business Finance
94532,Beginner Financial Analysis: Invest Like Warren Buffett,https://www.udemy.com/beginner-financial-analysis-invest-like-warren-buffett/,True,50,83,4,19,Beginner Level,0.6833333333333333,2014-03-10T21:49:34Z,Business Finance
467238,Advance Technical Analysis,https://www.udemy.com/advance-technical-analysis/,True,50,152,6,14,Expert Level,3.5,2015-04-08T18:11:52Z,Business Finance
850294,The Everyday Investor: Building Wealth with Venture Capital,https://www.udemy.com/the-everyday-investor/,True,20,176,2,12,Intermediate Level,2.5,2016-06-07T01:34:54Z,Business Finance
1110256,QuickBooks Online : Inventory Management For Non-Finance,https://www.udemy.com/quickbooks-online-inventory-management-for-non-finance/,True,35,8,4,10,All Levels,0.6666666666666666,2017-04-20T22:15:19Z,Business Finance
439210,Law Matters,https://www.udemy.com/law-matters/,True,20,327,1,12,Beginner Level,0.45,2015-03-27T17:16:21Z,Business Finance
597164,Learn to Trade for Profit: Finding Winning Stocks - Chinese,https://www.udemy.com/trade-for-profit-how-to-find-and-trade-stocks-successfully-chinese/,True,95,264,0,79,All Levels,3.0,2015-10-08T17:04:03Z,Business Finance
773502,Financial Accounting Part 2 - Passing The Class,https://www.udemy.com/financial-accounting-part-2-passing-the-class/,True,20,15,4,36,Beginner Level,4.5,2017-05-01T22:58:40Z,Business Finance
262818,Simple Options Trading System,https://www.udemy.com/safe-and-easy-options-trading/,True,35,104,2,16,Intermediate Level,1.5,2014-07-31T20:25:42Z,Business Finance
255046,Investments and Financial Markets,https://www.udemy.com/investments-and-financial-markets/,True,40,71,3,19,Beginner Level,1.5,2014-07-22T19:08:41Z,Business Finance
295909,Legal Accounting,https://www.udemy.com/solicitors-accounts/,True,110,26,6,49,All Levels,4.0,2014-09-21T04:58:16Z,Business Finance
1153876,"Term Loan Appraisal for bankers, credit analysts",https://www.udemy.com/term-loan-appraisal-for-bankers-credit-analysts/,True,20,11,2,28,Beginner Level,6.5,2017-04-03T16:53:57Z,Business Finance
83736,Small Biz Doers' Guide to Small Biz Accounting + Bookkeeping,https://www.udemy.com/an-entrepreneurs-guide-to-small-biz-bookkeeping/,True,20,1294,7,58,Beginner Level,5.5,2013-08-28T03:28:52Z,Business Finance
75182,Trade Show Samurai,https://www.udemy.com/trade-show-displays/,True,95,32,7,7,All Levels,0.5166666666666666,2013-08-29T15:44:46Z,Business Finance
236070,Forex Harmonic Trading- With Multiple Forex Chart Examples,https://www.udemy.com/forex-harmonic-trading-with-multiple-examples/,True,135,313,16,25,All Levels,2.5,2016-11-28T17:21:07Z,Business Finance
788796,The Cost of Capital: The Key To Attract Venture Capitalists,https://www.udemy.com/the-cost-of-capital-and-the-evaluation-of-ideas/,True,50,635,4,6,All Levels,0.6833333333333333,2016-03-22T20:47:21Z,Business Finance
508796,Accounting for School Students,https://www.udemy.com/cash-books-in-accountancy/,True,30,1311,2,12,All Levels,1.5,2015-05-22T23:32:56Z,Business Finance
739910,Learn To Trade The Forex Naked Price Action Acapulco Trade,https://www.udemy.com/forex-naked-price-action-acapulco-trade/,True,70,288,9,13,Intermediate Level,1.0,2016-01-25T18:11:00Z,Business Finance
725872,Certificate in MYOB AccountRight Premier 2017 Course,https://www.udemy.com/certificate-in-myob-accountright-premier-2016-valued-1250/,True,200,97,18,29,All Levels,3.0,2016-03-10T23:45:35Z,Business Finance