search for: fundstrat

Displaying 2 results from an estimated 2 matches for "fundstrat".

Did you mean: fundstrats
2012 Jun 19
1
help with xy.coords(x,y)
...edge funds with 7 strategies. And right now in this boxplot I need to plot the points of 30 individual hedge funds from my portfolio. And I applied POINTS() and TEXTXY() to label these points. There are 30 funds in my portfolio with 7 different strategies. "FundName"(fundNames), "fundStrats", "Return"(fundrets) Here is my code: for(i in 1:T){ # T equals to the amount of strategies in my portfolio strat = portStrats[i]; #get strategy portidx = fundStrats == strat; # identify portfolio funds of the same strategy frets = fundrets...
2012 Jun 14
1
Help for boxplot
...NTS() to plot the performance of specific funds in the related box plot, which are from the portfolio. and used TEXTXY() to label its name. #label portfolio funds for(i in 1:T){ #loop through all strategies #get strategy strat = portStrats[i]; #identify all funds of that strategy idx = allFundStrats == strat; #get returns of the all funds rets = allFundRets[idx]; #identify portfolio funds of the same strategy portidx = fundStrats == strat; #get returns and names frets = fundrets[portidx]; fnames = fundNames[portidx]; N = length(frets); #now figure out where to put the labels...