Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

binary-com/perl-FIX-Parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

perl-FIX-Parser

A module to parse FIX market data. Currently supports FIX 4.4.

Installation

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install

Example

use FIX::Parser::FIX44;

my $parser = FIX::Parser::FIX44->new;

my @msgs = $parser->add($fix_msg);

for(@msgs) {
	print "Symbol: ".$_->{symbol}."\n";
        
	print "Bid: ".$_->{bid}."\n";
	print "Ask: ".$_->{ask}."\n";
	print "Datetime: ".$_->{datetime}."\n";
}

About

A module to parse FIX market data.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages