Sunday 6 February 2011

Fun with Financial Data (or As Much Fun As You Can Have Without Actually Making Any Money)

I've started reading the book Data Analysis with Open Source Tools by Philipp K. Janert. It's very well written and informative, and I highly recommend it. I've only scratched the surface so far, but I decided that I wanted to try to apply some ideas from it to a problem that had been kicking around in my head for while.

And then I figured: why not write a blog post about it! (After all, no one reads this thing anyway ;-)

This problem occurred to me a while back while reading another O'Reilly book: Programming Collective Intelligence by Toby Segaran. The idea involves looking at a couple of pieces of information that are available on the web: Financial price data and financial news (both of which are freely available at Yahoo! Finance). I realize that the data that Yahoo publishes is not particularly real-time and one wouldn't probably want to build an HFT system on it, but it will serve to do a little studying.

I didn't really have a hypothesis in mind when I started. Taking a cue from Mr. Janert, I decided to take a look at the data with an open mind (no pre-conceived notions). At the heart of this inquiry, however, is a two-tier question:
  1. Is there some kind of correlation between when news gets published online and when stock prices move? and
  2. Is there a predictable sequential relationship that can be construed?
Why do this? Well, it's interesting. I'd been interested for a while in finding a worthwhile excuse to do something with financial data. Besides, there's a small chance that it might reveal an interesting opportunity (if news precedes predictable changes in price? Cha-ching!). More likely, however, I was expecting that I'd find that We, The Sheeple are trailing the HFT systems and insiders and there is little or no hope for us little folks to make a thin dime playing the market.

Please note that this is a first pass at this. By no means am I imagining that this is a comprehensive approach. Indeed, I would be very grateful if anyone has any ideas for what to look at next (please comment!).

For those who like the punchline first, here's the spoiler: the evidence is inconclusive as to whether any predictions can be made in price change based on headlines. Further study might reveal something, but at first glance, it just doesn't add up (pun intended).

Conversely, and somewhat surprisingly, it is not conclusive that price changes precede news. In other words, it is not clear cut that the news follows the market.

However, there is clearly a correlation in the data: big price shifts, high volume, and an increase in published news tend to go hand-in-hand. This is an unremarkable finding, but nonetheless, it was an interesting exercise.

Now, despite having warned you that these findings are dull as dishwater, if you are really interested, I presume you are still with me...

To analyze the problem, the first thing I did was to set up a method for capturing data. Once I had a bit of data to look at, then I could begin my inquiry.

I don't really want to spend a lot of time discussing the specific technologies employed, as that's not really the point of this post, but I will just summarize this step briefly:
  1. A couple of shell scripts employing curl (via cron) to grab data at reasonable intervals: every minute for price data, and every hour for news data.
  2. A couple of Scala scripts for parsing that data and dumping into a sqlite database.
  3. SQL queries to grab the data (grouped as appropriate) in CSV format to pull into Excel (where I can create charts, where I can create charts for visualization, etc.)
As you can see, very low-tech, indeed. All in the spirit of keeping it simple. I thought about using matplotlib, which is a great Python-based tool for doing data analysis that I've had the pleasure of using a number of times in the past. But, as the data set I was focusing on was pretty small, Excel did the job nicely.

In another iteration of this inquiry, I might be inclined to try out R or Octave, and dig a little deeper. Perhaps I'll even take a further look at what data is available and try to expand the reach. If I'm feeling especially crazy, I might even give Hadoop a try.

For purposes of this exercise, I will be looking at this data over the course of a single trading week: January 10-14 2011 (inclusive), and I'm just grabbing data on stocks that make up the Dow Jones Industrial Average. No particular reason other than that that was a convenient week to do it, and it seemed like a sufficient amount of time for this initial undertaking.

I figured I would take a "big picture" view first. See whether just glancing at the data indicates anything interesting. If something jumps out, then drill down further and see where it takes me.

To put this in context, here's a graph showing the Dow's movement around that time:


Prices had been coming down the previous week, but were poised to generally go up this week (hindsight being 20/20 and all).

The first things I want to look at are:
  1. How many news headlines are there per stock per day? (And look for spikes in these numbers.)
  2. Significant shifts in prices.
  3. Significant shifts in volumes.

That alone should establish where there's a relationship that's worth exploring. Doing this on a per stock per day over these few days should be sufficient to start. Then, if motivated, look at the intra-day prices and specific publish times of articles to see if one can determine whether it's the chicken or the egg that comes first.

To start, here's some summary information about our headline data per stock per day (biggest ranges, and largest gaps between mean and max are shown highlighted):



And here it is again, measuring number of standard deviations from the mean (largest numbers highlighted):



Those spikes are a lot clearer when looking at them charted:




Looking at these, just based on spikes in number of news articles, I'd be interested in looking further at the following:

(Because I know what headlines at Yahoo tend to get grouped with stocks in the same industries, I'm looking for those relationships as well.)

  1. DuPont (DD), Johnson & Johnson (JNJ), and Procter & Gamble (PG) on Monday.
  2. AT&T (T) and Verizon (VZ) on Tuesday.
  3. Merck (MRK) and Pfizer (PFE) on Thursday.
  4. Bank of America (BAC) and JP Morgan (JPM) on Friday.

Now, let's see if that jives with what we can see in price data (note: this is shown by price range for the day as a fluctuation (max-min) percentage from the previous day's close):


Looking at the price data, there is certainly enough coming through to believe that there is a correlation here. Much of the data points to the same stocks/days. I might be inclined to filter my list, however, as it least some of the headline data is likely to be associated with certain stocks only because of the industry relationship:

  1. DuPont (DD) on Monday.
  2. AT&T (T) and Verizon (VZ) on Tuesday.
  3. Merck (MRK) on Thursday.
  4. Bank of America (BAC) and JP Morgan (JPM) on Friday.

That reduces it to six different stocks on four different days, which seems like a reasonable number to analyze further (with two industry relationships to look at).

