Skip to content

Instantly share code, notes, and snippets.

# R code re: CapitalSpecator.com post for replicating indexes in R
# "Replicating Indexes In R With Style Analysis: Part I"
# http://www.capitalspectator.com/replicating-indexes-in-r-with-style-analysis-part-i/
# 10 Oct 2017
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2017 by Beta Publishing LLC
# load packages
library(quadprog)
# R code re: CapitalSpecator.com post on "shock" modeling with VAR analytics:
# "Modeling "What If?" Scenarios With Impulse Response Simulations"
# http://www.capitalspectator.com/modeling-what-if-scenarios-with-impulse-response-simulations/
# 19 Feb 2016
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2016 by Beta Publishing LLC
#Load Packages
library(vars)
# R code re: CapitalSpecator.com post on random rebalancing dates:
# "Skewed By Randomness"
# www.capitalspectator.com/skewed-by-randomness-testing-arbitrary-rebalancing-dates/#more-6039
# 08 Sep 2015
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2015 by Beta Publishing LLC
# load packages
library(quantmod)
# R code re: CapitalSpecator.com post for generating rolling correlations for asset class fund proxies
# "Are Correlations Between Asset Classes Rising?"
# http://www.capitalspectator.com/are-correlations-between-asset-classes-rising/
# 27 May 2016
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2016 by Beta Publishing LLC
# load packages
# R code re: CapitalSpecator.com post for analyzing combination forecasts in R
# "Projecting The Payrolls Trend With Combination Forecasts"
# http://www.capitalspectator.com/projecting-the-payrolls-trend-with-combination-forecasts/#more-8309
# 22 Dec 2016
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2016 by Beta Publishing LLC
# load packages
library(TTR)
# R code re: CapitalSpecator.com post for analyzing tail risk with extreme value theory in R
# "Tail-Risk Analysis In R: Part II - Extreme Value Theory"
# http://www.capitalspectator.com/tail-risk-analysis-in-r-part-ii-extreme-value-theory/
# 7 Feb 2017
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2017 by Beta Publishing LLC
# load packages
# R code re: CapitalSpecator.com post for analyzing 2 risk-managed funds
# "Analyzing Risk-Managed Funds With R"
# http://www.capitalspectator.com/analyzing-risk-managed-funds-with-r/#more-8031
# 23 Sep 2016
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2016 by Beta Publishing LLC
# load packages
library(xts)
# R code re: CapitalSpecator.com post on random rebalancing with weights:
# "Using Random Portfolios To Test Asset Allocation Strategies"
# http://www.capitalspectator.com/using-random-portfolios-to-test-asset-allocation-strategies/
# 06 Oct 2015
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2015 by Beta Publishing LLC
# load packages
library(quantmod)
# R code re: CapitalSpecator.com post on risk-contribution analysis:
# "Portfolio Analysis in R: Part VI | Risk-Contribution Analysis"
# http://www.capitalspectator.com/portfolio-analysis-in-r-part-vi-risk-contribution-analysis/
# 12 Jan 2016
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2016 by Beta Publishing LLC
library(quantmod)
library(tseries)
# R code re: CapitalSpecator.com post on principal component analysis:
# "Portfolio Analysis in R: Part V | Risk Analysis Via Factors"
# http://www.capitalspectator.com/portfolio-analysis-in-r-part-v-risk-analysis-via-factors/#more-6777
# 29 Dec 2015
# By James Picerno
# http://www.capitalspectator.com/
# (c) 2015 by Beta Publishing LLC
# load packages
library(xts)