Skip to content
Prev 14250 / 15274 Next

Trying to Extract Option Quotes with R

I executed the following commands in R:

     library(quantmod)
     optData = getOptionChain( "XOM", Exp=NULL )
     nrow(optData)

The last command returned NULL. What am I doing wrong?

Bob