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

NAME

Finance::btce - Perl extension for interfacing with the BTC-e bitcoin exchange

Version

Version 0.01

SYNOPSIS

  use Finance::btce;

  my $btce = Finance::btce->new({key => 'key', secret => 'secret',});

  #public API calls
  
  #Prices for Bitcoin to USD
  my %price = %{BTCtoUSD()};

  #Prices for Litecoin to Bitcoin
  my %price = %{LTCtoBTC()};
  
  #Prices for Litecoin to USD
  my %price = %{LTCtoUSD()};

  #Authenticated API Calls

  my %accountinfo = %{$btce->getInfo()};

EXPORT

None by default.

BUGS

Please report all bug and feature requests through github at https://github.com/benmeyer50/Finance-btce/issues

AUTHOR

Benjamin Meyer, <bmeyer@benjamindmeyer.com>

COPYRIGHT AND LICENSE

Copyright (C) 2013 by Benjamin Meyer

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.