I might also be inclined to add some based on the price data alone, like McDonald's (MCD) or American Express (AXP) on Friday, but when looking at the headline data, there's not really enough to go on. (Most of the headlines for McDonald's on the Friday were actually about Starbucks.)

And, just to complete the picture, I'll have a look at volumes as well.





Again, a lot of the same players emerge, which leads me to think that I'm on the right track. The correlation is clear. Now, I'll have to look at the intra-day data to see if one can draw any conclusions moment-to-moment on the specific scenarios that I've identified.

DuPont (DD): Monday January 10th, 2011

First off, the data... (Note that the price column is price range during that hour as a percentage)


The following chart shows the deltas in headline count, price, and volume as a percentage of the total change over the course of the day (this allows unlike numbers to be compared in like manner). In particular, note that I've summed the delta of pre-open headlines into the first hour's number, which might exaggerate it's effect on the chart. But looking at the data you can certainly see that there was significant activity pre-open.



And, price for the day...



One thing's for certain, there was definitely a spike in the number of headlines at 11 am which followed the steep change in price. But most of the headlines from that day were before the bell, and the big dip in price happened before 10 am. By 11 am the price was fairly stable.

So, what were the headlines? Well, here are all the headlines that were published before 11 am:
  • 07:07 "Duke, Progress Energy, Sara Lee, Strayer, WellPoint: U.S. Equity Preview"
  • 07:15 "US STOCKS-Futures lower on Portugal concerns despite M&A"
  • 07:24 "CNNMoney Pre-Market Report - Jan. 10, 2011"
  • 07:25 "DuPont to Buy Danisco for $5.8 Billion"
  • 07:25 "Futures Fall; DuPont, Earnings in Focus"
  • 07:32 "Disappointing Jobs Data Weighs on Futures"
  • 07:45 "[$$] Danisco to Recommend DuPont Bid"
  • 07:56 "US STOCKS-Futures lower as Portugal concerns offset M&A"
  • 08:08 "Let's Make a Deal"
  • 08:19 "Futures follow Asia, Europe lower"
  • 08:27 "UPDATE 1-Goldman Sachs raises US chemicals sector to attractive"
  • 08:30 "[$$] The Day Ahead: Merger Monday"
  • 08:40 "UPDATE 3-DuPont's Danisco bid sends sector shares higher"
  • 08:53 "Before the Bell: Duke Energy, DuPont, Verizon in spotlight"
  • 08:59 "U.S. Stocks Poised For Weak Open"
  • 09:09 "[video] News Hub: Before the Opening Bell [1.4 min]"
  • 09:14 "[video] Faber Report"
  • 09:20 "Danish currency firms on Danisco takeover"
  • 09:40 "CNNMoney Market Report - Jan. 10, 2011"
  • 09:44 "Dow Falls at Open Despite Rise in M&A"
  • 09:47 "Verizon iPhone Announcement Seen for Tuesday"
  • 09:48 "Stocks Dip on Euro Debt Concerns"
  • 09:50 "Portugal Bailout Push Mars Merger Monday"
  • 09:59 "[audio] Opening Bell from MarketWatch Radio Network [1.0 min]"
  • 10:00 "Monday Morning Quarterback: Mergers, Foreclosure and Hank Moody"
  • 10:16 "Wall St down as Portugal woes offset M&A deals"
  • 10:39 "US equities fall on eurozone fears"
  • 10:57 "Stocks to Watch: Union Pacific, Exxon and More ..."
Clearly the buyout of Danisco was a big factor here, but I'm having a hard time understanding why it had the effect it did on price. It almost seems counter-intuitive that the share price should fall so dramatically in the first 20 minutes of trading, given the seemingly "good news" of this buyout. Perhaps it's something to do with exchange rates and the European problems that were weighing on the market? Was it this: Danish currency firms on Danisco takeover? (09:20)

Interesting, but by no means conclusive.

One headline in there jumps out, however, and makes a nice segue:

09:47 "Verizon iPhone Announcement Seen for Tuesday"

That'll explain our next subject: Verizon and AT&T activity on Tuesday.

 Verizon (VZ): Tuesday January 11th, 2011



 The spike in price at around 11 am when all those articles were published (which corresponded to the time of the Verizon iPhone launch) is certainly interesting. But I don't think it would take a genius to figure out that that might happen.

The other scenarios below also confirm what was stated previously, so I'm happy to leave the rest of this as an exercise for the reader. There is a correlation between headline count and price changes, but not a clearly sequential one. Again, I welcome feedback or ideas. I hope to come back to this at some stage and delve a little deeper. In the meantime, here's the rest of that data, starting with the Verizon headlines...
  • 00:01 "IPhone May Cost Verizon Wireless $5 Billion in Subsidies in First Year"
  • 00:15 "ANALYSIS - AT&T faces tough year after losing iPhone exclusive"
  • 02:47 "Telecoms' Dividend Yields"
  • 03:03 "With iPhone Taunts, AT&T-Verizon Rivalry Escalates"
  • 03:51 "11 High Yield Stocks to Consider Now"
  • 05:00 "[video] Verizon iPhone Data Plan"
  • 06:00 "Nielsen: Young People Across The Globe Love Their Cell Phones (But Use Them Differently)"
  • 06:45 "Half of Dow Companies to Post Profit Gains"
  • 06:50 "Ahead of the Bell: Verizon iPhone"
  • 07:27 "10 Things You Need To Know Before The Opening Bell"
  • 07:27 "10 Things You Need To Know Before The Opening Bell"
  • 07:30 "CNNMoney Pre-Market Report - Jan. 11, 2011"
  • 07:32 "Lowenstein Says Verizon's Network Ready to Handle IPhone: Video"
  • 07:39 "10 Things You Need To Know This Morning"
  • 07:40 "iPhone Raises Stakes of AT&T-Verizon Rivalry"
  • 07:45 "Verizon big winner from having iPhone? Not so fast"
  • 07:58 "AT&T and Verizon Trade Taunts Over iPhone"
  • 08:03 "[video] 3 Stocks I Saw on TV"
  • 08:22 "Will Verizon Demolish AT&T? It Did So Long Ago"
  • 08:24 "The Big Questions About Verizon's IPhone"
  • 08:24 "Verizon big winner from having iPhone? Not so fast"
  • 08:25 "McCourt Says Verizon's Network Can Handle Apple's IPhone: Video"
  • 08:36 "How Important Is Offering the iPhone on Verizon to Apple?"
  • 08:45 "[$$] ETF Play of the Day: XLK"
  • 08:56 "Liveblog: Verizon set to launch the iPhone. Finally."
  • 09:02 "[video] AM Report: Chinese Stealth Jet Takes Flight [8.0 min]"
  • 09:17 "[video] 3 Networking Stocks Set for Cloud Boost"
  • 09:29 "Verizon iPhone Faces Even Bigger Foe"
  • 09:33 "Trujillo Says 'Many Questions' Remain For Verizon IPhone: Video"
  • 09:45 "Verizon IPhone Event Live Blog"
  • 09:45 "[video] News Hub: Verizon iPhone: How will AT&T Respond? [2.7 min]"
  • 09:52 "Verizon's Big iPhone Unveil"
  • 09:52 "[video] Verizon's iPhone Buzz"
  • 09:54 "Mobile Broadband Subs Seen Hitting 1 Billion In 2011"
  • 09:58 "[audio] Opening Bell from MarketWatch Radio Network [1.0 min]"
  • 10:03 "Video: Is the Verizon iPhone a Threat to Android?"
  • 10:05 "Verizon iPhone expected to have unlimited data plan"
  • 10:14 "[video] iPhone or Not, Verizon Is A Winner"
  • 10:19 "Verizon iPhone: Live Blog"
  • 10:37 "Verizon: Stay Tuned"
  • 10:47 "LIVE: The Verizon iPhone Event"
  • 10:53 "Faber Report: What Will Drive Verizon?"
  • 10:54 "LIVE FROM NEW YORK: Verizon Gets the iPhone"
  • 10:54 "Verizon iPhone: Will It Fix Verizon's $100 Billion Conundrum?"
  • 10:55 "Live Blog: Verizon's iPhone Announcement"
  • 10:57 "Live Blogging the Verizon iPhone Announcement"
  • 11:18 "Verizon to launch iPhone 4 in February"
  • 11:20 "Verizon iPhone: The basics"
  • 11:24 "The Biggest Surprise About the Verizon iPhone: It's a Mobile Hotspot"
  • 11:24 "Verizon to Carry Apple iPhone, Ending Months of Anticipation"
  • 11:30 "Verizon Will Be Selling The iPhone Starting February 10th"
  • 11:36 "Live Blog: Verizon's iPhone Announcement"
  • 11:38 "UPDATE 2-Verizon Wireless to sell iPhone in February"
  • 11:39 "PHOTOS: Verizon iPhone Has Different (Better?) Antenna Design Than AT&T iPhone"
  • 11:39 "Verizon, AT&T, And Apple: Guess Which One's Stock Isn't Tanking Today"
  • 11:41 "Verizon to Sell iPhone 4 on Feb. 10"
  • 11:43 "Verizon Wireless to Offer iPhone 4 in February"
  • 11:45 "Verizon iPhone: 'It Begins'"
  • 11:50 "Verizon to begin selling iPhone 4 in February"
  • 11:51 "Bizarre Fact of the Day: Tyler Durden and Louis Winthorpe III Are Practically the Same Person"
  • 11:51 "Verizon to sell Apple iPhone"
  • 11:51 "Verizon: Began Discussions With Apple In 2008; Tim Cook Talks"
  • 11:54 "Verizon Wireless to sell iPhone in February"
  • 12:17 "AT&T Preps for Verizon iPhone With New Ads, Price Cuts"
  • 12:18 "[audio] Enderle: Verizon and Apple no match made in heaven [5.1 min]"
  • 12:19 "Apple's Phil Schiller on Building the Verizon iPhone"
  • 12:20 "AT&T Shrugs Off Verizon iPhone"
  • 12:20 "COMPARISON: Verizon Vs. AT&T iPhone"
  • 12:26 "FACTBOX - AT&T and Verizon wage battle over iPhone"
  • 12:28 "Verizon iPhone: Yep, The Real Target is Google."
  • 12:28 "Why No 4G iPhone?"
  • 12:30 "AT&T: Five Reasons the Sky Won't Fall When iPhone Goes to Verizon"
  • 12:35 "[audio] Midday Update from MarketWatch Radio Network [1.0 min]"
  • 12:37 "FACTBOX - AT&T and Verizon wage battle over iPhone"
  • 12:37 "Verizon Wireless to sell iPhone in February"
  • 12:43 "Verizon to start selling iPhone on Feb. 10"
  • 12:48 "Corrected: Factbox: AT&T and Verizon wage battle over iPhone"
  • 12:50 "Verizon Will Offer the iPhone Next Month"
  • 12:57 "Corrections: Verizon to begin selling iPhone 4 in February"
  • 12:59 "Verizon Wireless to sell iPhone in February"
  • 13:17 "Stronger earnings reports push stocks higher"
  • 13:18 "Most active New York Stock Exchange-traded stocks"
  • 13:18 "[video] Apple's iPhone 4 Comes to Verizon [1.4 min]"
  • 13:19 "iPhone Will Bring 'Value' to Verizon Shareholders: CEO"
  • 13:22 "Apple/Verizon Pt. 2: Should I stay or should I go now?"
  • 13:23 "FACTBOX: AT&T and Verizon wage battle over iPhone"
  • 13:23 "Halftime: Verizon iPhone To Drag Down Verizon Stock 10%?"
  • 13:25 "[$$] iPhone Disappears Over the Verizon"
  • 13:28 "[audio] Time for a tech detox? [1.9 min]"
  • 13:29 "Wireless Struggles Against FCC Over Possible ""Bill Shock"" Rules"
  • 13:34 "Verizon big winner from having iPhone? Not so fast"
  • 13:38 "Verizon President Talks iPhone Strategy"
  • 13:43 "FACTBOX: AT&T and Verizon wage battle over iPhone"
  • 13:43 "US stocks up on strong earnings [at Financial times]"
  • 13:45 "Verizon Gets the iPhone"
  • 13:45 "Verizon to start selling iPhone on Feb. 10"
  • 13:49 "Apple: No LTE iPhone This Year?"
  • 13:53 "AT&T: We're ""Evaluating"" The New iPhone Mobile Hotspot Feature"
  • 13:58 "Apple: Surprise! Street Expresses Delight With VZ iPhone"
  • 14:00 "[$$] Catching the Wave: Euro Rally Due"
  • 14:02 "Did Apple disappoint with no 4G iPhone?"
  • 14:03 "Mobile Payments: What Verizon's iPhone Means for Square"
  • 14:04 "Verizon to Sell Apple IPad That Connects Directly to Its Network"
  • 14:09 "Verizon Wireless ends long wait for iPhone fans"
  • 14:10 "UPDATE 4-Verizon Wireless ends long wait for iPhone fans"
  • 14:13 "Verizon Wireless ends long wait for iPhone fans"
  • 14:25 "[audio] Before the Close from MarketWatch Radio Network [1.0 min]"
  • 14:27 "Verizon Wireless ends long wait for iPhone fans"
  • 14:27 "Verizon Wireless ends long wait for iPhone fans"
  • 14:33 "Market Snapshot: U.S. stocks rise on earnings optimism"
  • 14:33 "Verizon to start selling iPhone on Feb. 10"
  • 14:41 "Analysts Go Out on Limb, Predict Verizon iPhone Will Be Big for Apple"
  • 14:48 "Verizon Says You Can Switch If Santa Brought You a Droid"
  • 14:49 "Verizon Wireless to Start IPhone Sales Next Month, Ending AT&T Exclusivity"
  • 14:50 "Motorola: Opportunity In Lack Of LTE iPhone"
  • 14:50 "Verizon iPhone, WoW: Hot Trends"
  • 15:07 "Is Apple's iPhone a Scrooge?"
  • 15:09 "How does the Verizon iPhone affect Android and AT&T?"
  • 15:09 "More talk of smartphones diving into featurephone ground"
  • 15:09 "Verizon iPhone unlimited data won't last forever"
  • 15:09 "Why the Verizon 'dream phone' matters"
  • 15:22 "[video] digits: Verizon Unveils Its iPhone [8.7 min]"
  • 15:35 "With Verizon, Will Apple Take a Bite of More Enterprise?"
  • 15:38 "5 'Dogs of the Dow' Worth Betting On"
  • 15:38 "[video] iPhone: No wonders for Verizon stock"
  • 15:44 "Why RadioShack Is Still Relevant"
  • 15:50 "Apple: Jefferies Ups Tgt To $450; LTE iPhone In October?"
  • 15:50 "BlackBerry PlayBook vs. Android Tablets"
  • 15:51 "Happy Verizon iPhone Day!"
  • 15:57 "[$$] Overheard"
  • 15:58 "Verizon to start selling iPhone on Feb. 10"
  • 16:12 "Verizon's Daniel Mead Doesn't Expect IPhone Price War: Video"
  • 16:17 "Verizon to start selling iPhone on Feb. 10"
  • 16:18 "Android to Lose From Verizon iPhone?"
  • 16:20 "Investing for Income in 2011 with Stocks and Options Part 3: High-Yield Stocks"
  • 16:24 "Tech Stocks: Techs post modest gains, but AMD sinks"
  • 16:26 "[audio] Closing Bell from MarketWatch Radio Network [1.0 min]"
  • 16:30 "Apple: Reasons For An LTE iPhone This Year"
  • 16:30 "[video] digits: Verizon iPhone: What You Need to Know [4.1 min]"
  • 16:30 "[video] digits:What Verizon iPhone Means for Apple, Google [2.1 min]"
  • 16:31 "US STOCKS-Energy shares lift Wall St in light volume"
  • 16:32 "Don't Buy The Verizon iPhone Yet, Unless You NEED A New Phone ASAP"
  • 16:48 "[video] PM Report: China Stealth Fighter - Threat to U.S.? [10.2 min]"
  • 16:50 "Stronger earnings reports push stocks higher"
  • 17:50 "[video] Options Action"
  • 17:54 "Stronger earnings reports push stocks higher"
  • 17:55 "Factbox: AT&T and Verizon wage battle over iPhone"
  • 18:09 "All Our iPhone Trades, Right Here & Now"
  • 18:09 "Most active New York Stock Exchange-traded stocks"
  • 18:44 "Doherty Sees 'Exodus' of AT&T IPhone Users to Verizon: Video"
  • 19:00 "Lady Gaga Brags, U2 to Rival R.E.M. for 2011 Rock Crown: Preview"
  • 19:40 "'Fast Money' Recap: Commodities Getting Frothy"
  • 20:21 "MiFi Come, MiFi Go: Verizon Wireless To Sell iPads With 3G Connectivity"
  • 22:02 "Tuesday ETF Roundup: UNG Surges on Weather, IYZ Tumbles on Increased Competition"
  • 23:38 "Adding Up Parts at Goldman Sachs"

AT&T (T): Tuesday January 11th, 2011




  • 00:01 "IPhone May Cost Verizon Wireless $5 Billion in Subsidies in First Year"
  • 00:15 "ANALYSIS - AT&T faces tough year after losing iPhone exclusive"
  • 02:47 "Telecoms' Dividend Yields"
  • 03:03 "With iPhone Taunts, AT&T-Verizon Rivalry Escalates"
  • 05:00 "[video] Verizon iPhone Data Plan"
  • 05:57 "Cramer's Lightning Round - Viva Las Vegas (1/10/11)"
  • 06:00 "Nielsen: Young People Across The Globe Love Their Cell Phones (But Use Them Differently)"
  • 06:21 "[$$] RadioShack Needs Verizon Wireless"
  • 06:45 "Half of Dow Companies to Post Profit Gains"
  • 06:50 "Ahead of the Bell: Verizon iPhone"
  • 07:15 "GM returning to Super Bowl for first time since '08."
  • 07:27 "10 Things You Need To Know Before The Opening Bell"
  • 07:27 "10 Things You Need To Know Before The Opening Bell"
  • 07:32 "Lowenstein Says Verizon's Network Ready to Handle IPhone: Video"
  • 07:40 "iPhone Raises Stakes of AT&T-Verizon Rivalry"
  • 07:41 "10 Things You Need to Know Before the Opening Bell"
  • 07:45 "Verizon big winner from having iPhone? Not so fast"
  • 07:58 "AT&T and Verizon Trade Taunts Over iPhone"
  • 08:03 "[video] 3 Stocks I Saw on TV"
  • 08:05 "AT&T-Verizon rivalry kicks up a notch"
  • 08:09 "10 Unusual Stocks Attracting Huge Interest This Morning"
  • 08:22 "Will Verizon Demolish AT&T? It Did So Long Ago"
  • 08:24 "The Big Questions About Verizon's IPhone"
  • 08:24 "Verizon big winner from having iPhone? Not so fast"
  • 08:25 "McCourt Says Verizon's Network Can Handle Apple's IPhone: Video"
  • 08:36 "How Important Is Offering the iPhone on Verizon to Apple?"
  • 08:45 "[$$] ETF Play of the Day: XLK"
  • 09:02 "[video] AM Report: Chinese Stealth Jet Takes Flight [8.0 min]"
  • 09:06 "Three Things to Watch For at Verizon iPhoneapalooza"
  • 09:29 "Verizon iPhone Faces Even Bigger Foe"
  • 09:33 "Trujillo Says 'Many Questions' Remain For Verizon IPhone: Video"
  • 09:45 "Verizon IPhone Event Live Blog"
  • 09:45 "[video] News Hub: Verizon iPhone: How will AT&T Respond? [2.7 min]"
  • 09:52 "[video] Verizon's iPhone Buzz"
  • 09:54 "Mobile Broadband Subs Seen Hitting 1 Billion In 2011"
  • 09:58 "[audio] Opening Bell from MarketWatch Radio Network [1.0 min]"
  • 10:03 "Video: Is the Verizon iPhone a Threat to Android?"
  • 10:05 "Verizon iPhone expected to have unlimited data plan"
  • 10:14 "[video] iPhone or Not, Verizon Is A Winner"
  • 10:19 "Verizon iPhone: Live Blog"
  • 10:37 "Verizon: Stay Tuned"
  • 10:43 "Mobile Broadband Subscriptions to Surpass 1 Billion in 2011"
  • 10:47 "LIVE: The Verizon iPhone Event"
  • 10:54 "LIVE FROM NEW YORK: Verizon Gets the iPhone"
  • 10:54 "Verizon iPhone: Will It Fix Verizon's $100 Billion Conundrum?"
  • 11:10 "Verizon to Partner With Apple, Start Selling IPhone Next Month"
  • 11:14 "Verizon and Apple Make It Official"
  • 11:15 "Verizon Wireless to Start IPhone Sales Next Month, Ending AT&T Exclusivity"
  • 11:15 "iPhone Breaks AT&T Marriage Today for Verizon"
  • 11:18 "Verizon to launch iPhone 4 in February"
  • 11:20 "Verizon iPhone: The basics"
  • 11:24 "The Biggest Surprise About the Verizon iPhone: It's a Mobile Hotspot"
  • 11:24 "Verizon to Carry Apple iPhone, Ending Months of Anticipation"
  • 11:30 "Verizon Will Be Selling The iPhone Starting February 10th"
  • 11:38 "UPDATE 2-Verizon Wireless to sell iPhone in February"
  • 11:39 "PHOTOS: Verizon iPhone Has Different (Better?) Antenna Design Than AT&T iPhone"
  • 11:39 "Verizon, AT&T, And Apple: Guess Which One's Stock Isn't Tanking Today"
  • 11:43 "Verizon Wireless to Offer iPhone 4 in February"
  • 11:45 "Verizon iPhone: 'It Begins'"
  • 11:50 "Verizon to begin selling iPhone 4 in February"
  • 11:51 "Stocks Led by Energy, Conglomerates"
  • 11:51 "Verizon to sell Apple iPhone"
  • 11:51 "Verizon: Began Discussions With Apple In 2008; Tim Cook Talks"
  • 11:54 "Verizon Wireless to sell iPhone in February"
  • 12:08 "Verizon iPhone Will Not Work Overseas"
  • 12:13 "UPDATE 3-Verizon Wireless to sell iPhone in February"
  • 12:16 "FACTBOX - AT&T and Verizon wage battle over iPhone"
  • 12:17 "AT&T Preps for Verizon iPhone With New Ads, Price Cuts"
  • 12:19 "Apple's Phil Schiller on Building the Verizon iPhone"
  • 12:20 "AT&T Shrugs Off Verizon iPhone"
  • 12:20 "COMPARISON: Verizon Vs. AT&T iPhone"
  • 12:26 "FACTBOX - AT&T and Verizon wage battle over iPhone"
  • 12:28 "Verizon iPhone: Yep, The Real Target is Google."
  • 12:30 "AT&T: Five Reasons the Sky Won't Fall When iPhone Goes to Verizon"
  • 12:35 "[audio] Midday Update from MarketWatch Radio Network [1.0 min]"
  • 12:37 "FACTBOX - AT&T and Verizon wage battle over iPhone"
  • 12:37 "Verizon Wireless to sell iPhone in February"
  • 12:43 "Verizon to start selling iPhone on Feb. 10"
  • 12:48 "Corrected: Factbox: AT&T and Verizon wage battle over iPhone"
  • 12:59 "Verizon Wireless to sell iPhone in February"
  • 13:05 "Verizon iPhone set for Feb. 10 release"
  • 13:05 "Verizon to start selling iPhone Feb. 3"
  • 13:07 "Moore Says 3 Million AT&T IPhone Users May Go to Verizon: Video"
  • 13:11 "Cook Says Apple-Verizon Cooperation 'Just the Beginning': Video"
  • 13:12 "COMPARISON: Verizon Vs. AT&T iPhone"
  • 13:18 "Most active New York Stock Exchange-traded stocks"
  • 13:18 "Summary Box: Verizon to start selling iPhone"
  • 13:18 "[video] Apple's iPhone 4 Comes to Verizon [1.4 min]"
  • 13:22 "Apple/Verizon Pt. 2: Should I stay or should I go now?"
  • 13:23 "FACTBOX: AT&T and Verizon wage battle over iPhone"
  • 13:23 "Halftime: Verizon iPhone To Drag Down Verizon Stock 10%?"
  • 13:29 "Wireless Struggles Against FCC Over Possible ""Bill Shock"" Rules"
  • 13:34 "Verizon big winner from having iPhone? Not so fast"
  • 13:43 "FACTBOX: AT&T and Verizon wage battle over iPhone"
  • 13:43 "US stocks up on strong earnings [at Financial times]"
  • 13:45 "Verizon to start selling iPhone on Feb. 10"
  • 13:49 "Apple: No LTE iPhone This Year?"
  • 13:53 "AT&T: We're ""Evaluating"" The New iPhone Mobile Hotspot Feature"
  • 13:58 "Apple: Surprise! Street Expresses Delight With VZ iPhone"
  • 14:02 "Did Apple disappoint with no 4G iPhone?"
  • 14:04 "Verizon to Sell Apple IPad That Connects Directly to Its Network"
  • 14:05 "Verizon begins selling iPhone on Feb. 3"
  • 14:05 "Verizon iPhone sales begin Feb. 3"
  • 14:09 "Verizon Wireless ends long wait for iPhone fans"
  • 14:10 "UPDATE 4-Verizon Wireless ends long wait for iPhone fans"
  • 14:13 "Verizon Wireless ends long wait for iPhone fans"
  • 14:25 "[audio] Before the Close from MarketWatch Radio Network [1.0 min]"
  • 14:27 "Verizon Wireless ends long wait for iPhone fans"
  • 14:27 "Verizon Wireless ends long wait for iPhone fans"
  • 14:33 "Market Snapshot: U.S. stocks rise on earnings optimism"
  • 14:33 "Verizon to start selling iPhone on Feb. 10"
  • 14:41 "Analysts Go Out on Limb, Predict Verizon iPhone Will Be Big for Apple"
  • 14:50 "Motorola: Opportunity In Lack Of LTE iPhone"
  • 14:57 "An iPhone For Valentine's Day and iPad 2 Update"
  • 14:58 Verizon
  • 15:05 "Verizon iPhone sales begin Feb. 3"
  • 15:05 "Verizon iPhone set for Feb. 10 release"
  • 15:09 "How does the Verizon iPhone affect Android and AT&T?"
  • 15:09 "More talk of smartphones diving into featurephone ground"
  • 15:09 "Verizon iPhone unlimited data won't last forever"
  • 15:09 "Why the Verizon 'dream phone' matters"
  • 15:38 "5 'Dogs of the Dow' Worth Betting On"
  • 15:38 "[video] iPhone: No wonders for Verizon stock"
  • 15:50 "Apple: Jefferies Ups Tgt To $450; LTE iPhone In October?"
  • 15:51 "Happy Verizon iPhone Day!"
  • 15:58 "Verizon to start selling iPhone on Feb. 10"
  • 16:06 "Verizon iPhone Is Not Mobile Messiah: Analyst"
  • 16:10 "Stocks March Higher As Earnings Season Begins"
  • 16:12 "Verizon's Daniel Mead Doesn't Expect IPhone Price War: Video"
  • 16:17 "Verizon to start selling iPhone on Feb. 10"
  • 16:18 "Android to Lose From Verizon iPhone?"
  • 16:20 "Investing for Income in 2011 with Stocks and Options Part 3: High-Yield Stocks"
  • 16:28 "Daley Has $7.7 Million of JPMorgan Stock to Divest on Way to White House"
  • 16:30 "Apple: Reasons For An LTE iPhone This Year"
  • 16:32 "Don't Buy The Verizon iPhone Yet, Unless You NEED A New Phone ASAP"
  • 16:50 "Stronger earnings reports push stocks higher"
  • 17:04 "Verizon Wireless ends long wait for iPhone fans"
  • 17:08 "Verizon Wireless ends long wait for iPhone fans"
  • 17:22 "Verizon Wireless ends long wait for iPhone fans"
  • 17:22 "Verizon Wireless ends long wait for iPhone fans"
  • 17:41 "California Reclaims 48,000 State-Owned Mobile Phones"
  • 17:43 "[video] News Hub: Verizon iPhone - What's The Actual Cost? [3.0 min]"
  • 17:54 "Stronger earnings reports push stocks higher"
  • 17:55 "Factbox: AT&T and Verizon wage battle over iPhone"
  • 18:09 "All Our iPhone Trades, Right Here & Now"
  • 18:09 "Most active New York Stock Exchange-traded stocks"
  • 18:44 "Doherty Sees 'Exodus' of AT&T IPhone Users to Verizon: Video"
  • 20:21 "MiFi Come, MiFi Go: Verizon Wireless To Sell iPads With 3G Connectivity"
  • 22:02 "Tuesday ETF Roundup: UNG Surges on Weather, IYZ Tumbles on Increased Competition"
  • 23:38 "Adding Up Parts at Goldman Sachs"

Merck (MRK): Thursday January 13th, 2011




  • 08:58 "JP Morgan Healthcare: Sanofi-Aventis, UCSF in Research Pact"
  • 09:20 "Merck Statement on Changes to Clinical Studies of Vorapaxar"
  • 09:41 "U.S. stocks open lower as joblessness rises"
  • 09:41 "UPDATE 1-Merck stops giving clot drug in study, shares drop"
  • 09:47 "Merck Drags on Stocks"
  • 09:49 "Merck tumbles on drug study woes"
  • 09:55 "Market Snapshot: U.S. stocks open lower as joblessness rises"
  • 09:58 "Merck Blood-Thinner Study Ends in Stroke Patients, Limiting Possible Sales"
  • 09:58 "Stocks Fall Slightly After Jobless Claims, PPI"
  • 10:56 "Movers & Shakers: Thursday?s biggest gaining and declining stocks"
  • 11:06 "Idaho in Drug Settlement With Warrick, Schering-Plough"
  • 11:10 "Stocks Weighed by Healthcare Sector"
  • 11:19 "[video] Markets Hub: US Stocks Fall As Merck Leads Decline [2.9 min]"
  • 11:28 "FDA seeks less acetaminophen in prescription drugs"
  • 11:34 "Commodities Look 'Very Attractive' Now: Kass"
  • 11:41 "The Cheaper Way to Build the Best Portfolio"
  • 11:43 "Biotech Stocks: Merck leads drug stocks lower"
  • 11:43 "UPDATE 3-Merck clot drug seen unfit for stroke, shares fall"
  • 11:47 "Merck Pipeline Setback: Big Pharma Losers"
  • 11:49 "Merck clot drug seen unfit for stroke, shares fall"
  • 11:53 "US STOCKS-Market flat, pares losses from jobless claims"
  • 11:54 "Markets Going Nowhere After Weak US Data: Here Are The 10 Trades To Watch"
  • 11:56 "Merck Learns There Is No Magic Pill"
  • 11:56 "U.S. stocks bounce off lows; oil turns up"
  • 12:16 "Bond Report: Treasurys rise after Fed purchases"
  • 12:27 "Merck Shares Drop After Anti-Clotting Drug Trials Curtailed"
  • 12:39 "Market Snapshot: U.S. stocks mixed as joblessness rises"
  • 12:45 "Market flat, pares losses from jobless claims"
  • 12:47 "A Painful Day for Merck"
  • 13:05 "Merck tumbles on drug study update"
  • 13:10 "US STOCKS-Market flat on weak jobless claims, Marathon's rise"
  • 13:12 "Market flat, pares losses from jobless claims"
  • 13:20 "Jobless claims weigh on US equities"
  • 13:24 "Market flat on weak jobless claims, Marathon's rise"
  • 13:29 "Dealpolitik: The Useful Corruption of Shareholder Lawsuits"
  • 13:44 "Does Drug Setback Call Merck's Schering-Plough Purchase Into Question?"
  • 13:47 "UPDATE 4-Merck clot drug seen unfit for stroke, shares fall"
  • 13:48 "Market flat on weak jobless claims, Marathon's rise"
  • 14:27 "Market Snapshot: Merck leads stocks lower"
  • 14:35 "Merck Hurts, Stocks Stagger After Jobless Claims"
  • 14:45 "Drug Study Torpedos Merck Stock"
  • 14:52 "Bond Report: Treasurys lifted by Fed buys; 30-year sale in line"
  • 14:55 "Jan. 13: Unusual Volume Leaders"
  • 15:00 "Credit Suisse: All Isn't Lost for Merck"
  • 15:12 "Merck weighs on Dow, market eyes earnings"
  • 15:23 "This Trendy Pharma Is Making a Stylish Move"
  • 15:36 "The Three Most Profitable Healthcare Trends of 2011"
  • 15:47 "Market Snapshot: Stocks slide into close"
  • 15:55 "Copying biotech medicine attracts more drugmakers"
  • 16:00 "Stocks Slip Up On Awful US Data: Here's What You Need To Know"
  • 16:08 "US STOCKS SNAPSHOT-Wall St dips on Merck, commodities"
  • 16:09 "The Big Culprit In Today's DOW Drop"
  • 16:09 "UPDATE 1-FDA seeks less acetaminophen in prescription drugs"
  • 16:10 "U.S. stocks end lower as joblessness rises"
  • 16:27 "US STOCKS-Merck, materials companies drag Wall St lower"
  • 16:27 "[audio] Closing Bell from MarketWatch Radio Network [1.0 min]"
  • 16:55 "Bond Report: Treasurys rise with jobless claims, auctions? end"
  • 16:56 "[video] PM Report: Economists Turn Upbeat on Recovery [10.6 min]"
  • 16:59 "[$$] Stocks in the Spotlight Thursday"
  • 17:06 "US STOCKS-Merck, materials drag Wall St lower, Intel up late"
  • 17:09 "[video] News Hub: Dow Dragged Down by Merck [1.3 min]"
  • 17:11 "Market Snapshot: Stocks end lower on weak materials, drug shares"
  • 18:29 "The Fed Takes Credit: Dave's Daily"
  • 18:34 "[audio] After the Bell from MarketWatch Radio Network [1.0 min]"
  • 18:39 "Trouble With Thrombin Inhibitor Takes a Toll on Merck Shares"
  • 18:59 "Thursday ETF Roundup: UNG Sinks on Natural Gas Data, BLV Rises on Bond Boost"
  • 20:06 "[$$] Options Traders Target Merck After Drug Study Halted"
  • 20:26 "HK stocks seen lower on weak materials sector"

Bank of America (BAC): Friday January 14th, 2011




  • 00:01 "Google, Renault, RBS, Stanford, Kissel, Madoff in Court News"
  • 00:01 "Lehman, Madoff, FGIC, Chemtura, FairPoint, Quigley: Bankruptcy"
  • 00:02 "Geithner starts talks on tax overhaul"
  • 01:07 "Morgan Stanley's Gorman shakes up management"
  • 01:25 "Morgan Stanley's Gorman shakes up management"
  • 02:06 "Banks Are Poised to Pay Dividends After 3-Year Gap"
  • 03:12 "UPDATE 1-India govt to decide on IOC share sale in 3-4 mths"
  • 04:01 "What's Driving Earnings Higher?"
  • 06:00 "5 Bank Stocks Under $5"
  • 06:00 "5 Land Mines in Fourth Quarter Bank Earnings"
  • 06:00 "[video] Hold, Don't Buy Bank Stocks: Fund Manager"
  • 06:59 "Kissel Was Argumentative, Easily Upset, Sister-In-Law Testifies"
  • 07:00 "Filling In FINRA's Gaps"
  • 07:00 "General Electric Earnings: What to Expect"
  • 07:00 "Worst-Performing Financial CEO of 2010"
  • 07:16 "[$$] Earnings Scorecard: Commercial and Investment Banks"
  • 07:18 "JPMorgan profit surges despite mortgage hit"
  • 07:36 "JPMorgan's Fourth Quarter Profit Rises 47% to $4.8 Billion"
  • 07:48 "RPT-UPDATE 4-Morgan Stanley's Gorman shakes up management"
  • 07:59 "J.P. Morgan's Fourth-Quarter Profit Jumps 47%"
  • 08:04 "Floods take major toll on Australian farms, mines"
  • 08:08 "A Stock-Bond Hybrid That Flopped"
  • 08:08 "Big Banks with Big Legal Bills"
  • 08:08 "Home Depot's Fix-It Lady"
  • 08:08 "Why the Private Sector Still Isn't Hiring"
  • 08:12 "Citigroup, Bank of America Active Premarket After JPM Report"
  • 08:19 "What's On: JPMorgan, Intel and Corporate Taxes"
  • 08:24 "UPDATE 4-JPMorgan profit beats, helped by reserve release"
  • 08:26 "Hybrid Debt, Materials Curbs, Tax Cheats: Compliance"
  • 08:26 "JPMorgan profit beats, helped by reserve release"
  • 08:37 "Deals of the Day: Groupon Talks IPO"
  • 08:53 "GLOBAL MARKETS WEEKAHEAD-Reality checks ahead for investors"
  • 08:54 "J.P. Morgan Earnings: Were They As Good as They Looked?"
  • 08:55 "J.P. Morgan Earnings: Still Building Litigation Warchest"
  • 09:01 "[$$] ETF Play of the Day: KBE"
  • 09:10 "Foreclosure Wave Cresting, May Never Break"
  • 09:40 "Earnings Jump At JPMorgan, But Street Stifled By China"
  • 09:42 "U.S. Probes Banks' Mortgage Practices"
  • 09:46 "JPMorgan profit rises 47 percent"
  • 09:49 "J.P. Morgan: Mortgage Fights a 'Long, Ugly Mess'"
  • 09:52 "ManTech International - Upgrades & Downgrades"
  • 09:56 "Lbma Says Merrill Lynch Reclassified as Options Market Maker"
  • 09:57 "UBS Upgrades Financials"
  • 10:04 "American Capital prices share offer at $28 each"
  • 10:09 "Schwab Takes High-Profile Stand Opposing Self-Regulatory Organization"
  • 10:12 "BofA Suffers Online Glitches"
  • 10:16 "JPMorgan: Strong Earnings, Muted Response"
  • 10:23 "Stocks edge up after tepid inflation report"
  • 10:33 "JPM Dividend: Jamie Dimon Balks"
  • 10:34 "Your Index Fund Is Making a Bad Investment"
  • 10:43 "Apple's Magic Share Price: $422"
  • 10:45 "JPMorgan Chase Tops 4Q Estimates. Citigroup Is Up Next."
  • 10:58 "Citigroup: Uncle Sam to Get Out, Completely"
  • 11:01 "[$$] JPMorgan Chase Delivers Insight"
  • 11:05 "Affiliated Managers gets $750M credit line"
  • 11:08 "A Wave of Mergers And Acquisitions for Northeast And Mid-Atlantic Banks: An Exclusive Interview With Stephen M. Moss Of Janney Montgomery Scott LLC"
  • 11:11 "UPDATE 6-JPMorgan profit rises 47 pct, beating estimates"
  • 11:11 "[$$] Big Banks May Boost Dividends in 2011"
  • 11:13 "New Zealand bourse winds up AXE trading venue"
  • 11:20 "Greenspan, Fed Saw Threat of Stagflation After Katrina Devastation in 2005"
  • 11:25 "A Wall Street Mystery: Where Was Goldman's CEO?"
  • 11:29 "Goldman Lost an Extra $5B in Prop Trading: Report"
  • 11:29 "JPMorgan profit rises 47 percent"
  • 11:49 "[video] How JPMorgan's Quarter Affects Bank Stocks"
  • 11:53 "Banks lead stocks higher, led by JPMorgan Chase"
  • 12:03 "JPMorgan Earnings Lift Bank Stocks"
  • 12:03 "John Paulson's Top Picks"
  • 12:04 "CPI Shows Input-Cost Inflation Tempered By Overcapacity"
  • 12:05 "Bank of America website having problems"
  • 12:05 "JPMorgan Chase profit up 47%"
  • 12:08 "Earnings schedule for week of 1/17/2011"
  • 12:10 "CNNMoney stock market report -- Jan. 14, 2011"
  • 12:26 "Banks lead stocks higher, led by JPMorgan Chase"
  • 12:29 "J.P. Morgan?s profit jumps 47%"
  • 12:36 "[$$] ETFs for the Dividend-Minded Investor"
  • 13:44 "UPDATE 7-JPMorgan beats, sets bullish tone for bank earnings"
  • 13:48 "AIG recap deal closes, focus moves to share sale"
  • 13:48 "JPMorgan sets bullish tone for bank earnings"
  • 13:50 "[video] J.P. Morgan Earnings Rise 47%"
  • 13:52 "New Movie Revisits the Last 24 Hours of Lehman Brothers, or a Very Similar Firm"
  • 13:52 "[$$] J.P. Morgan Gives Dow Modest Boost"
  • 13:54 "Fed?s Tarullo Tells CNBC No Reason to Adjust Asset Purchases"
  • 13:55 "Should You Buy 2010's Best Investments?"
  • 14:00 "Banking On A Better 2011"
  • 14:02 "[video] Rush Card"
  • 14:05 "JPMorgan Credit Swaps Climb as Bank Results Rest on Reserves"
  • 14:06 "How Celebrities Buy And Sell Homes"
  • 14:07 "A female quota at Davos? Really?"
  • 14:26 "JPMorgan Rises On Double Beat"
  • 14:40 "Bank of America, Wells Fargo May Lose Under Plan to Simplify Mortgages"
  • 14:43 "PNC, Capital One Advance After JPMorgan Posts Record Profit"
  • 14:45 "Bank of America online banking down for some users"
  • 14:45 "Banks take stock indexes higher"
  • 14:56 "Financial Stocks: Financial shares higher after J.P. Morgan results"
  • 15:01 "Halftime: Trading Financials Ahead of Earnings Next Week"
  • 15:05 "Bank of America website having problems"
  • 15:10 "Bank of America website suffers outage"
  • 15:16 "AIG recap deal closes, focus moves to share sale"
  • 15:21 "JPMorgan beats, sets bullish tone for bank earnings"
  • 15:27 "PREVIEW-UPDATE 1-Volcker rule tests new US systemic risk council"
  • 15:29 "Bank of America online banking down for some users"
  • 15:37 "Bank of America Downplays Web Problems"
  • 15:55 "Volcker rule tests new US systemic risk council"
  • 15:57 "AIG recap deal closes, focus moves to share sale"
  • 15:57 "Bank of America Website is Down For Some"
  • 15:59 "[$$] Treasurys Fall, Giving Up Earlier Rally; Little Change for Week"
  • 16:10 "Assured Guaranty was only muni bond insurer in 2010"
  • 16:17 "U.S. stocks post seventh week of gains"
  • 16:18 "Great Depression Part Deux Averted But Bubble Machine Still Blows"
  • 16:18 "Volcker rule tests new US systemic risk council"
  • 16:23 "Tax talks get good start, companies say"
  • 16:29 "Banks take stock indexes higher, led by JPMorgan"
  • 16:31 "Dow, S&P 500 Extend Seven-Week Winning Streak"
  • 16:31 "[$$] Interesting Rotation in the Big Banks"
  • 16:36 "Banks lead S&P 500 to seventh week of gains"
  • 16:52 "Stocks Reach New Records"
  • 16:54 "Market Snapshot: U.S. stocks rise to 30-month highs"
  • 16:55 "Trading Radar: Key Earnings, China Headline the Week"
  • 17:41 "JPMorgan beats, sets bullish tone for bank earnings"
  • 18:15 "AIG recapitalization deal closes, share sale looms"
  • 18:32 "Wall St Week Ahead: Investors crave more strong bank results"
  • 18:46 "GLOBAL MARKETS WEEKAHEAD - Reality checks ahead for investors"
  • 18:46 "US STOCKS - Banks lead S&P 500 to seventh week of gains"
  • 18:46 "Volcker rule tests new US systemic risk council"
  • 20:55 "AIG recapitalization deal closes, share sale looms"
  • 20:55 "JPMorgan beats, sets bullish tone for bank earnings"

JP Morgan (JPM): Friday January 14th, 2011




  • 07:29 "JPMorgan Profit Beats on Narrowing Loan Losses"
  • 07:29 "JPMorgan reports jump in quarterly profit"
  • 07:33 "US STOCKS-Futures fall, JPMorgan profit jumps"
  • 07:34 "JPMorgan Net Rises 47% on Lower Credit Costs, Tops Estimates"
  • 07:35 "Futures Lower Despite Earnings Beats"
  • 07:35 "[audio] Before the bell from MarketWatch Radio Network [1.0 min]"
  • 07:36 "JPMorgan's Fourth Quarter Profit Rises 47% to $4.8 Billion"
  • 07:37 "J.P. Morgan posts quarterly profit of $4.8 billion"
  • 07:39 "UPDATE 3-JPMorgan profit beats, helped by reserve release"
  • 07:40 "The Good Leads"
  • 07:41 "JPMorgan Chase's profit jumps 47 percent in 4Q"
  • 07:41 "JPMorgan quarterly profits surge 47%"
  • 07:42 "JPMorgan profit beats expectations"
  • 07:42 "UPDATE 1-TABLE-JPMorgan fourth-quarter results"
  • 07:45 "CNNMoney premarket report -- Jan. 14, 2011"
  • 07:48 "RPT-UPDATE 4-Morgan Stanley's Gorman shakes up management"
  • 07:56 "[$$] J.P. Morgan Profit Jumps 47%"
  • 07:57 "Indications: U.S. stock futures point to soft open"
  • 07:57 "Stock futures off, Dow, S&P seek 7th week of gains"
  • 07:59 "J.P. Morgan's Fourth-Quarter Profit Jumps 47%"
  • 08:26 "JPMorgan profit beats, helped by reserve release"
  • 08:28 "JPMorgan Beats Street, Net Rises 47%"
  • 08:28 "Morning Take-Out"
  • 08:30 "Minyanville's T3 Morning Call: JPM, INTC Earnings Beats Can't Lift Futures"
  • 08:30 "[$$] The Day Ahead: Follow the Leaders"
  • 08:31 "JP Morgan results ahead of forecasts"
  • 08:36 "[$$] It's All Baked In"
  • 08:41 "Deals wrap: JPMorgan surprises"
  • 08:41 "[$$] Futures Stay Weak After U.S. Data"
  • 08:43 "M&T Beats Estimates"
  • 08:44 "US STOCKS-Futures briefly tick lower after CPI, retail sales"
  • 08:45 "Futures Hold Losses After CPI, Retail Sales"
  • 08:46 "[$$] Will Intel Be the Downside Catalyst?"
  • 08:52 "Live coverage of JPMorgan?s earnings call"
  • 08:54 "J.P. Morgan Earnings: Were They As Good as They Looked?"
  • 08:55 "J.P. Morgan Earnings: Still Building Litigation Warchest"
  • 08:56 "JPMorgan Chase's profit jumps 47 percent in 4Q"
  • 08:57 "JPMorgan reports jump in quarterly profit"
  • 09:38 "CNNMoney stock market report -- Jan. 14, 2011"
  • 09:38 "JPMorgan's Biggest Cost? Pay, Not Mortgages"
  • 09:38 "UPDATE 5-JPMorgan profit rises 47 pct, beating estimates"
  • 09:40 "Earnings Jump At JPMorgan, But Street Stifled By China"
  • 09:41 "Financials open higher after J.P. Morgan earnings"
  • 09:41 "Stocks Slip at Open After Mixed Economic News"
  • 09:42 "U.S. Probes Banks' Mortgage Practices"
  • 09:45 "Unique Convert Offering From Dendreon via JPMorgan"
  • 09:46 "JPMorgan profit rises 47 percent"
  • 09:47 "Friday Look Ahead: Intel, JPMorgan Earnings and Consumer Mood"
  • 09:48 "J.P. Morgan?s profit jumps 47%"
  • 09:49 "J.P. Morgan: Mortgage Fights a 'Long, Ugly Mess'"
  • 09:50 "Stock Market Story: Jan. 14"
  • 09:57 "JPMorgan Reports Q4 Results"
  • 09:57 "Markets dip after JPMorgan earns, retail sales"
  • 09:57 "UBS Upgrades Financials"
  • 10:16 "JPMorgan: Strong Earnings, Muted Response"
  • 10:23 "Stocks edge up after tepid inflation report"
  • 10:24 "[$$] JPMorgan Worries Down the Drain"
  • 10:25 "[$$] Mixed Start"
  • 10:28 "US open: Dow trades flat"
  • 10:30 "[$$] A Short-Term Retail Play"
  • 10:31 "China's inflation move weighs on Wall St"
  • 10:33 "JPM Dividend: Jamie Dimon Balks"
  • 10:45 "[$$] Dip-Buyers' Delight"
  • 10:47 "UPDATE 1-JPMorgan Q4 commods risk steady after market rally"
  • 10:54 "Friday's ETF to Watch: Merrill Lynch Regional Bank HOLDR"
  • 10:55 "J.P. Morgan banker pay slips -- to $369,651"
  • 10:57 "Markets flat as JPMorgan results offset Intel"
  • 10:58 "Citigroup: Uncle Sam to Get Out, Completely"
  • 10:58 "Financial Stocks: Financial shares higher after J.P. Morgan results"
  • 11:08 "A Wave of Mergers And Acquisitions for Northeast And Mid-Atlantic Banks: An Exclusive Interview With Stephen M. Moss Of Janney Montgomery Scott LLC"
  • 11:11 "[$$] Big Banks May Boost Dividends in 2011"
  • 11:16 "[$$] J.P. Morgan Bankers Earn Less"
  • 11:20 "Greenspan, Fed Saw Threat of Stagflation After Katrina Devastation in 2005"
  • 11:20 "JPMorgan Paces Bank Gains After Earnings"
  • 11:25 "A Wall Street Mystery: Where Was Goldman's CEO?"
  • 11:26 "Debit fee caps may hurt poorest customers: Dimon"
  • 11:28 "Market Snapshot: Stocks edge up as J.P. Morgan lifts banks"
  • 11:29 "Goldman Lost an Extra $5B in Prop Trading: Report"
  • 11:29 "JPMorgan profit rises 47 percent"
  • 11:29 "News Corp. in Talks to Buy Shine"
  • 11:33 "JPM Earnings"
  • 11:41 "Complacency, Fleeing Insiders Point to Earnings Season Drop"
  • 11:42 "Gold Prices Tank on Moves to Curb Inflation"
  • 11:42 "JPMorgan: Bonus Numbers Look Good But Bankers Are Wary"
  • 11:46 "UPDATE 2-TABLE-JPMorgan fourth-quarter results"
  • 11:49 "[video] How JPMorgan's Quarter Affects Bank Stocks"
  • 11:53 "Banks lead stocks higher, led by JPMorgan Chase"
  • 12:03 "JPMorgan Earnings Lift Bank Stocks"
  • 12:05 "Bank of America website having problems"
  • 12:05 "JPMorgan Chase profit soars 47%"
  • 12:05 "JPMorgan Chase profit up 47%"
  • 12:09 "A Buying Opportunity Before Stress-Test Round 2?"
  • 12:10 "S&P 500 Is Poised to Drop; RBC, JPMorgan Differ on the Timing"
  • 12:11 "[$$] Comeback After Dazzling Comeback"
  • 12:12 "US STOCKS-Market rises as JPMorgan profit outweighs data"
  • 12:26 "Banks lead stocks higher, led by JPMorgan Chase"
  • 12:32 "[audio] Midday Update from MarketWatch Radio Network [1.0 min]"
  • 12:39 "Hey, Jamie Dimon, You Sure About that Acronym?"
  • 12:55 "Stocks hurt by global inflation concerns"
  • 12:56 "China, U.S. Weigh on Europe's Markets"
  • 13:10 "Market Snapshot: Stocks find footing J.P. Morgan lifts banks"
  • 13:11 "US STOCKS-Wall St rises as JPMorgan earnings spur optimism"
  • 13:14 "Spain, Portugal And A Virtuous Circle Of Bailouts"
  • 13:20 "Most active New York Stock Exchange-traded stocks"
  • 13:34 "4 Top Financials for 1Q from Bernstein Research"
  • 13:36 "Bank Of America Website Down, 6 Hours And Counting"
  • 13:43 "UPDATE 3-AIG recap deal closes, focus moves to share sale"
  • 13:44 "JPMorgan Chase's income jumps 47 percent"
  • 13:48 "AIG recap deal closes, focus moves to share sale"
  • 13:48 "JPMorgan sets bullish tone for bank earnings"
  • 13:50 "[video] J.P. Morgan Earnings Rise 47%"
  • 13:52 "New Movie Revisits the Last 24 Hours of Lehman Brothers, or a Very Similar Firm"
  • 13:53 "JPMorgan: JV Approval in China Positions Stock for Upside"
  • 13:54 "Fed?s Tarullo Tells CNBC No Reason to Adjust Asset Purchases"
  • 13:59 "Elisabeth Murdoch's Shine hires bank for review"
  • 14:00 "Banking On A Better 2011"
  • 14:03 "J P MORGAN CHASE & CO Files SEC form 8-K, Regulation FD Disclosure"
  • 14:05 "JPMorgan Credit Swaps Climb as Bank Results Rest on Reserves"
  • 14:06 "How Celebrities Buy And Sell Homes"
  • 14:07 "A female quota at Davos? Really?"
  • 14:10 "M&T Bank Tops Zacks Estimate"
  • 14:17 "Summary Box: JPMorgan Chase's profit jumps in 4Q"
  • 14:17 "What's Behind JP Morgan's $1.12 Shares"
  • 14:20 "Hedge funds appeal ruling on WaMu trust securities"
  • 14:26 "JPMorgan Rises On Double Beat"
  • 14:31 "UK unmatched for bank bonus-bashing"
  • 14:34 "VIX Falls to Three-Week Low After JPMorgan Posts Record Profit"
  • 14:35 "US STOCKS-JPMorgan lifts Wall St, but banks due for pause"
  • 14:40 "Bank of America, Wells Fargo May Lose Under Plan to Simplify Mortgages"
  • 14:43 "PNC, Capital One Advance After JPMorgan Posts Record Profit"
  • 14:45 "Banks take stock indexes higher"
  • 14:50 "Explaining Confirmation"
  • 14:58 "JPMorgan Chase Plans $3.25 Billion Debt Offering"
  • 15:01 "Gold Prices Sink on Rising Inflation Concerns"
  • 15:05 "Bank of America website having problems"
  • 15:16 "AIG recap deal closes, focus moves to share sale"
  • 15:17 "Bond Report: Treasurys fall as relief rally dissipates"
  • 15:21 "JPMorgan beats, sets bullish tone for bank earnings"
  • 15:22 "Market Snapshot: U.S. stocks rise as J.P. Morgan lifts banks"
  • 15:27 "PREVIEW-UPDATE 1-Volcker rule tests new US systemic risk council"
  • 15:39 "[$$] Crude Settles Above $91"
  • 15:40 "Why Citi Won't Repeat JPMorgan's Success"
  • 15:43 "What to Do With JP Morgan Now?"
  • 15:50 "JPMorgan Chase Declares Preferred Stock Dividend"
  • 16:15 "PNC, Capital One: Winners & Losers"
  • 16:17 "U.S. stocks post seventh week of gains"
  • 16:18 "Great Depression Part Deux Averted But Bubble Machine Still Blows"
  • 16:18 "Volcker rule tests new US systemic risk council"
  • 16:25 "[audio] Closing Bell from MarketWatch Radio Network [1.0 min]"
  • 16:29 "Banks take stock indexes higher, led by JPMorgan"
  • 16:30 "MarketWatch?s top 10 stories: Jan. 10-14"
  • 16:31 "HCP, Kimco: REIT Broker Action"
  • 16:31 "New Issue-JP Morgan sells $3.25 bln in 2 parts"
  • 16:31 "US STOCKS-Banks lead S&P 500 to seventh week of gains"
  • 16:31 "[$$] Interesting Rotation in the Big Banks"
  • 16:32 "Coinstar, JPMorgan, Borders are big market movers"
  • 16:48 "Stocks Buck Mixed Data to Head Higher"
  • 16:50 "Buzz on the Street: Tech Stocks Continue to Lead the Way"
  • 16:52 "Stocks Reach New Records"
  • 16:54 "Market Snapshot: U.S. stocks rise to 30-month highs"
  • 16:55 "[video] News Hub: Dow Ends at 2-1/2 Year High [1.5 min]"

No comments:

Post a Comment