Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9273281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T16:04:30+00:00 2026-06-18T16:04:30+00:00

I am trying to find months in S&P 500 which yielded more than x%.

  • 0

I am trying to find months in S&P 500 which yielded more than x%.
The following code find such instances:

getSymbols('^GSPC', from='2010-01-01')
G <- monthlyReturn(Cl(GSPC))
names(G) <- 'RET.M'
G[G$RET.M>.05]

Now, I would like to find out what is the yearly return of such instances?
I know I can calculate the yearly return as follow:

G$RET.Y <- yearlyReturn(Cl(GSPC))

But now, I want to query G$RET.Y to get the yearly return for months that yielded 5% or more.

Any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T16:04:32+00:00Added an answer on June 18, 2026 at 4:04 pm

    You can merge them, fill backwards using na.locf with fromLast=TRUE, then subset as normal

    G$RET.Y <- yearlyReturn(Cl(GSPC))
    G$RET.Y <- na.locf(G$RET.Y, fromLast=TRUE)
    G$RET.Y[G$RET.M > 0.05]
    #                   RET.Y
    #2010-03-31  0.1100186233
    #2010-07-30  0.1100186233
    #2010-09-30  0.1100186233
    #2010-12-31  0.1100186233
    #2011-10-31 -0.0000318056
    #2013-01-31  0.0643252302
    

    Or, you could format the index as a character representation of the year — format(index(G[G$RET.M > 0.05]), "%Y") — then just subset the yearly data with that

    do.call(rbind, lapply(format(index(G[G$RET.M > 0.05]), "%Y"), function(x) {
      yearlyReturn(Cl(GSPC))[x]
    }))
    #           yearly.returns
    #2010-12-31   0.1100186233
    #2010-12-31   0.1100186233
    #2010-12-31   0.1100186233
    #2010-12-31   0.1100186233
    #2011-12-30  -0.0000318056
    #2013-02-08   0.0643252302
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For months now I've been trying to find a code syntax formatting extension that
Trying to find an example that has css rollover using sprites & sliding door
I'm trying to find all instances of files with names like VAT*.xls where the
I am trying to find an error in a parsing-routine in C. The code
After trying for two months I find out how to obtain AttributedString from any
I have been trying to find an answer to this question for months, but
Trying to find a standard. The CmdLet will process data - multiple input, defined
Trying to find a way to remove blank pages from a document I wrote
Trying to find out if it's possible to use SQLAlchemy on Heroku. Thanks.
Trying to find the best way of create an overlap/overlay layer to fill the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.