|
[Date Index]
[Thread Index]
[Author Index]
Re: FinancialData still broken
- To: mathgroup at smc.vnet.net
- Subject: [mg120559] Re: FinancialData still broken
- From: "Chris Degnen" <degnen at cwgsy.net>
- Date: Fri, 29 Jul 2011 04:41:54 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
DrMajorBob wrote:
>
Armand Tamzarian wrote:
>>
>> Would it be easier to just get the data from Yahoo rather than have to
>> worry about fixes and innoculations?
>
> I don't know how to do that, but I suspect it's Yahoo sending erroneous
> prices, anyway.
You can get quotes from Yahoo like this:
quotes = Import[
"http://download.finance.yahoo.com/d/quote.csv?s=\
CLU11.NYM+^GSPC+^FTSE&f=abdlohg"];
(*www.mathematicacookbook.com/downloads/YahooDataDownload.htm*)
TableForm[
Map[List, MapThread[StringJoin, {{"WTI - ", "S&P - ", "FTSE - "},
StringReplace[quotes[[All, 4]], {"<b>" -> "", "</b>" -> ""}]}]],
TableHeadings -> {None, {"Last Trade"}}]
Prev by Date:
CompressedData in Buttons
Next by Date:
Mathematica 8 remote parallel kernels
Previous by thread:
Re: FinancialData still broken
Next by thread:
Re: FinancialData still broken
|