The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Games::Bettor::Martingale - A class that holds the methods for a martingale bettor

VERSION

Version 1.0

SYNOPSIS

    use Games::Bettor::Martingale;

    $bettor = Games::Bettor::Martingale->new( amount => 1 );
    $bettor = Games::Bettor::Martingale->new( percent => 10 );

DESCRIPTION

This method represents a bettor who always bets using the Martingale system. This bettor will always bet the same amount on the first bet and on any subsequent bet where he has won the previous trial. If he has lost the previous trial, he will double his last bet until he wins.

METHODS

new

  $method = Games::Bettor::Martingale->new( amount => 1 );
  $method = Games::Bettor::Martingale->new( percent => 10 );
  
  amount: The amount of bet on each round in absolute betting units.
  percent: The amount fo bet on each round in percentage of bankroll.

name

  $method_name = $method->name();
  
  Returns the name of the betting method.

get_bet

  $amount = $method->get_bet( bankroll => $bankroll );
  
  Returns the amount to bet for this trial.  The bankroll argument is the amount of the bankroll currently for 
  the Bettor object using this method.

AUTHOR

Troy Denkinger, <tdenkinger at gmail.com>

BUGS

Please report any bugs or feature requests to bug-games-bettor at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Games-Bettor. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Games::Bettor::Martingale

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2006 Troy Denkinger, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.