Bitcoin Forum

Economy => Services => Topic started by: bassguitarman on January 01, 2015, 06:19:26 AM



Title: looking for a programmer who can script
Post by: bassguitarman on January 01, 2015, 06:19:26 AM
I need a script/cron job that will calculate a "profitability quotient" based off of coin price (from bittrex api), block size, and current difficulty.

If you can do this i will pay fairly


Title: Re: looking for a programmer who can script
Post by: sidhujag on January 01, 2015, 06:26:17 AM
I need a script/cron job that will calculate a "profitability quotient" based off of coin price (from bittrex api), block size, and current difficulty.

If you can do this i will pay fairly
Know the formula? Its about 2 days work


Title: Re: looking for a programmer who can script
Post by: bassguitarman on January 01, 2015, 06:33:36 AM
I need a script/cron job that will calculate a "profitability quotient" based off of coin price (from bittrex api), block size, and current difficulty.

If you can do this i will pay fairly
Know the formula? Its about 2 days work

http://bitcoin.stackexchange.com/questions/8568/equation-for-mining-profit

is a general idea

$hashTime = ((float) $difficulty) * (pow(2.0, 32) / ($hashRate * 1000.0)) ;
$blocksPerDay =  (24.0 * 3600.0) / $hashTime ;
$coinsPerDay = $blockCoins * $blocksPerDay;
$revenuePerDay = $coinsPerDay * $conversionRate;