expected_return: Expected Return

Description Usage Arguments Value Note Author(s) Examples

Description

Computes portfolio cumulative expected return.

Usage

1

Arguments

asset

Portfolio or Position object created using portfolio_create( ) or position_add( ) function

Value

Metric object

Note

https://www.portfolioeffect.com/docs/glossary/measures/absolute-return-measures/expected-return

Author(s)

Kostin Andrey <andrey.kostin@portfolioeffect.com>

Examples

 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
26
27
## 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(expected_return(portfolio),expected_return(positionGOOG),
expected_return(positionAAPL)) 
plot(expected_return(portfolio),expected_return(positionGOOG),expected_return(positionAAPL),
legend=c('Portfolio','GOOG','AAPL'),title='Expected Return')

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(expected_return(positionC),expected_return(positionGOOG),
expected_return(positionAAPL)) 
plot(expected_return(positionC),expected_return(positionGOOG),expected_return(positionAAPL),
legend=c('C','GOOG','AAPL'),title='Expected Return')

## End(Not run)

PortfolioEffectHFT documentation built on May 2, 2019, 11:52 a.m.