Update: I'd suggest scrolling down to the May 4, 2019 backtest, comparing FactSet.
(I removed the earlier backtests)
How often are various fundamentals updated?
Price-earnings ratio for example might appear to be updating each day, except if earnings are updated quarterly, would only ^appear^ to be daily because of close prices changes of course.
Is everything actually essentially quarterly report data? For example, would fcf (free cash flow) yield be simply yesterday's close compared to the last quarterly reported fcf?
This code can be used for finding how often fundamental values are updated. Examples from logging output and from my spreadsheet.
In pipeline factors, be smart about it. Some questions: Why 240? For Mean of 4, what's going on with the ones that are 8? What about NaNs? By the way Min is not always 1, some are 2, some 4. I haven't run through all 1000 or so fundamentals.
Average trading days in a year: 252
fcf_yield: Across 2366 stocks seen, the stock whose value changed the most changed 240 times in a year. Average was 187.
ebit: Maximum of 8, average of 4 (quarterly)
Max
Stocks Days Min Mean Median Score Some fundamentals
1979 239 1 195 234 67 pe_ratio
2366 240 1 187 213 77 fcf_yield
2366 238 1 185 209 77 earning_yield
1910 235 1 175 213 59 two_years_forward_pe_ratio
2041 233 1 164 191 60 two_years_forward_earning_yield
2247 237 1 144 176 57 total_yield
2188 233 1 96 86 37 buy_back_yield
2375 239 1 208 234 87 market_cap
2164 239 1 208 235 79 enterprise_value
2276 220 1 8 4 3 cfo_per_share
2276 220 1 8 4 3 fcf_per_share
2253 220 1 8 4 3 sales_per_share
2264 23 1 5 5 20 share_class_level_shares_outstanding
2278 11 1 10 11 87 size_score
2223 10 1 4 4 37 normalized_basic_eps_earnings_reports
2223 10 1 4 4 37 normalized_diluted_eps_earnings_reports
2228 8 1 4 4 46 operating_income
2030 8 1 4 4 42 ebit
1968 8 1 4 4 41 roic
1963 8 1 4 4 41 normalized_ebitda
1961 8 1 4 4 41 ebitda
1427 8 1 3 4 22 interest_coverage
1389 8 1 3 4 21 interest_expense_non_operating
2266 7 1 4 4 54 roa
Was just to have some sort of Score for starters
= INT(100*(E3/C3) * B3/2375)
B: Stocks
C: Max Days
E: Mean
2375: Max stocks
Logging
1969-12-31 16:00 initialize:26 INFO fcf_yield 2017-03-06 to 2018-03-02
2017-03-29 13:00 log_counts:60 INFO 2081 stocks counts: max 20 min 1 mean 17 median 18
2017-04-28 13:00 log_counts:60 INFO 2123 stocks counts: max 39 min 1 mean 33 median 36
2017-05-30 13:00 log_counts:60 INFO 2152 stocks counts: max 58 min 1 mean 49 median 53
2017-06-28 13:00 log_counts:60 INFO 2181 stocks counts: max 79 min 1 mean 66 median 72
2017-07-28 13:00 log_counts:60 INFO 2215 stocks counts: max 98 min 1 mean 81 median 89
2017-08-28 13:00 log_counts:60 INFO 2230 stocks counts: max 118 min 1 mean 97 median 107
2017-09-27 13:00 log_counts:60 INFO 2252 stocks counts: max 139 min 1 mean 113 median 125
2017-10-26 13:00 log_counts:60 INFO 2275 stocks counts: max 160 min 1 mean 128 median 142
2017-11-27 13:00 log_counts:60 INFO 2296 stocks counts: max 181 min 1 mean 144 median 161
2017-12-27 13:00 log_counts:60 INFO 2317 stocks counts: max 199 min 1 mean 157 median 177
2018-01-29 13:00 log_counts:60 INFO 2343 stocks counts: max 219 min 1 mean 171 median 194
2018-02-28 13:00 log_counts:60 INFO 2366 stocks counts: max 240 min 1 mean 187 median 213
1969-12-31 16:00 initialize:21 INFO ebit 2017-03-06 to 2018-03-02
2017-04-03 13:00 log_counts:54 INFO 305 stocks counts: max 2 min 1 mean 1 median 1
2017-05-03 13:00 log_counts:54 INFO 775 stocks counts: max 4 min 1 mean 1 median 1
2017-06-02 13:00 log_counts:54 INFO 1849 stocks counts: max 4 min 1 mean 1 median 1
2017-08-02 13:00 log_counts:54 INFO 1880 stocks counts: max 4 min 1 mean 1 median 1
2017-08-31 13:00 log_counts:54 INFO 1947 stocks counts: max 6 min 1 mean 2 median 2
2017-10-02 13:00 log_counts:54 INFO 1950 stocks counts: max 6 min 1 mean 2 median 2
2017-10-31 13:00 log_counts:54 INFO 1953 stocks counts: max 6 min 1 mean 2 median 2
2017-11-30 13:00 log_counts:54 INFO 2005 stocks counts: max 8 min 1 mean 3 median 3
2018-01-02 13:00 log_counts:54 INFO 2010 stocks counts: max 8 min 1 mean 3 median 3
2018-02-01 13:00 log_counts:54 INFO 2011 stocks counts: max 8 min 1 mean 3 median 3
2018-03-02 13:00 log_counts:54 INFO 2030 stocks counts: max 8 min 1 mean 4 median 4