search for: nyse

Displaying 20 results from an estimated 21 matches for "nyse".

Did you mean: nose
2011 Apr 13
1
Assign with Paste Problem
...omplete copy of the old object when I use paste in both sides of the assign? Your help would be most appreciated. --John Sparks > #Careful! Removes everything in working directory! > rm(list = ls()) > > ticker<-"F" > > require(quantmod) > > getFin(paste("NYSE:",ticker,sep="")) [1] "NYSE.F.f" > NYSE.F.f Financial Statement for NYSE:F Retrieved from google at 2011-04-12 20:03:20 Use "viewFinancials" or "viewFin" to view > > F.f<-NYSE.F.f > F.f Financial Statement for NYSE:F Retrieved from google...
2008 Sep 23
4
perl expression question
If I have the string below. does someone know a regular expression to just get the "BLC.NYSE". I bought the O'Reilley book and read it when I can and I study the solutions on the list but I'm still not self sufficient with these things. Thanks. stock<-"/opt/limsrv/mark/research/equity/projects/testDL/stock_data/fhdb/US/BLC.NYSE"
2011 May 14
1
Changing Attribute With Paste
...he adjustment programmatic. Unfortunately, I am having a huge amount of trouble using attr in combination with paste (and perhaps get, and perhaps assign, none of which seem to help). When I hard-code the change it works fine. Your help would be much appreciated. require(quantmod) getFin("NYSE:A") attr(NYSE.A.f,"symbol")<-"A" #works fine ticker<-"A" attr(paste("NYSE.",ticker,".f",sep=""),"symbol")<-"A" #doesn't work attr(get(paste("NYSE.",ticker,".f",sep="...
2011 Apr 12
2
Assign Character Value to Data Frame
...that I don't have when I do this for numeric arguments. For example, the following works just fine: > test<-data.frame(number=numeric(1)) > test[1,]<-.5 > test number 1 0.5 But the following bombs out: > hold<-data.frame(symbol=character(1)) > hold[1,]<-"NYSE:MMM" Warning message: In `[<-.factor`(`*tmp*`, iseq, value = "NYSE:MMM") : invalid factor level, NAs generated Could someone please guide me as to what adjustment I need to make to assign this character value to this row of the data frame? Your help would be very much apprecia...
2011 Aug 01
1
Identifying US holidays
...) # Says that none of those dates are holidays ?is.holiday says: "holidays" is an object that should be listing holidays. But I want to figure out which of my dates are US holidays and don't want to provide a list of Package timeDate does almost what I need: library(timeDate) holidayNYSE(2008:2010) holidayNYSE() However, I don't need all the NYSE holidays (like Good Friday). Just the major US holidays - New Years, MLK, Memorial Day, Independence Day, Labor Day, Halloween, Thanksgiving, Christmas. Is there any way to identify major US holidays? Thanks a lot! - Dimitri Liakhov...
2011 Mar 18
1
quantmod Some Single Letter Tickers Not getFin
Hi, I have been learning the quantmod package over the last several days. I went to check some of my data pulls against other sources and was surprised to find that a few tickers that have single characters do not successfully scrape from Google Finance using getFin(). Particularly require(quantmod) getFin("A") getFin("E") getFin("F") getFin("G")
2007 Dec 11
0
holidayNYSE missing some
.../home: 206-632-6522 > cell: 206-910-5229/* > > > ----- Original Message ---- > From: Joe W. Byers <ecjbosu@aol.com> > To: John Putz <johnputz3655@yahoo.com> > Cc: r-sig-finance@stat.math.ethz.ch > Sent: Friday, December 7, 2007 9:26:29 PM > Subject: Re: holidayNYSE missing some > > > John Putz wrote: > > The correct behavior is to shift the holiday to Friday (from Sat) or > to Monday (from Sun). I'm not actually using this for NYSE holidays > but for power industry holidays and made a version to handle those > changes as well a...
2008 Jun 05
1
using barchart in lattice package and conditioning
...s in my data set. these two issues are complicating matters for me also. i'm a lattice newbie. stocks.all<-structure(list(group = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L), .Label = "AVT.NYSE", class = "factor"), buckets = structure(c(8L, 6L, 4L, 2L, 1L, 3L, 5L, 7L, 8L, 6L, 4L, 2L, 1L, 3L, 5L, 7L, 8L, 6L, 4L, 2L, 1L, 3L, 5L, 7L, 8L, 6L, 4L, 2L, 1L, 3L, 5L, 7L), .Label = c("[0,0.25", "[-0.25,0]", "[0.25,0.50]", "[-0.5...
2006 Jun 01
0
OT but relevant to SMS
...his email and its contents are the property of MassMedia Studios Pty Limited ABN 40 092 342 375 PRESS RELEASE Common Short Code Administration Announces Open Registration of 6-Digit Codes WASHINGTON, D.C. - CTIA - The Wireless Association(r) (CTIA) and NeuStar Inc. (NYSE: NSR) announced today that the Common Short Code Administration (CSCA) has opened registration for 6-digit codes on their website, www.USshortcodes.com <http://www.usshortcodes.com/> . Common Short Codes (CSC) allow businesses and their customers to communicate directly with each other throug...
2007 Dec 09
0
David Schwartz is out of the office.
...ubscriptions or other emails that do not constitute advertising messages. Wachovia Securities is the trade name used by two separate, registered broker-dealers and non bank affiliates of Wachovia Corporation providing certain retail securities brokerage services: Wachovia Securities, LLC, Member NYSE/SIPC, and Wachovia Securities Financial Network, LLC, Member FINRA/SIPC.
2008 Feb 22
0
David Schwartz is out of the office.
...urance products are: NOT FDIC-INSURED/NOT BANK-GUARANTEED/MAY LOSE VALUE Wachovia Securities is the trade name used by two separate, registered broker-dealers and nonbank affiliates of Wachovia Corporation providing certain retail securities brokerage services: Wachovia Securities, LLC, Member NYSE/SIPC, and Wachovia Securities Financial Network, LLC, Member FINRA/SIPC.
2007 Sep 19
0
fCalendar
is there a straigthforward way to get the holidays for Toronto ? like the function for NYSE e.g. the timeDate class says that setting a finCenter will give the right holidays, but how? thank you very much. stephen
2011 May 14
1
Identify Objects that end with .f (and all caps)
Dear R Helpers, I am trying to find a way to identify all the objects in my environment that are all caps and then end with .f. I can do the all caps part pretty easily, but I have tried a number of variations on the \ and can't get a recognition of that operator. As a simple example A.f<-"foo1" AA.f<-"foo2" aa.f<-"foo3" A.a<-"foo4" ls()
2001 Apr 30
0
Rgui 1.2.3 for Windows crashes reading huge CSV file (PR#927)
...time before finally crashing. The error message is: The exception unknown software exception (0xc00000fd) occurred in the application at location 0x02672dcf. I watched this in the Task Manager and it peaked around 160 MB. Here's the first few lines of the input file (stock price data for all NYSE stocks for the past year) if you want to try this with some fake data -- just add 688,499 more rows of this stuff :-) Symbol,Date,Cvf,IsStock,Open,High,Low,Close,Volume,OpenInt "WLP",20000428,2,1,75.25,75.25,72.5,73.75,4151,0 "WLP",20000501,2,1,74,74.5,72.120002746582,72.430000...
2010 Apr 28
6
Compellant announces zNAS
Today, Compellant announced their zNAS addition to their unified storage line. zNAS uses ZFS behind the scenes. http://www.compellent.com/Community/Blog/Posts/2010/4/Compellent-zNAS.aspx Congrats Compellant! -- richard ZFS storage and performance consulting at http://www.RichardElling.com ZFS training on deduplication, NexentaStor, and NAS performance Las Vegas, April 29-30, 2010
2000 Dec 10
1
Old news.. but interesting
...rticle: http://www.thomson-multimedia.com/vus/04/042/f042.htm THOMSON MULTIMEDIA TO PURCHASE SINGINGFISH.COM TO BUILD STREAMING MEDIA CAPABILITIES Leading Technology Helps Web Search Engines and Portal Sites Find Streaming Audio and Video Content PARIS - August 10, 2000 - THOMSON multimedia (NYSE: TMS) today announced the signature of a letter of intent to purchase Singingfish.com, a privately-held company that helps search engines identify audio and video streams as well as mp3 audio files. Based in Seattle, Singingfish.com specializes in identifying, categorizing and indexing streaming me...
2008 May 08
0
Statistical Programmer (Irvine, CA), Edwards Lifesciences
Edwards Lifesciences (NYSE: EW) is a global leader in products and technologies to treat advanced cardiovascular disease, the global leader in acute hemodynamic monitoring and the number-one heart valve company in the world. Headquartered in Irvine, California, Edwards has more than 5,000 employees worldwide, selling medical...
2007 Nov 02
0
Splus/R Programmer- Edwards Lifesciences in Irvine, CA
Statistical Programmer (SAS or Splus/R) About the Company: Edwards Lifesciences (NYSE: EW) is a global leader in products and technologies to treat advanced cardiovascular disease, the global leader in acute hemodynamic monitoring and the number-one heart valve company in the world. Headquartered in Irvine, California, Edwards has more than 5,000 employees'' worldwide, sell...
2007 Oct 15
0
Statistical Programmer (SAS or Splus/R)- Edwards Lifesciences (medical device company) in Irvine, CA
About the Company: Edwards Lifesciences (NYSE: EW) is a global leader in products and technologies to treat advanced cardiovascular disease, the global leader in acute hemodynamic monitoring and the number-one heart valve company in the world. Headquartered in Irvine, California, Edwards has more than 5,000 employees worldwide, selling medica...
2008 Jul 06
2
lattice question
...1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L), .Label = "ZMH.NYSE", class = "factor"), wt = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,...