Description Usage Arguments Value Author(s) Examples
Computes portfolio Hurst exponent as a weighted sum of the Hurst exponents of its position returns.
1 | hurst_exponent(asset)
|
asset |
Portfolio or Position object created using portfolio_create( ) or position_add( ) function |
Metric object
Kostin Andrey <andrey.kostin@portfolioeffect.com>
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 | ## Not run:
data(aapl.data)
data(goog.data)
data(spy.data)
portfolio=portfolio_create(priceDataIx=spy.data)
portfolio_settings(portfolio,windowLength = '3600s',resultsSamplingInterval='60s')
positionGOOG=position_add(portfolio,'GOOG',100,priceData=goog.data)
positionAAPL=position_add(portfolio,'AAPL',300,priceData=aapl.data)
result=compute(hurst_exponent(portfolio),hurst_exponent(positionGOOG),hurst_exponent(positionAAPL))
plot(hurst_exponent(portfolio),hurst_exponent(positionGOOG),hurst_exponent(positionAAPL),
legend=c('Portfolio','GOOG','AAPL'),title='Hurst Exponent')
dateStart = "2014-11-17 09:30:00"
dateEnd = "2014-11-17 16:00:00"
portfolio=portfolio_create(dateStart,dateEnd)
portfolio_settings(portfolio,portfolioMetricsMode="price",windowLength = '3600s',
resultsSamplingInterval='60s')
positionAAPL=position_add(portfolio,'AAPL',100)
positionC=position_add(portfolio,'C',300)
positionGOOG=position_add(portfolio,'GOOG',150)
result=compute(hurst_exponent(positionC),hurst_exponent(positionGOOG),hurst_exponent(positionAAPL))
plot(hurst_exponent(positionC),hurst_exponent(positionGOOG),hurst_exponent(positionAAPL),
legend=c('C','GOOG','AAPL'),title='Hurst Exponent')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.