| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Home finance 1.2.3en |
windows | Business Finance->Personal Finance | $30.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | Finance::Quote |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | Boardwalk Finance |
script | ASP | $89.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | Finance-QuoteHist |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 5 | Denver Home Loan Payment Financed eBook 3.7 |
windows | Business Finance->Calculator Converter | Free |
View Detail
|
|||||||||
Denver Home Loan Payment Financed eBook, designed to help you when taking out a mortgage loan. You might be interested in knowing how much money you are actually paying for every thousand dollars you borrow. The Denver Home Loan Payment Financed eBook gives you vital knowledge regarding Credit Card Calculators, Monthly Loan Payments, How Much You Can Afford, Should You Refinance, Should you Use Equity to Lower Your Debt Payments and How Much Income you need to qualify. It will calculate your Loan Information with a Financial Analysis, providing you with a simple to understand PDF printout that you can also save to your computer. |
||||||||||||||
| 6 | BADGER finance |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 7 | Personal Finance Quizzes 1.0 |
windows | Business Finance->Educational Tools | Free |
View Detail
|
|||||||||
Personal Finance Quizzes is a free Windows program that can help you get acquainted with terminology used in personal finance and investment. Automatically adjusts to your way of learning. Includes quizzes on Home Financing, Stocks, Bonds and Mutual Funds. Personal Finance Quizzes offers many valuable features: skins, four quiz modes, export to Palm, paper tests, flashcard printing and more. The program is free for personal use. |
||||||||||||||
| 8 | Personal Finance Manager R1_0_8 |
linux | Office->Finance | Free |
View Detail
|
|||||||||
Personal finance manager is a simple tool for managing accounts and expenses. The project was designed and written to be intutive and easy to use for home and small business users not familier with accounting principles like single or double entry accounting PFM is a basic implementation of double entry accounting principles. Here are some key features of "Personal Finance Manager": · Intutive and easy to use · Cross platform, will run on any computer with Java virtual machine installed · Manage expenses and track account balances · Generate reports · Create and save complex filters to search transaction history. |
||||||||||||||
| 9 | Personal Finance Manager |
script | Java | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 10 | Finance Navigator II |
windows | Business Finance->Business Finance | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 11 | Metallogica Finance Explorer 1.0 |
windows | Business Finance->Business Finance | $18.75 |
View Detail
|
|||||||||
A powerful yet simple to use home finance software. Compatible with MS Money 98 downloads so you can download your transactions from almost any bank. Never have to type them in. Includes an intuitive budget. Handles and unlimited number of accounts including checking, saving, investment, cash, credit card and loan. Monthly view of transactions as well as net worth view. To top it off, a very user friendly interface. |
||||||||||||||
| 12 | 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. |
||||||||||||||
| 13 | 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. |
||||||||||||||
| 14 | 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. |
||||||||||||||
| 15 | Finance::Bank::HDFC 0.12 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Finance::Bank::HDFC project provides an interface to the HDFC netbanking service. |
||||||||||||||
| 16 | SmartMedium FINANCE 2.18 |
windows | Business Finance->Personal Finance | $26 |
View Detail
|
|||||||||
|
||||||||||||||
| 17 | SmartMedium FINANCE 2.30 |
windows | Business Finance->Personal Finance | $25.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 18 | 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. |
||||||||||||||
| 19 | 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. |
||||||||||||||
| 20 | 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 |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
