Description Usage Arguments Details Value Examples
Remove all the holdings that are blocked from holdings data
1 | remove_blocked(position, blocked)
|
position |
A data.frame containing the full holdings information.
It is assumed to be generated with the function |
blocked |
A data.frame containing the full holdings information
It is assumed to be generated with the function |
This function will match the entries of a data frame representing blocked holdings and remove the corresponding titles and valuation from another data frame containing the full position
A data.frame with the holdings that are not blocked (those that belong to the strategies and not the client decisions and thus can be rebalanced)
1 2 3 4 5 | date <- "2016-08-31"
pos <- get_position(date)
bl <- get_blocked_position(date)
unbl <- remove_blocked(pos, bl)
head(unbl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.