Main > Free Download Search >

Free finance bank netbranch 0.07 software for linux

finance bank netbranch 0.07

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 247
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::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::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::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::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
Convert::RACE 0.07

Convert::RACE 0.07


Convert::RACE is a conversion between Unicode and RACE. more>>
Convert::RACE is a conversion between Unicode and RACE.

SYNOPSIS

use Convert::RACE;

$domain = to_race($utf16str);
$utf16str = from_race($domain);

This module provides functions to convert between RACE (Row-based ASCII-Compatible Encoding) and Unicode Encodings.

RACE converts strings with internationalized characters into strings of US-ASCII that are acceptable as host name parts in current DNS host naming usage.

<<less
Download (0.004MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1167 downloads
Finance-QuoteHist 1.07

Finance-QuoteHist 1.07


Finance-QuoteHist provides Finance::QuoteHist, a Perl module that provides easy fetching of historical stock quotes. more>>
Top level aggregator that will select a default lineup of site instances default lineup of site instancesof site instancesof site instancesof site instances from which to retrieve quotes.
Other than the default lineup, this module behaves identically to whichever site-specific module is first in the lineup. See below for site-specific modules.
METHODS
The basic user interface consists of several methods, as seen in the example above. Those methods are:
quotes()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Symbol, Date, Open, High, Low, Close, and Volume for that date. Optionally, if non-adjusted values were requested, their will be an extra element at the end of the row for the Adjusted closing price.
dividends()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date and amount of the Dividend, in that order.
splits()
Returns a list of rows (or a reference to an array containing those rows, if in scalar context). Each row contains the Date, Post split shares, and Pre split shares, in that order.
source($ticker, $target)
Each of these methods displays which site-specific class actually retrieved the information, if any, for a particular ticker symbol and target such as quote (default), dividend, or split.
Enhancements:
- The internal structure was changed to use date iterators where appropriate.
- The documentation was fixed for MSN.
- Various minor edge cases were fixed.
<<less
Download (0.025MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1306 downloads
File::Backup 0.07

File::Backup 0.07


File::Backup is a Perl module for easy file backup & rotation automation. more>>
File::Backup is a Perl module for easy file backup & rotation automation.

SYNOPSIS

use File::Backup;

backup( from => "/source/path", to => "/destination/path" );
backup( from => "/kansas/*", to => "/oz" );

purge_backups(
to => "/destination/path",
compress => 0,
keep => 5,
timeformat => "YYYYMMDD_hhmmss",
);

This legacy module implements archival and compression (A.K.A "backup") and file rotation and is an implementation of tar and gzip calls.

<<less
Download (0.008MB)
Added: 2007-04-25 License: Perl Artistic License Price:
913 downloads
Finance::InteractiveBrokers::TWS 0.0.8

Finance::InteractiveBrokers::TWS 0.0.8


Finance::InteractiveBrokers::TWS is a Perl module that lets you talk to Interactivebrokers Traders Workstation. more>>
Finance::InteractiveBrokers::TWS is a Perl module that lets you talk to Interactivebrokers Traders Workstation using Perl.

This module is a wrapper around InteractiveBrokers Traders Workstation (TWS) Java interface, that lets one interact with the TWS using Perl, via the vendor supplied API. This means that all the functionality available to Java programmers is also available to you.

SYNOPSIS

Methods implemented by Finance::InteractiveBrokers::TWS
use Finance::InteractiveBrokers::TWS;

my $tws = Finance::InteractiveBrokers::TWS->new(callback=>$callback);

my $callback = $tws->get_callback();
my $rc = $tws->eConnect($host, $port, $client_id);
my $rc = $tws->eDisconnect();
my $rc = $tws->isConnected(@parms);
my $rc = $tws->process_messages($seconds_to_wait);
Shortcuts for instantiating IB Java classes
my $combo_leg = $tws->ComboLeg->new(@parms);
my $contract_details = $tws->ContractDetails->new(@parms);
my $contract = $tws->Contract->new(parms);
my $execution_filter = $tws->ExecutionFilter->new(@parms);
my $execution = $tws->Execution->new(@parms);
my $order = $tws->Order->new(@parms);
my $scanner_sub = $tws->ScannerSubscription->new(@parms);

Shortcuts for asking TWS to do something for you

$tws->cancelHistoricalData(@parms);
$tws->cancelMktData(@parms);
$tws->cancelMktDepth(@parms);
$tws->cancelNewsBulletins(@parms);
$tws->cancelOrder(@parms);
$tws->cancelScannerSubscription(@parms);
$tws->exerciseOptions(@parms);
$tws->placeOrder(@parms);
$tws->replaceFA(@parms);
$tws->reqAccountUpdates(@parms);
$tws->reqAllOpenOrders(@parms);
$tws->reqAutoOpenOrders(@parms);
$tws->reqContractDetails(@parms);
$tws->reqExecutions(@parms);
$tws->reqHistoricalData(@parms);
$tws->reqIds(@parms);
$tws->reqManagedAccts(@parms);
$tws->reqMktData(@parms);
$tws->reqMktDepth(@parms);
$tws->reqNewsBulletins(@parms);
$tws->reqOpenOrders(@parms);
$tws->reqScannerParameters(@parms);
$tws->reqScannerSubscription(@parms);
$tws->requestFA(@parms);
$tws->setServerLogLevel(@parms);

<<less
Download (0.022MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1051 downloads
Finance::QuoteHist::Generic 1.09

Finance::QuoteHist::Generic 1.09


Finance::QuoteHist::Generic is a base class for retrieving historical stock quotes. more>>
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.

<<less
Download (0.028MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1039 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
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
KBBTray 0.07

KBBTray 0.07


KBBTray is a KDE task bar tray applicaton that monitors a Big Brother page and shows its status. more>>
KBBTray is a KDE task bar tray applicaton that monitors a Big Brother page and shows its status.
You need Python, PyQt, and PyKDE.
After you have the required libs installed
To install be root and run:
sh install.sh
yes I need a better install method
To run the application as any user do:
/usr/local/bin/kbbtray.py
If /usr/local/bin is in your path then just
kbbtray.py
will work
Enhancements:
- This release uses PNG instead of animated MNG files for certain types of status because of a memory leak somewhere in PyQt, QMovie, and libmng.
<<less
Download (0.17MB)
Added: 2005-11-09 License: GPL (GNU General Public License) Price:
1444 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5