Algorithm-Kelly

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

{
   "abstract" : "calculates the fraction of a bankroll to bet using the Kelly formula",
   "author" : [
      "David Farrell <dfarrell@cpan.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Zilla version 5.033, CPAN::Meta::Converter version 2.143240",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",

META.yml  view on Meta::CPAN

---
abstract: 'calculates the fraction of a bankroll to bet using the Kelly formula'
author:
  - 'David Farrell <dfarrell@cpan.org>'
build_requires:
  Test::Fatal: '0'
  Test::More: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.033, CPAN::Meta::Converter version 2.143240'
license: perl

Makefile.PL  view on Meta::CPAN

# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.033.
use strict;
use warnings;



use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "calculates the fraction of a bankroll to bet using the Kelly formula",
  "AUTHOR" => "David Farrell <dfarrell\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Algorithm-Kelly",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Algorithm::Kelly",
  "PREREQ_PM" => {
    "Exporter" => 0,

lib/Algorithm/Kelly.pm  view on Meta::CPAN

use strict;
use warnings;
package Algorithm::Kelly;
$Algorithm::Kelly::VERSION = '0.03';
# ABSTRACT: calculates the fraction of a bankroll to bet using the Kelly formula

BEGIN
{
  require Exporter;
  use base 'Exporter';
  our @EXPORT = 'optimal_f';
}



lib/Algorithm/Kelly.pm  view on Meta::CPAN

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Algorithm::Kelly - calculates the fraction of a bankroll to bet using the Kelly formula

=head1 VERSION

version 0.03

=head1 SYNOPSIS

    use Algorithm::Kelly;
    use feature 'say';



( run in 1.912 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )