Origin of Wall Street’s Plunge Is Still Unclear to Regulators

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Origin of Wall Street’s Plunge Is Still Unclear to Regulators
# 1  
Old 05-08-2010
Origin of Wall Street’s Plunge Is Still Unclear to Regulators

By GRAHAM BOWLEY NYTimes.com A day after a harrowing plunge in the stock market, federal regulators were still unable on Friday to answer the one question on every investor's mind: What caused that near panic on Wall Street? Through the day and into the evening, officials from the Securities and Exchange Commission and other federal agencies hunted [...]

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Programming

Isosurface and a 2D figure with the same scale and origin using mayavi

I am using mayavi to plot an iso surface from a 3D array s using the following piece of code: src = mlab.pipeline.scalar_field(s) fig=mlab.pipeline.iso_surface(src, color=(1.0,0.0,0.0), contours=, opacity=0.3) mlab.pipeline.iso_surface(src, color=(0.0,1.0,1.0),contours=, opacity=0.3) Then... (0 Replies)
Discussion started by: jaldo0805
0 Replies

2. Programming

Unclear pointer and array

Hello, The purpose of the program is to print a sub string from the prompt inputs. I do not understand why char pointer does not work but char array will for line 40 and Line 41. ./a.out thisisatest 0 8 substring = "thisisat"And my code is: #include <stdio.h> #include <stdlib.h> #include... (29 Replies)
Discussion started by: yifangt
29 Replies

3. Shell Programming and Scripting

best practises for scripting + a few unclear points

Hi guys, Besides the points bellow, what would best practices for scripting be ? 1) set the PATH 2) unset the current environment (set -u ?) 3) (re)set the IFS to default value - space (IFS="" <- is this correct ?) 4) check the return code for each action inside the script (cd, rsync,... (1 Reply)
Discussion started by: da1
1 Replies
Login or Register to Ask a Question
BeanCounter(3pm)					User Contributed Perl Documentation					  BeanCounter(3pm)

NAME
Finance::BeanCounter - Module for stock portfolio performance functions. SYNOPSIS
use Finance::BeanCounter; DESCRIPTION
Finance::BeanCounter provides functions to download, store and analyse stock market data. Downloads are available of current (or rather: 15 or 20 minute-delayed) price and company data as well as of historical price data. Both forms can be stored in an SQL database (for which we currently default to PostgreSQL though MySQL is supported as well; furthermore any database reachable by means of an ODBC connection should work). Analysis currently consists of performance and risk analysis. Performance reports comprise a profit-and-loss (or 'p/l' in the lingo) report which can be run over arbitrary time intervals such as "--prevdate 'friday six months ago' --date 'yesterday'" -- in essence, whatever the wonderful Date::Manip module understands -- as well as dayendreport which defaults to changes in the last trading day. A risk report show parametric and non-parametric value-at-risk (VaR) estimates. Most available functionality is also provided in the reference implementation beancounter, a convenient command-line script. The API might change and evolve over time. The low version number really means to say that the code is not in its final form yet, but it has been in use for well over four years. More documentation is in the Perl source code. DATABASE LAYOUT
The easiest way to see the table design is to look at the content of the setup_beancounter script. It creates the five tables stockinfo, stockprices, fxprices, portfolio and indices. Note also that is supports the creation of database for both PostgreSQL and MySQL. THE STOCKINFO TABLE The stockinfo table contains general (non-price) information and is index by symbol: symbol varchar(12) not null, name varchar(64) not null, exchange varchar(16) not null, capitalisation float4, low_52weeks float4, high_52weeks float4, earnings float4, dividend float4, p_e_ratio float4, avg_volume int4 This table is updated by overwriting the previous content. THE STOCKPRICES TABLE The stockprices table contains (daily) price and volume information. It is indexed by both date and symbol: symbol varchar(12) not null, date date, previous_close float4, day_open float4, day_low float4, day_high float4, day_close float4, day_change float4, bid float4, ask float4, volume int4 During updates, information is appended to this table. THE FXPRICES TABLE The fxprices table contains (daily) foreign exchange rates. It can be used to calculate home market values of foreign stocks: currency varchar(12) not null, date date, previous_close float4, day_open float4, day_low float4, day_high float4, day_close float4, day_change float4 Similar to the stockprices table, it is index on date and symbol. THE STOCKPORTFOLIO TABLE The portfolio table contains contains the holdings information: symbol varchar(16) not null, shares float4, currency varchar(12), type varchar(16), owner varchar(16), cost float(4), date date It is indexed on symbol,owner,date. THE INDICES TABLE The indices table links a stock symbol with one or several market indices: symbol varchar(12) not null, stockindex varchar(12) not null BUGS
Finance::BeanCounter and beancounter are so fresh that there are only missing features :) On a more serious note, this code (or its earlier predecessors) have been in use since the fall of 1998. Known bugs or limitations are documented in TODO file in the source package. SEE ALSO
beancounter.1, smtm.1, Finance::YahooQuote.3pm, LWP.3pm, Date::Manip.3pm COPYRIGHT
Finance::BeanCounter.pm (c) 2000 -- 2006 by Dirk Eddelbuettel <edd@debian.org> Updates to this program might appear at http://eddelbuettel.com/dirk/code/beancounter.html. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. There is NO warranty whatsoever. The information that you obtain with this program may be copyrighted by Yahoo! Inc., and is governed by their usage license. See http://www.yahoo.com/docs/info/gen_disclaimer.html for more information. ACKNOWLEDGEMENTS
The Finance::YahooQuote module by Dj Padzensky (on the web at http://www.padz.net/~djpadz/YahooQuote/) served as the backbone for data retrieval, and a guideline for the extension to the non-North American quotes which was already very useful for the real-time ticker http://eddelbuettel.com/dirk/code/smtm.html. perl v5.10.1 2010-06-13 BeanCounter(3pm)