Metrics API¶
PerformanceMetrics
¶
Static methods for calculating various performance metrics.
All methods work with both Series (single asset) and DataFrame (multiple assets).
Examples:
>>> data = loader.fetch_data()
>>> annual_return = PerformanceMetrics.calculate_annual_return(data)
>>> sharpe = PerformanceMetrics.calculate_sharpe_ratio(data, risk_free_rate=0.02)
Source code in portfolio_analysis/metrics/performance.py
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 | |
calculate_annual_return(data)
staticmethod
¶
Calculate annualized return from price data.
Uses year-end prices to calculate annual returns, then averages.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Annualized return(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_cagr(data)
staticmethod
¶
Calculate Compound Annual Growth Rate (CAGR).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
CAGR value(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_annual_volatility(data)
staticmethod
¶
Calculate annualized volatility (standard deviation of returns).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Annualized volatility |
Source code in portfolio_analysis/metrics/performance.py
calculate_sharpe_ratio(data, risk_free_rate=DEFAULT_RISK_FREE_RATE)
staticmethod
¶
Calculate Sharpe ratio.
Sharpe Ratio = (Return - Risk Free Rate) / Volatility
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
risk_free_rate
|
float
|
Annual risk-free rate |
0.02
|
Returns:
| Type | Description |
|---|---|
float or Series
|
Sharpe ratio(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_sortino_ratio(data, risk_free_rate=DEFAULT_RISK_FREE_RATE)
staticmethod
¶
Calculate Sortino ratio (uses downside deviation instead of volatility).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
risk_free_rate
|
float
|
Annual risk-free rate |
0.02
|
Returns:
| Type | Description |
|---|---|
float or Series
|
Sortino ratio(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_max_drawdown(data)
staticmethod
¶
Calculate maximum drawdown.
Maximum drawdown is the largest peak-to-trough decline.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Maximum drawdown (negative value) |
Source code in portfolio_analysis/metrics/performance.py
calculate_var(data, confidence_level=DEFAULT_CONFIDENCE_LEVEL)
staticmethod
¶
Calculate Value at Risk (VaR) using historical method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
confidence_level
|
float
|
Confidence level (e.g., 0.95 for 95%) |
0.95
|
Returns:
| Type | Description |
|---|---|
float or Series
|
VaR value (typically negative) |
Source code in portfolio_analysis/metrics/performance.py
calculate_calmar_ratio(data)
staticmethod
¶
Calculate Calmar ratio (CAGR / Max Drawdown).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Calmar ratio(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_cvar(data, confidence_level=DEFAULT_CONFIDENCE_LEVEL)
staticmethod
¶
Calculate Conditional Value at Risk (CVaR), also known as Expected Shortfall.
CVaR represents the expected loss given that the loss exceeds VaR. It is a more conservative risk measure than VaR as it considers the tail of the distribution.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
confidence_level
|
float
|
Confidence level (e.g., 0.95 for 95%) |
0.95
|
Returns:
| Type | Description |
|---|---|
float or Series
|
CVaR value (typically negative) |
Source code in portfolio_analysis/metrics/performance.py
calculate_omega_ratio(data, threshold=0.0)
staticmethod
¶
Calculate Omega ratio.
The Omega ratio compares the probability-weighted gains above a threshold to the probability-weighted losses below it. Higher values indicate better risk-adjusted performance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
threshold
|
float
|
Daily return threshold (0.0 for break-even) |
0.0
|
Returns:
| Type | Description |
|---|---|
float or Series
|
Omega ratio(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_ulcer_index(data)
staticmethod
¶
Calculate Ulcer Index.
The Ulcer Index measures downside volatility based on drawdowns. It penalizes deep and prolonged drawdowns more heavily than standard deviation. Lower values indicate less risk.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Ulcer Index value(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_recovery_factor(data)
staticmethod
¶
Calculate Recovery Factor.
Recovery Factor = Total Return / |Max Drawdown|
A higher recovery factor indicates the portfolio generates more return per unit of maximum drawdown risk.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Recovery factor(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_win_rate(data)
staticmethod
¶
Calculate Win Rate (percentage of positive return periods).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Win rate as a decimal (e.g., 0.55 for 55% win rate) |
Source code in portfolio_analysis/metrics/performance.py
calculate_profit_factor(data)
staticmethod
¶
Calculate Profit Factor.
Profit Factor = Sum of Gains / |Sum of Losses|
A value greater than 1 indicates profitable trading. Higher values indicate more profitable strategies.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Profit factor(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_payoff_ratio(data)
staticmethod
¶
Calculate Payoff Ratio (Average Win / Average Loss).
Also known as the Risk/Reward ratio. Higher values indicate that winning trades are larger than losing trades on average.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Series or DataFrame
|
Price data with datetime index |
required |
Returns:
| Type | Description |
|---|---|
float or Series
|
Payoff ratio(s) |
Source code in portfolio_analysis/metrics/performance.py
calculate_herfindahl_index(weights)
staticmethod
¶
Calculate Herfindahl-Hirschman Index (HHI) for portfolio concentration.
HHI = sum(w_i^2) for all weights - HHI = 1.0 means full concentration in one asset - HHI = 1/n means equal weighting across n assets
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
weights
|
list of float
|
Portfolio weights |
required |
Returns:
| Type | Description |
|---|---|
float
|
HHI value between 0 and 1 |
Source code in portfolio_analysis/metrics/performance.py
calculate_effective_n(weights)
staticmethod
¶
Calculate Effective N (effective number of assets).
Effective N = 1 / HHI
Represents how many equal-weighted assets would produce the same concentration level.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
weights
|
list of float
|
Portfolio weights |
required |
Returns:
| Type | Description |
|---|---|
float
|
Effective number of assets |
Source code in portfolio_analysis/metrics/performance.py
BenchmarkComparison
¶
Compare portfolio performance against market benchmarks.
Calculates alpha, beta, tracking error, information ratio, and generates comparison reports and visualizations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
portfolio_data
|
DataFrame
|
Historical price data for portfolio assets |
required |
weights
|
array - like
|
Portfolio weights (must sum to 1.0) |
required |
benchmark_ticker
|
str
|
Ticker symbol for benchmark |
'SPY'
|
risk_free_rate
|
float
|
Annual risk-free rate for calculations |
0.02
|
Examples:
>>> comparison = BenchmarkComparison(data, weights, benchmark_ticker='SPY')
>>> comparison.generate_report()
>>> comparison.plot_cumulative_returns()
Source code in portfolio_analysis/metrics/benchmark.py
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 | |
calculate_beta()
¶
Calculate portfolio beta relative to benchmark.
Source code in portfolio_analysis/metrics/benchmark.py
calculate_alpha(annualized=True)
¶
Calculate Jensen's alpha (CAPM alpha).
Source code in portfolio_analysis/metrics/benchmark.py
calculate_tracking_error(annualized=True)
¶
Calculate tracking error (active risk).
Source code in portfolio_analysis/metrics/benchmark.py
calculate_information_ratio()
¶
Calculate information ratio.
Source code in portfolio_analysis/metrics/benchmark.py
calculate_correlation()
¶
calculate_r_squared()
¶
calculate_up_capture()
¶
Calculate upside capture ratio.
Source code in portfolio_analysis/metrics/benchmark.py
calculate_down_capture()
¶
Calculate downside capture ratio.
Source code in portfolio_analysis/metrics/benchmark.py
get_metrics()
¶
Get all benchmark comparison metrics as a dictionary.
Source code in portfolio_analysis/metrics/benchmark.py
generate_report()
¶
Print a comprehensive comparison report.
Source code in portfolio_analysis/metrics/benchmark.py
plot_cumulative_returns(initial_value=10000, show=True)
¶
Plot cumulative returns comparison.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
initial_value
|
float
|
Starting portfolio value for visualization |
10000
|
show
|
bool
|
Whether to display the plot. Set to False for automated/server contexts. |
True
|
Returns:
| Type | Description |
|---|---|
Figure
|
The matplotlib figure object |
Source code in portfolio_analysis/metrics/benchmark.py
plot_rolling_metrics(window=TRADING_DAYS_PER_YEAR, show=True)
¶
Plot rolling alpha and beta.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
window
|
int
|
Rolling window size in trading days |
252
|
show
|
bool
|
Whether to display the plot. Set to False for automated/server contexts. |
True
|
Returns:
| Type | Description |
|---|---|
Figure
|
The matplotlib figure object |