Le ratio de Sharpe (annualisé)

Introduction à l'analyse de portefeuille en R

Kris Boudt

Professor, Free University Brussels & Amsterdam

Évaluer la performance par rapport à un étalon

ch_2_video_2.003.png

Introduction à l'analyse de portefeuille en R

Évaluer la performance par rapport à un étalon

ch_2_video_2.004.png

Introduction à l'analyse de portefeuille en R

Le compromis risque-rendement

ch_2_video_2.006.png

Introduction à l'analyse de portefeuille en R

Le compromis risque-rendement

ch_2_video_2.007.png

Introduction à l'analyse de portefeuille en R

Le compromis risque-rendement

ch_2_video_2.008.png

Introduction à l'analyse de portefeuille en R

Le compromis risque-rendement

ch_2_video_2.009.png

Introduction à l'analyse de portefeuille en R

Le compromis risque-rendement

ch_2_video_2.010.png

Introduction à l'analyse de portefeuille en R

Le compromis risque-rendement

ch_2_video_2.011.png

Introduction à l'analyse de portefeuille en R

Droite d'allocation du capital

ch_2_video_2.013.png

Introduction à l'analyse de portefeuille en R

Droite d'allocation du capital

ch_2_video_2.014.png

Introduction à l'analyse de portefeuille en R

Droite d'allocation du capital

ch_2_video_2.015.png

Introduction à l'analyse de portefeuille en R

Droite d'allocation du capital

ch_2_video_2.016.png

Introduction à l'analyse de portefeuille en R

Le ratio de Sharpe

ch_2_video_2.018.png

Introduction à l'analyse de portefeuille en R

Le ratio de Sharpe

ch_2_video_2.019.png

Introduction à l'analyse de portefeuille en R

Le ratio de Sharpe

ch_2_video_2.020.png

Introduction à l'analyse de portefeuille en R

Le ratio de Sharpe

ch_2_video_2.021.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c(-0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)

ch_2_video_2.024.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c(-0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
mean(sample_returns)

ch_2_video_2.025.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c(-0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
mean.geometric(sample_returns)

ch_2_video_2.026.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c(-0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
StdDev(sample_returns)

ch_2_video_2.027.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c(-0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
(mean(sample_returns)-0.004)/StdDev(sample_returns)

ch_2_video_2.028.png

Introduction à l'analyse de portefeuille en R

Annualiser la performance mensuelle

Screenshot 2019-08-21 at 11.00.36.png

  • Moyenne arithmétique : moyenne mensuelle * 12
  • Moyenne géométrique, si $R_i$ sont des rendements mensuels :
    • $[(1+R_1)\cdot(1+R_2)\cdot...\cdot(1+R_T)]^{12/T} -1$
  • Volatilité : volatilité mensuelle * sqrt(12)
Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c( -0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)


ch_2_video_2.036.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c( -0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
Return.annualized(sample_returns, scale = 12, geometric = FALSE)

ch_2_video_2.037.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c( -0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
Return.annualized(sample_returns, scale = 12, geometric = TRUE)

ch_2_video_2.038.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c( -0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
Std.Dev.annualized(sample_returns, scale = 12)

ch_2_video_2.039.png

Introduction à l'analyse de portefeuille en R

Statistiques de performance en action

library(PerformanceAnalytics)
sample_returns <- c( -0.02, 0.00, 0.00, 0.06, 0.02, 0.03, -0.01, 0.04)
Return.annualized(sample_returns, scale = 12)/
    Std.Dev.annualized(sample_returns, scale = 12)

ch_2_video_2.040.png

Introduction à l'analyse de portefeuille en R

Passons à la pratique !

Introduction à l'analyse de portefeuille en R

Preparing Video For Download...