-
Notifications
You must be signed in to change notification settings - Fork 105
/
ChangeLog.1.0.0
8471 lines (4641 loc) · 162 KB
/
ChangeLog.1.0.0
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
2009-10-23 16:30 tag v1_0_0-2009-10-23
2009-10-23 16:30 brian
* DESCRIPTION:
- bump version to 1.0.0
2009-10-23 16:29 brian
* inst/doc/: PA-charts.pdf,
PerformanceAnalyticsChartsPresentation-Meielisalp-2007.pdf,
PerformanceAnalyticsPresentation-UseR-2007.pdf:
- updates prior to 1.0.0
2009-10-23 16:29 brian
* inst/doc/PerformanceAnalyticsGraphicalExamples.pdf:
- Initial revision of file generated from examples
2009-10-23 16:15 brian
* NEWS:
- Initial Revision
2009-10-23 16:05 brian
* tests/Examples/PerformanceAnalytics-Ex.Rout.save:
- update prior to 1.0.0
2009-10-23 15:36 brian
* man/prices.Rd:
- Initial Revision
2009-10-23 15:14 peter
* man/textplot.Rd:
- fixed example
2009-10-23 15:03 brian
* data/prices.rda:
- Initial Revision
2009-10-23 14:49 peter
* man/BetaCoMoments.Rd:
- fixed codoc
2009-10-23 14:46 peter
* R/CoMoments.R:
- removed conditional test for beta coskewness
2009-10-23 14:46 peter
* man/BetaCoMoments.Rd:
- removed test for beta coskewness
2009-10-23 13:50 peter
* man/: BetaCoMoments.Rd, table.AnnualizedReturns.Rd,
table.Autocorrelation.Rd, table.CAPM.Rd,
table.CalendarReturns.Rd, table.CaptureRatios.Rd,
table.Correlation.Rd, table.DownsideRisk.Rd, table.Drawdowns.Rd,
table.HigherMoments.Rd, table.MonthlyReturns.Rd,
table.RollingPeriods.Rd:
- added examples with textplot
2009-10-23 13:48 peter
* man/textplot.Rd:
- changed example
2009-10-23 12:29 brian
* man/PerformanceAnalytics-package.Rd:
- fix some minor typos and formatting
2009-10-23 11:31 brian
* man/chart.VaRSensitivity.Rd:
- update title and description
2009-10-23 11:30 brian
* man/Return.calculate.Rd:
- remove dependence on internet connection to run example
2009-10-23 11:30 brian
* man/textplot.Rd:
- reformat example
2009-10-23 11:16 brian
* man/textplot.Rd:
- escape percent symbols in example
2009-10-23 11:13 brian
* man/textplot.Rd:
- add data line
- wrape Hmisc call in if block, since HMisc is only a Suggests dependency
2009-10-23 09:46 peter
* R/textplot.R:
- fixe S3 consistency
2009-10-23 09:46 peter
* man/textplot.Rd:
- fixed codoc
2009-10-23 09:03 peter
* R/table.AnnualizedReturns.R:
- added scale
2009-10-23 09:02 peter
* R/textplot.R:
- fixed warnings from passing through parameters with dots
2009-10-23 09:02 peter
* man/textplot.Rd:
- added example
2009-10-22 23:36 peter
* man/chart.QQPlot.Rd:
- modified example
2009-10-22 22:20 peter
* man/chart.Correlation.Rd:
- fixed example
2009-10-22 22:15 peter
* man/: managers.Rd, weights.Rd:
- fixed info about format
2009-10-22 22:09 peter
* man/table.CalendarReturns.Rd:
- missed a brace
2009-10-22 22:01 peter
* R/chart.StackedBar.R:
- added par reset
2009-10-22 21:58 peter
* R/chart.RiskReturnScatter.R:
- added par reset
2009-10-22 21:54 peter
* R/chart.QQPlot.R:
- added par reset
2009-10-22 21:52 peter
* R/chart.Boxplot.R:
- added back par reset
2009-10-22 21:46 peter
* man/BetaCoMoments.Rd:
- added detail on test parameter
2009-10-22 21:39 peter
* man/chart.Correlation.Rd:
- added example
- fixed paramters
2009-10-22 21:34 peter
* R/chart.Correlation.R:
- added checkData method matrix
- added dots to pairs
2009-10-22 21:26 peter
* man/PerformanceAnalytics-package.Rd:
- fixed typo
2009-10-22 21:22 peter
* man/PerformanceAnalytics-package.Rd:
- modifications to text
2009-10-22 15:59 brian
* man/: ActivePremium.Rd, BetaCoMoments.Rd, CAPM.alpha.Rd,
CAPM.beta.Rd, CAPM.utils.Rd, CalmarRatio.Rd, CoMoments.Rd,
DownsideDeviation.Rd, ES.Rd, InformationRatio.Rd, KellyRatio.Rd,
Return.Geltner.Rd, Return.annualized.Rd, Return.calculate.Rd,
Return.clean.Rd, Return.cumulative.Rd, Return.excess.Rd,
Return.read.Rd, SharpeRatio.Rd, SharpeRatio.annualized.Rd,
SharpeRatio.modified.Rd, SmoothingIndex.Rd, SortinoRatio.Rd,
StdDev.annualized.Rd, Style.Rd, TrackingError.Rd,
TreynorRatio.Rd, UpDownRatios.Rd, UpsidePotentialRatio.Rd,
VaR.Rd, apply.fromstart.Rd, chart.ACF.Rd, chart.Bar.Rd,
chart.BarVaR.Rd, chart.CaptureRatios.Rd, chart.Correlation.Rd,
chart.CumReturns.Rd, chart.Drawdown.Rd, chart.ECDF.Rd,
chart.Events.Rd, chart.Histogram.Rd, chart.QQPlot.Rd,
chart.Regression.Rd, chart.RelativePerformance.Rd,
chart.RiskReturnScatter.Rd, chart.RollingCorrelation.Rd,
chart.RollingMean.Rd, chart.RollingPerformance.Rd,
chart.RollingRegression.Rd, chart.Scatter.Rd,
chart.SnailTrail.Rd, chart.StackedBar.Rd, checkData.Rd,
findDrawdowns.Rd, kurtosis.Rd, maxDrawdown.Rd, mean.utils.Rd,
skewness.Rd, sortDrawdowns.Rd, table.AnnualizedReturns.Rd,
table.Autocorrelation.Rd, table.CaptureRatios.Rd,
table.Correlation.Rd, table.DownsideRisk.Rd, table.Drawdowns.Rd,
table.HigherMoments.Rd, table.MonthlyReturns.Rd,
table.RollingPeriods.Rd, textplot.Rd:
- remove 'value' section, encorporating into main body where appropriate
2009-10-22 14:48 brian
* man/clean.boudt.Rd:
- make the equations a little more readable
2009-10-22 14:03 brian
* tests/Examples/PerformanceAnalytics-Ex.Rout.save:
- Initial Revision of tests/Examples version of the output of package examples
2009-10-22 14:01 brian
* man/: apply.fromstart.Rd, apply.rolling.Rd, centeredmoments.Rd,
chart.Correlation.Rd, chart.RollingPerformance.Rd:
- updates to pass R CMD check
2009-10-22 14:00 brian
* inst/doc/: PA-charts.Rnw,
PerformanceAnalyticsChartsPresentation-Meielisalp-2007.Rnw,
PerformanceAnalyticsPresentation-UseR-2007.Rnw:
- change fn name to table.Stats
2009-10-22 13:28 brian
* man/PerformanceAnalytics-package.Rd:
- replace some instances of \code with \kbd for future-proofing
2009-10-22 12:38 brian
* NAMESPACE, R/chart.Correlation.color.R,
man/chart.Correlation.color.Rd:
- remove chart.Correlation.color
2009-10-22 12:10 brian
* inst/doc/: PA-charts.pdf,
PerformanceAnalyticsChartsPresentation-Meielisalp-2007.pdf,
PerformanceAnalyticsPresentation-UseR-2007.pdf:
- updated versions of PDF's that reflect changed function names
2009-10-22 12:04 brian
* man/PerformanceAnalytics-package.Rd:
- update summary
2009-10-22 12:00 brian
* R/table.MonthlyReturns.R:
- rename function to table.Stats
2009-10-22 12:00 brian
* man/CoMoments.Rd, man/DownsideDeviation.Rd,
man/InformationRatio.Rd, man/KellyRatio.Rd, man/Omega.Rd,
man/PerformanceAnalytics-internal.Rd,
man/PerformanceAnalytics-package.Rd, man/Return.calculate.Rd,
man/Return.clean.Rd, man/Return.portfolio.Rd, man/SharpeRatio.Rd,
man/SharpeRatio.annualized.Rd, man/StdDev.annualized.Rd,
man/TreynorRatio.Rd, man/UpDownRatios.Rd, man/centeredmoments.Rd,
man/chart.Correlation.Rd, man/chart.Correlation.color.Rd,
man/chart.Drawdown.Rd, man/chart.Histogram.Rd,
man/chart.RiskReturnScatter.Rd, man/chart.RollingCorrelation.Rd,
man/chart.RollingMean.Rd, man/chart.RollingPerformance.Rd,
man/chart.RollingRegression.Rd, man/chart.Scatter.Rd,
man/chart.TimeSeries.Rd, man/chart.VaRSensitivity.Rd,
man/charts.PerformanceSummary.Rd,
man/charts.RollingPerformance.Rd, man/edhec.Rd,
man/findDrawdowns.Rd, man/managers.Rd, man/maxDrawdown.Rd,
man/sortDrawdowns.Rd, man/table.AnnualizedReturns.Rd,
man/table.Arbitrary.Rd, man/table.Autocorrelation.Rd,
man/table.CAPM.Rd, man/table.CalendarReturns.Rd,
man/table.Correlation.Rd, man/table.DownsideRisk.Rd,
man/table.Drawdowns.Rd, man/table.MonthlyReturns.Rd,
man/table.RollingPeriods.Rd, man/weights.Rd, NAMESPACE:
- updates to pass R CMD check
2009-10-22 09:37 brian
* man/: CoMoments.Rd, SharpeRatio.modified.Rd:
- remove links to MultivariateMoments functions that are not exported
2009-10-22 09:32 brian
* man/chart.Boxplot.Rd:
- change show.data usage to NULL
2009-10-22 09:22 brian
* R/download.RiskFree.R, R/download.SP500PriceReturns.R,
man/download.RiskFree.Rd, man/download.SP500PriceReturns.Rd:
- remove obsolete download.* functions
2009-10-22 09:20 brian
* man/: MultivariateMoments.Rd, MultivariateRisk.MM.Rd:
- remove non-exposed multivariate moments function documentation, as it was incomplete, and the functions are now for internal use only
2009-10-22 09:16 brian
* man/centeredmoments.Rd:
- remove IPower, change name to Return.centered
2009-10-22 08:45 brian
* R/chart.Boxplot.R, man/chart.Boxplot.Rd:
- change show.data to be a numerical vector of observations to overplot
2009-10-22 08:36 brian
* R/SharpeRatio.annualized.R, man/SharpeRatio.annualized.Rd:
- add 'geometric' passthrough at the request of Philipp Lincoln on R-SIG-Finance
2009-10-22 07:47 brian
* R/Return.portfolio.R:
- fix passing in unnamed vector, single column matrix, and other edge cases for weights
- restore proper working of simple returns
2009-10-21 22:33 peter
* R/: chart.RollingRegression.R, charts.RollingRegression.R:
- fixed title
2009-10-21 22:31 peter
* man/: Return.calculate.Rd, CAPM.beta.Rd, BetaCoMoments.Rd:
- minor edits
2009-10-21 22:31 peter
* man/PerformanceAnalytics-package.Rd:
- editing
2009-10-21 19:08 peter
* man/BetaCoMoments.Rd:
- cleaned up text
2009-10-21 19:08 peter
* man/PerformanceAnalytics-package.Rd:
- added to sections on comoments and time series
2009-10-21 18:50 brian
* R/chart.VaRSensitivity.R:
- reverse order of operators to account for inversion of risk metrics
2009-10-20 21:56 peter
* man/Omega.Rd:
- modified example
2009-10-20 21:07 peter
* R/Omega.R:
- fixed for full output in method interp
2009-10-20 13:31 peter
* man/chart.StackedBar.Rd:
- backslashed percentage signs
2009-10-20 13:07 peter
* man/chart.StackedBar.Rd:
- modified example
2009-10-20 13:03 peter
* man/chart.StackedBar.Rd:
- fixed codoc
- added back example
2009-10-19 22:06 peter
* R/style.fit.R, man/Style.Rd:
- removed debugging code
- added documentation for parameter 'selection'
2009-10-19 21:44 peter
* R/: chart.StackedBar.R, chart.Style.R, style.fit.R:
- fixed chart.Stacked bar to accomodate different kinds of data
2009-10-19 21:42 peter
* man/: Style.Rd, chart.SnailTrail.Rd:
- modified example
2009-10-17 10:42 brian
* R/ES.R, man/ES.Rd, man/VaR.Rd:
- add option for clean="geltner" to ES() and to docs
- minor updates to docs for clarity and accuracy, thanks Kris
2009-10-16 11:17 peter
* R/chart.StackedBar.R:
- adjusted axis labels to include space
- changed default date label to match other defaults
- adjusted margins for top plot when legend is under
2009-10-16 11:15 peter
* R/chart.RollingStyle.R:
- use rollapply.xts instead of rollapply
2009-10-16 11:14 peter
* NAMESPACE:
- added StdDev.annualized to export
2009-10-16 11:13 peter
* DESCRIPTION:
- added version constraint for xts
2009-10-15 16:50 brian
* R/chart.RollingStyle.R, man/Style.Rd:
- updates to add automatic periodicity to chart labels, and support different frequency data
2009-10-15 16:43 brian
* DESCRIPTION:
- add quantreg to Suggests
2009-10-15 16:42 brian
* R/ES.R, man/ES.Rd, man/VaR.Rd:
- updates to pass R CMD check
2009-10-15 16:41 brian
* R/chart.RollingMean.R, R/chart.RollingPerformance.R,
R/chart.RollingQuantileRegression.R, R/chart.RollingRegression.R,
R/charts.RollingPerformance.R, R/charts.RollingRegression.R,
man/chart.RelativePerformance.Rd,
man/chart.RollingPerformance.Rd, man/chart.RollingRegression.Rd,
man/table.RollingPeriods.Rd:
- updates to add automatic periodicity to chart labels, and support different frequency data
2009-10-15 16:37 brian
* inst/doc/: PA-charts.Rnw, PA-charts.pdf,
PerformanceAnalyticsChartsPresentation-Meielisalp-2007.Rnw,
PerformanceAnalyticsChartsPresentation-Meielisalp-2007.pdf,
PerformanceAnalyticsPresentation-UseR-2007.Rnw,
PerformanceAnalyticsPresentation-UseR-2007.pdf, Rlogo.jpg:
- changes to pass R CMD check
2009-10-15 14:56 brian
* NAMESPACE:
- remove pfolioReturn from exports, add Return.rebalancing
2009-10-15 13:20 peter
* NAMESPACE:
- added functions to export
2009-10-15 13:20 peter
* R/Return.calculate.R:
- fixed reclass reference
2009-10-15 13:17 brian
* R/Return.portfolio.R:
- add dots back in as parameter
- add stop error for multirow weights in Return.portfolio, perhaps automatically call appropriate fn in the future
2009-10-15 13:15 brian
* man/: BetaCoMoments.Rd, CAPM.alpha.Rd, CAPM.beta.Rd,
CAPM.utils.Rd, CalmarRatio.Rd, apply.fromstart.Rd,
apply.rolling.Rd, centeredmoments.Rd, chart.ACF.Rd, chart.Bar.Rd,
chart.BarVaR.Rd, chart.Boxplot.Rd, chart.Correlation.color.Rd,
chart.CumReturns.Rd, CoMoments.Rd, DownsideDeviation.Rd, ES.Rd,
InformationRatio.Rd, MultivariateMoments.Rd,
MultivariateRisk.MM.Rd, Omega.Rd, Return.Geltner.Rd,
Return.annualized.Rd, Return.clean.Rd, Return.cumulative.Rd,
Return.excess.Rd, Return.relative.Rd, SharpeRatio.Rd,
SharpeRatio.annualized.Rd, SharpeRatio.modified.Rd,
SmoothingIndex.Rd, SortinoRatio.Rd, StdDev.annualized.Rd,
TrackingError.Rd, TreynorRatio.Rd, UpDownRatios.Rd,
UpsidePotentialRatio.Rd, VaR.Rd, chart.Drawdown.Rd,
chart.ECDF.Rd, chart.Events.Rd, chart.Histogram.Rd,
chart.QQPlot.Rd, chart.RelativePerformance.Rd,
chart.RiskReturnScatter.Rd, chart.RollingCorrelation.Rd,
chart.RollingMean.Rd, chart.RollingPerformance.Rd,
chart.RollingRegression.Rd, chart.SnailTrail.Rd,
chart.TimeSeries.Rd, chart.VaRSensitivity.Rd,
charts.PerformanceSummary.Rd, charts.RollingPerformance.Rd,
clean.boudt.Rd, findDrawdowns.Rd, maxDrawdown.Rd,
table.AnnualizedReturns.Rd, table.Arbitrary.Rd,
table.Autocorrelation.Rd, table.CalendarReturns.Rd,
table.DownsideRisk.Rd, table.Drawdowns.Rd,
table.HigherMoments.Rd, table.MonthlyReturns.Rd,
table.RollingPeriods.Rd:
- standardize language about xts for R,Ra,Rb,Rf
2009-10-15 13:01 peter
* man/: Style.Rd, chart.Events.Rd, chart.QQPlot.Rd,
chart.RollingRegression.Rd, chart.StackedBar.Rd,
charts.PerformanceSummary.Rd, download.RiskFree.Rd,
download.SP500PriceReturns.Rd, findDrawdowns.Rd,
sortDrawdowns.Rd, table.Drawdowns.Rd, table.RollingPeriods.Rd:
- modified examples
2009-10-15 12:23 brian
* man/Return.portfolio.Rd:
- initial revision of doc for Return.portfolio and Return.rebalancing
2009-10-15 11:06 peter
* NAMESPACE:
- added chart.Events to export list
2009-10-15 10:45 peter
* man/SharpeRatio.modified.Rd:
- adjusted parameter name
2009-10-15 10:45 peter
* R/SharpeRatio.modified.R:
- fixed function parameter confusion with apply
2009-10-15 10:23 peter
* man/SharpeRatio.modified.Rd:
- changed parameter names to match function
2009-10-15 10:23 peter
* R/SharpeRatio.modified.R:
- changed parameter name for passing function so that method may be passed
2009-10-15 10:11 peter
* R/SharpeRatio.modified.R:
- fixed function call
2009-10-15 09:52 brian
* data/weights.rda:
- update so column names are the same as edhec
2009-10-15 09:49 brian
* R/Return.portfolio.R:
- update Return.rebalancing to properly accumulate wealth
- add rbind workaround provided by Jeff
2009-10-15 07:26 brian
* R/Return.portfolio.R:
- revert change of calc of weighed cumulative returns,
use more efficient apply since wealthindex.assets is already tied to structure of weights
2009-10-14 22:53 peter
* man/: table.AnnualizedReturns.Rd, table.Arbitrary.Rd,
table.Correlation.Rd, table.DownsideRisk.Rd, table.Drawdowns.Rd,
table.HigherMoments.Rd:
- modified examples
2009-10-14 22:52 peter
* R/table.HigherMoments.R:
- revised parameters
2009-10-14 22:37 peter
* R/table.CAPM.R, man/table.CAPM.Rd:
- modified example
2009-10-14 22:16 peter
* man/Return.read.Rd:
- modified to include dontrun{}
2009-10-14 22:06 peter
* NAMESPACE:
- reformatted
2009-10-14 21:47 peter
* R/Return.read.R:
- switched default for frequency parameter
2009-10-14 21:46 peter
* man/chart.RelativePerformance.Rd:
- added detail about the function
2009-10-14 21:46 peter
* man/: Return.Geltner.Rd, Return.clean.Rd, Return.excess.Rd,
Return.read.Rd:
- modified examples
2009-10-14 21:43 peter
* man/Return.relative.Rd:
- first draft of function documentation
2009-10-14 20:30 peter
* man/CAPM.beta.Rd:
- added alias for TimingRatio
2009-10-14 16:59 brian
* R/Return.portfolio.R:
- add xts-based weights handling
- handle column names out of order for assets and weights
2009-10-14 12:07 brian
* man/chart.StackedBar.Rd:
- updates to pass R CMD check
2009-10-14 12:03 peter
* man/Return.calculate.Rd:
- modified example
2009-10-14 09:10 peter
* man/: CalmarRatio.Rd, Omega.Rd:
- fixed examples
2009-10-14 09:09 peter
* R/CAPM.utils.R:
- fixed error in CAPM.SML.slope
2009-10-13 22:46 peter
* R/chart.VaRSensitivity.R:
- modified call to gaussian VaR and ES
2009-10-13 22:45 peter
* man/: chart.Bar.Rd, chart.CumReturns.Rd, chart.ECDF.Rd,
chart.Events.Rd, chart.Histogram.Rd, chart.QQPlot.Rd,
chart.RelativePerformance.Rd, chart.RiskReturnScatter.Rd,
chart.RollingCorrelation.Rd, chart.RollingPerformance.Rd,
chart.StackedBar.Rd, chart.TimeSeries.Rd,
charts.RollingPerformance.Rd:
- modified examples
2009-10-13 21:13 peter
* NAMESPACE:
- fixes textplot export issue
2009-10-13 16:29 peter
* NAMESPACE:
- added back textplot functions to export list
2009-10-13 14:00 peter
* NAMESPACE:
- fixed typos
2009-10-13 13:55 peter
* NAMESPACE:
- exporting graphics lists
2009-10-13 09:31 peter
* NAMESPACE:
- changed timing.ratio function to TimingRatio
2009-10-13 09:30 peter
* DESCRIPTION:
- revised thanks
2009-10-13 09:29 peter
* man/: CAPM.utils.Rd, BetaCoMoments.Rd:
- modified examples
2009-10-13 09:29 peter
* R/InformationRatio.R:
- fixed ordering of results
2009-10-13 09:28 peter
* R/SmoothingIndex.R:
- revised row labeling
2009-10-13 09:27 peter
* R/SharpeRatio.R:
- removed 'scale' parameter
2009-10-13 09:26 peter
* R/CAPM.beta.R:
- revised labeling for TimingRatio function
2009-10-13 09:26 peter
* R/CAPM.alpha.R:
- renamed internal function to match functionality
2009-10-13 09:25 peter
* man/: ActivePremium.Rd, CAPM.alpha.Rd, CAPM.beta.Rd,
CalmarRatio.Rd, DownsideDeviation.Rd, InformationRatio.Rd,
KellyRatio.Rd, Omega.Rd, Return.annualized.Rd,
Return.cumulative.Rd, SharpeRatio.Rd, SharpeRatio.annualized.Rd,
SmoothingIndex.Rd, SortinoRatio.Rd, StdDev.annualized.Rd,
TrackingError.Rd, TreynorRatio.Rd, UpDownRatios.Rd,
UpsidePotentialRatio.Rd, kurtosis.Rd, maxDrawdown.Rd,
mean.utils.Rd, skewness.Rd:
- revised examples
2009-10-12 20:24 brian
* man/: CoMoments.Rd, PerformanceAnalytics-package.Rd,
apply.rolling.Rd, chart.QQPlot.Rd, chart.Regression.Rd,
chart.RelativePerformance.Rd, chart.RollingMean.Rd,
chart.RollingRegression.Rd, chart.StackedBar.Rd:
- updates to pass R CMD check
2009-10-12 20:20 brian
* NAMESPACE:
- updates to pass R CMD check
2009-10-12 16:40 brian
* man/VaR.Rd, DESCRIPTION:
- update to pass R CMD check
2009-10-11 07:55 brian
* R/Return.relative.R:
- trim
2009-10-11 07:26 brian
* man/chart.Histogram.Rd:
- updates to fix infinite loop in R-core perl code in R CMD check
2009-10-11 07:19 brian
* R/chart.RollingRegression.R:
- rf to Rf
2009-10-10 10:40 brian
* man/: ActivePremium.Rd, BetaCoMoments.Rd, CAPM.alpha.Rd,
CAPM.beta.Rd, CAPM.utils.Rd, CalmarRatio.Rd,
DownsideDeviation.Rd, Return.annualized.Rd,
SharpeRatio.modified.Rd, SortinoRatio.Rd, TrackingError.Rd,
chart.Bar.Rd, chart.BarVaR.Rd, chart.CumReturns.Rd,
chart.Drawdown.Rd, chart.RollingCorrelation.Rd,
table.CaptureRatios.Rd, table.Correlation.Rd:
- changes to pass R CMD check
2009-10-10 08:22 brian
* man/: ActivePremium.Rd, CAPM.alpha.Rd, CAPM.beta.Rd,
CAPM.utils.Rd, CalmarRatio.Rd, DownsideDeviation.Rd,
Return.annualized.Rd, SharpeRatio.modified.Rd, SortinoRatio.Rd,
chart.Bar.Rd, chart.RollingCorrelation.Rd, table.Correlation.Rd:
- remove empty \note{} sections
2009-10-10 07:40 brian
* DESCRIPTION, R/ActivePremium.R, R/CAPM.alpha.R, R/CAPM.beta.R,
R/CAPM.utils.R, R/CalmarRatio.R, R/CoMoments.R,
R/DownsideDeviation.R, R/Drawdowns.R, R/ES.R,
R/InformationRatio.R, R/KellyRatio.R, R/MultivariateMoments.R,
R/Omega.R, R/PortfolioRisk.R, R/Return.Geltner.R,
R/Return.calculate.R, R/Return.clean.R, R/Return.cumulative.R,
R/Return.excess.R, R/Return.index.R, R/Return.portfolio.R,
R/Return.read.R, R/Return.relative.R, R/SemiDeviation.R,
R/SharpeRatio.R, R/SharpeRatio.modified.R, R/SortinoRatio.R,
R/StdDev.annualized.R, R/TrackingError.R, R/TreynorRatio.R,
R/UpDownRatios.R, R/UpsidePotentialRatio.R, R/VaR.Marginal.R,
R/VaR.R, R/apply.fromstart.R, R/apply.rolling.R, R/chart.Bar.R,
R/chart.BarVaR.R, R/chart.Boxplot.R, R/chart.CaptureRatios.R,
R/chart.Correlation.R, R/chart.Correlation.color.R,
R/chart.CumReturns.R, R/chart.Drawdown.R, R/chart.ECDF.R,
R/chart.Histogram.R, R/chart.QQPlot.R, R/chart.Regression.R,
R/chart.RelativePerformance.R, R/chart.RiskReturnScatter.R,
R/chart.RollingCorrelation.R, R/chart.RollingMean.R,
R/chart.RollingPerformance.R, R/chart.RollingRegression.R,
R/chart.Scatter.R, R/chart.TimeSeries.R,
R/charts.PerformanceSummary.R, R/charts.RollingPerformance.R,
R/charts.RollingRegression.R, R/checkData.R,
R/download.RiskFree.R, R/download.SP500PriceReturns.R,
R/findDrawdowns.R, R/kurtosis.R, R/legend.R, R/maxDrawdown.R,
R/mean.utils.R, R/na.skip.R, R/skewness.R, R/sortDrawdowns.R,
R/table.AnnualizedReturns.R, R/table.Arbitrary.R,
R/table.Autocorrelation.R, R/table.CAPM.R,
R/table.CalendarReturns.R, R/table.CaptureRatios.R,
R/table.Correlation.R, R/table.DownsideRisk.R,
R/table.Drawdowns.R, R/table.HigherMoments.R,
R/table.MonthlyReturns.R, man/PerformanceAnalytics-package.Rd:
- update copyright to 2004-2009
2009-10-10 07:31 brian
* R/chart.VaRSensitivity.R:
- add ES to sensitivity chart
2009-10-10 07:30 brian
* man/: BetaCoMoments.Rd, CAPM.beta.Rd, centeredmoments.Rd,
chart.Histogram.Rd, chart.VaRSensitivity.Rd,
MultivariateRisk.MM.Rd, Return.Geltner.Rd, SmoothingIndex.Rd,
clean.boudt.Rd:
- changes to pass R CMD check
2009-10-10 06:54 brian
* DESCRIPTION, man/PerformanceAnalytics-package.Rd:
- update sections on acknowledgements and contributors
2009-10-09 05:08 brian