| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Finance::Quote |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | Boardwalk Finance |
script | ASP | $89.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | Finance-QuoteHist |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | BADGER finance |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 5 | Finance Navigator II |
windows | Business Finance->Business Finance | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 6 | Finance::YahooChart 0.01 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Finance::YahooChart is a Perl module to get a chart from Yahoo! Finance. SYNOPSIS use Finance::YahooChart; %img = getchart(symbol => $symbol, size => $size, type => $type, include => $include); print " This module gets charts from Yahoo! Finance. The only function in the module is the getchart function, which takes the stock symbol, size of the chart (b for big, s for small), the type of chart (i for intraday, w for week, 3 for 3-month, 1 for 1-year, 2 for 2-year, and 5 for 5-year), and any extra information to include (s for a comparison to the S&P 500, m for a moving average). It returns a hash with the following elements: url => The URL of the chart width => The width of the chart height => The height of the chart Note that not all combinations are available for all charts. Big charts are available for all types. Small charts are only available for i, w, and 1 charts. Includes are only available for big 3, 1, 2, and 5 charts. In most cases, if an invalid configuration is passed, $Finance::YahooChart::Error will be set to some kind of error message. |
||||||||||||||
| 7 | Finance::YahooQuote 0.22 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Finance::YahooQuote is a Perl module that can get stock quotes from Yahoo! Finance. SYNOPSIS use Finance::YahooQuote; # setting TIMEOUT and PROXY is optional $Finance::YahooQuote::TIMEOUT = 60; $Finance::YahooQuote::PROXY = "http://some.where.net:8080"; @quote = getonequote $symbol; # Get a quote for a single symbol @quotes = getquote @symbols; # Get quotes for a bunch of symbols useExtendedQueryFormat(); # switch to extended query format useRealtimeQueryFormat(); # switch to real-time query format @quotes = getquote @symbols; # Get quotes for a bunch of symbols @quotes = getcustomquote(["DELL","IBM"], # using custom format ["Name","Book Value"]); # note array refs This module gets stock quotes from Yahoo! Finance. The getonequote function will return a quote for a single stock symbol, while the getquote function will return a quote for each of the stock symbols passed to it. getcustomquote allows to specify a format other than the default to take advantage of the extended range of available information. The download operation is efficient: only one request is made even if several symbols are requested at once. The return value of getonequote is an array, with the following elements: 0 Symbol 1 Company Name 2 Last Price 3 Last Trade Date 4 Last Trade Time 5 Change 6 Percent Change 7 Volume 8 Average Daily Vol 9 Bid 10 Ask 11 Previous Close 12 Todays Open 13 Days Range 14 52-Week Range 15 Earnings per Share 16 P/E Ratio 17 Dividend Pay Date 18 Dividend per Share 19 Dividend Yield 20 Market Capitalization 21 Stock Exchange If the extended format has been selected, the following fields are also retrieved: 22 Short ratio 23 1yr Target Price 24 EPS Est. Current Yr 25 EPS Est. Next Year 26 EPS Est. Next Quarter 27 Price/EPS Est. Current Yr 28 Price/EPS Est. Next Yr 29 PEG Ratio 30 Book Value 31 Price/Book 32 Price/Sales 33 EBITDA 34 50-day Moving Avg 35 200-day Moving Avg If the real-time format has been selected, the following fields are also retrieved: 36 Ask (real-time) 37 Bid (real-time) 38 Change in Percent (real-time) 39 Last trade with time (real-time) 40 Change (real-time) 41 Day range (real-time) 42 Market-cap (real-time) The getquote function returns an array of pointers to arrays with the above structure. The getonequote function returns just one quote, rather than an array. It returns a simple array of values for the given symbol. The setQueryString permits to supply a new query string that will be used for subsequent data requests. The useExtendedQueryFormat and useRealtimeQueryFormat are simpler interfaces which append symbols to the default quote string, as detailed above. The getcustomquote returns an array of quotes corresponding to values for the symbols supplied in the first array reference, and the custom fields supplied in the second array reference. Here the custom fields correspond to the named fields of the list below. Beyond stock quotes, Finance::YahooQuote can also obtain quotes for currencies (from the Philadephia exchange -- however Yahoo! appears to have stopped to support the currency symbols in a reliable manner), US mutual funds, options on US stocks, several precious metals and quite possibly more; see the Yahoo! Finance website for full information. Finance::YahooQuote can be used for stocks from the USA, Canada, various European exchanges, various Asian exchanges (Singapore, Taiwan, HongKong, Kuala Lumpur, ...) Australia and New Zealand. It should work for other markets supported by Yahoo. You may optionally override the default LWP timeout of 180 seconds by setting $Finance::YahooQuote::TIMEOUT to your preferred value. You may also provide a proxy (for the required http connection) by using the variable $Finance::YahooQuote::PROXY. Furthermore, authentication-based proxies can be used by setting the proxy user and password via the variables $Finance::YahooQuote::PROXYUSER and $Finance::YahooQuote::PROXYPASSWD. Two example scripts are provided to help with the mapping a stock symbols as well as with Yahoo! Finance server codes. The regression tests scripts in the t/ subdirectory of the source distribution also contain simple examples. |
||||||||||||||
| 8 | Finance::BDT 0.01 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Finance::BDT is a Perl module that implements BDT yield curve model. SYNOPSIS use Finance::BDT; use Data::Dumper my @y = (0, 0.0283, 0.029, 0.0322, 0.0401, 0.0435, 0.0464, 0.0508, 0.0512); ## YTM on strips my $vol = 0.20; ## constant volatility my $epsilon = 0.01; my ($r, $d, $A) = Finance::BDT::bdt( -yields => @y, -epsilon => $epsilon, -volatility => $vol ); print "Short Rates: n", Dumper $r; print "Discount Prices: n", Dumper $d; print "Asset State Prices: n", Dumper $A; ABSTRACT Sample implementation of Black-Derman-Toy model. Finance::BDT implements a constant volatility Black-Derman-Toy model in Perl. Not that you should be building your curves in perl, but now you can. The current implementation works with constant volatility but I am testing a version which allows you to pass in a term structure of volatilities. The input is the zero curve (as observed yields), a constant volatility, and a limit for the numerical solution. The function returns the interest rate tree as a list of lists (first index being the time period, and second being the position with the lowest rate having index 0). Three trees are returned: the short rates at each period, the discount prices and most importantly the state prices. The examples directory has an untested sample implementation in C for the brave. |
||||||||||||||
| 9 | Finance::Bank::HDFC 0.12 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Finance::Bank::HDFC project provides an interface to the HDFC netbanking service. |
||||||||||||||
| 10 | SmartMedium FINANCE 2.18 |
windows | Business Finance->Personal Finance | $26 |
View Detail
|
|||||||||
|
||||||||||||||
| 11 | SmartMedium FINANCE 2.30 |
windows | Business Finance->Personal Finance | $25.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 12 | Finance 5.5.1 |
mac | Business Finance->Business | $20 |
View Detail
|
|||||||||
Manage your checking, savings and credit card accounts with ease! Finance is a checking, savings, and credit card account management application. It enables you to quickly enter, view, and modify transactions, search through your records, and easily reconcile your account balance with your bank statement. Here are some key features of "Finance": · Runs native in Mac OS X. · Data automatically saved when changes are made. · List and detail view options in one window. · Convenient sidebar display of account balances. · Records automatically sorted by date. · Integrated search with four options. · Pop-up menus to speed data entry. · User defined internet links window. · System level currency formatting. · Option to password protect files in Mac OS X. · Automatic software update. · Quick access to recent documents. · Integrated feedback interface. · Context-aware help using Apple Help Viewer · And much more! Limitations: · ou can evaluate it free for 15 times to try out most of its features and decide if you like it before you buy it. Whats New in This Release: · Updated online registration verification system. · Fixed an issue when YENCO.COM site is down during verification. · Modified some verification routines running under Mac OS 9. |
||||||||||||||
| 13 | Finance Navigator 1.0 |
windows | Network Internet->Stock and News Tickers | Free |
View Detail
|
|||||||||
Forget all those old-dinosaurs, commercial, slow, partial information, fly-by-night portals or finance sites. Dont try to dig huge skeptical finance information from the web. Dont pay cables fees for watching hardly to try and catch any finance TV stations and dont try to find finance radio programs over the scale. The Finance navigator - your Private Portable Finance Portal, will do it for you. You dont have to look for finance data just click on the Update button and select data from the most reliable resources, which will stream to you in real time. Use the expertise of 45 top analysts to watch the average recommendation rate graphs. Watch finance TV station and listen to radio programs in real time from all over the world. Get IPOs, any reports, analysts recommendations & research, historical data, calendars, all about options, splits, insider traders, profiles, fundamental data, indexes and much more, very easily and intuitively. |
||||||||||||||
| 14 | Personal Finance 2.0.4 |
mac | Business Finance->Finance | $14 |
View Detail
|
|||||||||
Personal Finance is a solution intended to control your personal finances. Create multiple accounts, categories and see graphs. Personal Finance is a simple way to control your money. Keep your money transactions updated with Personal Finance. Limitations: · Demo version is limited to 20 transactions. Whats New in This Release: · New Mac like layout · New icon set · Many other small fixes and enhancements |
||||||||||||||
| 15 | Banking Finance Glossary 9984921700 |
windows | Business Finance->Personal Finance | $14.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 16 | Finance::QuoteHist::Yahoo 1.09 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Finance::QuoteHist::Yahoo is a Perl module with site-specific subclass for retrieving historical stock quotes. SYNOPSIS use Finance::QuoteHist::Yahoo; $q = new Finance::QuoteHist::Yahoo ( symbols => [qw(IBM UPS AMZN)], start_date => 01/01/1999, end_date => today, ); # Values foreach $row ($q->quotes()) { ($symbol, $date, $open, $high, $low, $close, $volume) = @$row; ... } # Splits foreach $row ($q->splits()) { ($symbol, $date, $post, $pre) = @$row; } # Dividends foreach $row ($q->dividends()) { ($symbol, $date, $dividend) = @$row; } Finance::QuoteHist::Yahoo is a subclass of Finance::QuoteHist::Generic, specifically tailored to read historical quotes, dividends, and splits from the Yahoo web site (http://table.finance.yahoo.com/). For quotes and dividends, Yahoo can return data quickly in CSV format. Both of these can also be extracted from HTML tables. Splits are only available embedded in the HTML version of dividends. There are no date range restrictions on CSV queries for quotes and dividends. For HTML queries, Yahoo takes arbitrary date ranges as arguments, but breaks results into pages of 66 entries. Please see Finance::QuoteHist::Generic(3) for more details on usage and available methods. If you just want to get historical quotes and are not interested in the details of how it is done, check out Finance::QuoteHist(3). |
||||||||||||||
| 17 | Personal Finance 2.4.7 |
windows | Business Finance->Others | $19.9 |
View Detail
|
|||||||||
Keep your money transactions updated with Personal Finance. Control multiple accounts, add categories, contacts and see graphs. Highlight: Mac like layout Import .OFX files Password protected Verified field Export transactions to Excel Simple and intuitive Personal Finances interface is easy to learn and use. |
||||||||||||||
| 18 | Personal Finance 3.0.4 |
windows | Business Finance->Business Finance | Free |
View Detail
|
|||||||||
Personal Finance will alow you to keep track of your personal finances. Here are some key features of "AG Personal Finance": · Lists of incomes and losses. · Input of the income and the loss through a card. · Opportunity of binding to record of a photo of the document (the check, the receipt or other) · The report for the chosen period. |
||||||||||||||
| 19 | Finance::QuoteHist::Generic 1.09 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Finance::QuoteHist::Generic is a base class for retrieving historical stock quotes. SYNOPSIS package Finance::QuoteHist::MyFavoriteSite; use strict; use vars qw(@ISA); use Finance::QuoteHist::Generic; @ISA = qw(Finance::QuoteHist::Generic); sub url_maker { # This method returns a code reference for a routine that, upon # repeated invocation, will provide however many URLs are necessary # to fully obtain the historical data for a given target mode and # parsing mode. } This is the base class for retrieving historical stock quotes. It is built around LWP::UserAgent. Page results are currently parsed as either CSV or HTML tables. In order to actually retrieve historical stock quotes, this class should be subclassed and tailored to a particular web site. In particular, the url_maker() factory method should be overridden, which provides a code reference to a routine that provides however many URLs are necessary to retrieve the data over a list of symbols within the given date range, for a particular target (quotes, dividends, splits). Different sites have different formats and different limitations on how many quotes are returned for each query. See Finance::QuoteHist::Yahoo and Finance::QuoteHist::QuoteMedia for some examples of how to do this. For more complicated sites, such as Yahoo, overriding additonal methods might be necessary for dealing with things such as splits and dividends. |
||||||||||||||
| 20 | Abassis Finance Manager 1.4 |
windows | Business Finance->Personal Finance | Free |
View Detail
|
|||||||||
|
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
