Main > Free Download Search >

Free finance bank hdfc 0.12 software for linux

finance bank hdfc 0.12

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 324
Finance::Bank::HDFC 0.12

Finance::Bank::HDFC 0.12


Finance::Bank::HDFC provides an interface to the HDFC netbanking service. more>>
Finance::Bank::HDFC project provides an interface to the HDFC netbanking service.

<<less
Download (0.004MB)
Added: 2006-03-01 License: GPL (GNU General Public License) Price:
1348 downloads
Finance::BDT 0.01

Finance::BDT 0.01


Finance::BDT is a Perl module that implements BDT yield curve model. more>>
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.

<<less
Download (0.004MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1117 downloads
Finance::Bank::Sporo 0.16

Finance::Bank::Sporo 0.16


Finance::Bank::Sporo is a Perl extension for B< SporoPay > of Slovenska Sporitelna. more>>
Finance::Bank::Sporo is a Perl extension for B< SporoPay > of Slovenska Sporitelna.

SYNOPSIS

use Finance::Bank::Sporo;

$sporo_obj = Bank::Sporo->new($prenumber,$number);

$sporo_obj->configure(
amt => $amt,
vs => $vs,
ss => $ss,
rurl => $rurl,
param => $param,
);


print $sporo_obj->pay_form();

Module for generating pay forms and links for B< SporoPay > of Slovenska Sporitelna.

<<less
Download (0.004MB)
Added: 2006-07-05 License: Perl Artistic License Price:
1207 downloads
Finance::YahooChart 0.01

Finance::YahooChart 0.01


Finance::YahooChart is a Perl module to get a chart from Yahoo! Finance. more>>
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 width="$img{width}" height="$img{height}">";

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.

<<less
Download (0.009MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1046 downloads
Finance::Bank::NL::CLIEOP03 0.01

Finance::Bank::NL::CLIEOP03 0.01


Finance::Bank::NL::CLIEOP03 is a Perl module that can generate CLIEOP03 files for Dutch banks. more>>
Finance::Bank::NL::CLIEOP03 is a Perl module that can generate CLIEOP03 files for Dutch banks.

SYNOPSIS

use Finance::Bank::NL::CLIEOP03;

$c = Finance::Bank::NL::CLIEOP03->new;

$batch = $c->batch (
account => 1234567,
sender_name => My Company,
type => Finance::Bank::NL::CLIEOP03::T_INCASSI
);

$batch->add (
amount => 25,
account_number => 1234567,
account_name => Ms. Example,
description => Taking your money
);

$c->write ( CLIEOP03 );

This module allows for easy creation of CLIEOP03 batch transaction files which can be processed by Dutch banks. CLIEOP03 files can be used for automatic debiting ("automatische incasso") or batch transfers ("verzamelgiro"). You must have a business bank account and (usually) an additional agreement with your bank for using this.

<<less
Download (0.006MB)
Added: 2007-05-24 License: Perl Artistic License Price:
894 downloads
Finance::Bank::NetBranch 0.07

Finance::Bank::NetBranch 0.07


Finance::Bank::NetBranch is a Perl module that can manage your NetBranch accounts with Perl. more>>
Finance::Bank::NetBranch is a Perl module that can manage your NetBranch accounts with Perl.

SYNOPSIS

use Finance::Bank::NetBranch;
my $nb = Finance::Bank::NetBranch->new(
url => https://nbp1.cunetbranch.com/valley/,
account => 12345,
password => abcdef,
);

my @accounts = $nb->accounts;

foreach (@accounts) {
printf "%20s : %8s : USD %9.2f of %9.2fn",
$_->name, $_->account_no, $_->available, $_->balance;
my $days = 20;
for ($_->transactions(from => time - (86400 * $days), to => time)) {
printf "%10s | %20s | %80s : %9.2f, %9.2fn",
$_->date->ymd, $_->type, $_->description, $_->amount, $_->balance;
}
}

This module provides a rudimentary interface to NetBranch online banking. This module was originally implemented to interface with Valley Communities Credit Unions page at https://nbp1.cunetbranch.com/valley/, but the behavior of the module is theoretically generalized to "NetBranch" type online access.

However, I do not have access to another NetBranch account with another bank, and so any feedback on the actual behavior of this module would be greatly appreciated.

You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work.

<<less
Download (0.006MB)
Added: 2007-05-24 License: Perl Artistic License Price:
884 downloads
Finance::BeanCounter 0.8.7

Finance::BeanCounter 0.8.7


Finance::BeanCounter is a Perl module for stock portfolio performance functions. more>>
Finance::BeanCounter is a Perl module for stock portfolio performance functions.

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.

<<less
Download (0.072MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1038 downloads
Finance::IIF 0.20.01

Finance::IIF 0.20.01


Finance::IIF is a Perl module that can parse and create IIF files for QuickBooks. more>>
Finance::IIF is a Perl module that can parse and create IIF files for QuickBooks.

SYNOPSIS

use Finance::IIF;

my $iif = Finance::IIF->new( file => "test.iif" );

while ( my $record = $iif->next ) {
print( "Header: ", $record->{header}, "n" );
foreach my $key ( keys %{$record} ) {
print( " ", $key, ": ", $record->{$key}, "n" );
}
}

Finance::IIF is a module for working with IIF files for QuickBooks in Perl. This module reads IIF data records from a file passing each successive record to the caller for processing.

A hash reference is returned for each record read from a file. The hash will have a "header" value which contains the header type that was read along with all supported values found for that record. If a value is not specified in the data file, the value will not exist in this hash.

No processing or validation is done on values found in files or data structures to try and convert them into appropriate types and formats. It is expected that users of this module or extensions to this module will do any additional processing or validation as required.

<<less
Download (0.010MB)
Added: 2007-07-04 License: Perl Artistic License Price:
844 downloads
Finance::YahooQuote 0.22

Finance::YahooQuote 0.22


Finance::YahooQuote is a Perl module that can get stock quotes from Yahoo! Finance. more>>
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.

<<less
Download (0.022MB)
Added: 2007-02-23 License: Perl Artistic License Price:
976 downloads
Flickcurl 0.12

Flickcurl 0.12


Flickcurl is a C library for the Flickr API. more>>
Flickcurl is a C library for the Flickr API, handling creating the reqeuests, signing, token management, calling the API, marshalling requests parameters and decoding responses.

Flickcurl project uses libcurl to call the REST web service and libxml2 to manipulate the XML responses. The current version supports part of the API (see Flickcurl API coverage) primarily the functions for reading photo, people and tags description, sufficient for me to play with machine tags and RDF descriptions.

<<less
Download (0.38MB)
Added: 2007-08-14 License: The Apache License 2.0 Price:
801 downloads
Ruby/Finance 0.2.2

Ruby/Finance 0.2.2


Ruby/Finance allows access to changing financial data, such as currency conversion rates and stock quotes. more>>
Ruby/Finance allows access to changing financial data, such as stock quotes and currency conversion rates.

For the foreseeable future, it is intended to be a port of Perls Finance::Quote module.

Examples:

Currency conversion

require finance/currency

Display the US Dollar ($) to Euro () conversion rate.

puts Finance::Currency::convert( EUR, USD )

Display the British Pounds Sterling () to Icelandic Kronur conversion
rate for the amount of 32.50.

puts Finance::Currency::convert( ISK, GBP, 32.50 )

Stock quotes

require finance/quote

q = Finance::Quote.new Answers will be given in the native
currency of the exchange on which
they are listed.

q = Finance::Quote.new( EUR ) Answers will be given in Euros.

q.currency = VND Switch to using Vietnamese Dong.

info = q.fetch( usa, CRM ) Fetch a single quote, namely CRM.

info = q.fetch( :usa, EBAY, AMZN ) Fetch EBAY and AMZN. Note that
a Symbol can be used instead of a
String for the exchange name.

info = q.fetch( usa, %w[ EBAY AMZN ] ) An Array of ticker symbols is
OK, too.
puts info[EBAY][:price]

A block can be passed, too:

q.fetch( :usa, RHAT ) { |info| puts info[RHAT][:high] }

You can also bypass #fetch and call the exchange as a method:

q.usa( RHAT ) { |info| puts info[RHAT][:high] }

Installation:

Minero Aokis setup.rb script is included. Extensive documentation for this script can be found at the end of this document.

Basically, however, the following should be enough to install the package:

$ ruby setup.rb config
$ ruby setup.rb setup
# ruby setup.rb install

("#" line may require root privilege)
<<less
Download (0.041MB)
Added: 2006-04-10 License: GPL (GNU General Public License) Price:
1293 downloads
Finance::Quote 1.12

Finance::Quote 1.12


Finance::Quote is a Perl module to get stock and mutual fund quotes from various exchanges. more>>
Finance::Quote is a Perl module to get stock and mutual fund quotes from various exchanges.

SYNOPSIS

use Finance::Quote;
$q = Finance::Quote->new;

$q->timeout(60);

$conversion_rate = $q->currency("AUD","USD");
$q->set_currency("EUR"); # Return all info in Euros.

$q->require_labels(qw/price date high low volume/);

$q->failover(1); # Set failover support (on by default).

%quotes = $q->fetch("nasdaq",@stocks);
$hashref = $q->fetch("nyse",@stocks);

This module gets stock quotes from various internet sources, including Yahoo! Finance, Fidelity Investments, and the Australian Stock Exchange. There are two methods of using this module -- a functional interface that is depreciated, and an object-orientated method that provides greater flexibility and stability.

With the exception of straight currency exchange rates, all information is returned as a two-dimensional hash (or a reference to such a hash, if called in a scalar context). For example:

%info = $q->fetch("australia","CML");
print "The price of CML is ".$info{"CML","price"};

The first part of the hash (eg, "CML") is referred to as the stock. The second part (in this case, "price") is referred to as the label.

<<less
Download (0.090MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1046 downloads
Finance::Quote::ASX 1.12

Finance::Quote::ASX 1.12


Finance::Quote::ASX is a Perl module that can obtain quotes from the Australian Stock Exchange. more>>
Finance::Quote::ASX is a Perl module that can obtain quotes from the Australian Stock Exchange.

SYNOPSIS

use Finance::Quote;

$q = Finance::Quote->new;

%stockinfo = $q->fetch("asx","BHP"); # Only query ASX.
%stockinfo = $q->fetch("australia","BHP"); # Failover to other sources OK.

This module obtains information from the Australian Stock Exchange http://www.asx.com.au/. All Australian stocks and indicies are available. Indexes start with the letter X. For example, the All Ordinaries is "XAO".

This module is loaded by default on a Finance::Quote object. Its also possible to load it explicity by placing "ASX" in the argument list to Finance::Quote->new().
This module provides both the "asx" and "australia" fetch methods. Please use the "australia" fetch method if you wish to have failover with other sources for Australian stocks (such as Yahoo). Using the "asx" method will guarantee that your information only comes from the Australian Stock Exchange.

Information returned by this module is governed by the Australian Stock Exchanges terms and conditions.

<<less
Download (0.090MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1038 downloads
Scenic 0.12.3

Scenic 0.12.3


Scenic is a 2-dimensional scene based graphics library. more>>
Scenic is a 2-dimensional scene based graphics library. Scenic stores graphics in a tree-like structure (scene). Scenic also handles user input (mouse and keyboard).
Main features:
- Affine transformations
- Polygons
- Lines
- Cubic Bezier curves
- Antialiased text
- Images
- Clipping
- Alpha transparency
- Edge antialiasing
- OpenGL primitives
- Conservative garbage collection
<<less
Download (MB)
Added: 2007-04-03 License: LGPL (GNU Lesser General Public License) Price:
935 downloads
Finance::Quote::Yahoo::nz 1.12

Finance::Quote::Yahoo::nz 1.12


Finance::Quote::Yahoo::nz is a Perl module to fetch nzn stock quotes via Yahoo. more>>
Finance::Quote::Yahoo::nz is a Perl module to fetch nzn stock quotes via Yahoo.

SYNOPSIS

use Finance::Quote;
my $q = Finance::Quote->new;

my %info = $q->fetch("yahoo_nz","DPC"); # Use this module only.
my %info = $q->fetch("nz","DPC"); # Failover with other methods.

This module allows information to be fetched from Yahoo about stocks traded on the New Zealand Stock Exchange. Information about indexes is not available through this module.

This module is loaded by default on a Finance::Quote object, although it can be explicitly loaded by passing the argument "Yahoo::nz" to Finance::Quote->new().
This module provides only the "yahoo_nz" fetch methods. The author (stephen@vital.org.nz) will write a module to access the NZX site if asked nicely.
Information obtained via this module is governed by Yahoos terms and conditions, see http://au.finance.yahoo.com/ for more details.

LABELS RETURNED

This module returns all the standard labels (where available) provided by Yahoo, as well as the currency label. See Finance::Quote::Yahoo::Base for more information.

<<less
Download (0.090MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1046 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5