I am an individual investor with a primary focus on FX and equity markets. I enjoy researching the markets, trading strategies, and programming to implement a systematic investment approach.
Email: rossbennett34 “at” gmail “dot” com
I am an individual investor with a primary focus on FX and equity markets. I enjoy researching the markets, trading strategies, and programming to implement a systematic investment approach.
Email: rossbennett34 “at” gmail “dot” com
Pingback: Simple Moving Average Strategy with a Volatility Filter: Follow-Up Part 3 | rbresearch
there is no package called quantstrat!
> require(quantstrat)
Loading required package: quantstrat
Warning message:
In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, :
there is no package called ‘quantstrat’
I am guessing you do not have quantstrat installed. Try installing directly from R by entering this in the command line:
install.packages(“quantstrat”, repos=”http://R-Forge.R-project.org”)
Let me know if that works for you.
Ross
Thank you. That works.