Hey guys!
I've been busy with writing a profit-switcher for ccminer/cudaminer, in C#, will be opensourced, and I've just finished the part where I could read from different web API's for info like difficulty, blockreward and exchange prices.
I set up a test with
the hashrates of a GTX750TI as used hashrates, and it calculates it nicely for most algo's. Scrypt(-n), keccak and X11 are the same on other profit calculators like coinwarz.
But Quark (like classic Quark and Securecoin) end up way too low. My own experience already showed me that Quark is a lot more profitable, and so says
Coinwarz. Hell, even Securecoin is on top on Coinwarz, but at the bottom on my list:
http://pastebin.com/RMBUFNZNCode used:
public double CalcBtcPerDay(double hashRateKh)
{
CoinsPerDay = BlockReward/(Difficulty*(Math.Pow(2,32))/(hashRateKh*1000)/3600/24);
return BtcPerDay = CoinsPerDay*BestExchange.BtcPrice;
}
Anyone care to take a look at this and tell me what I'm doing wrong? I'm mining ATM at a SRC pool, and after half an hour I'm already having as much unconfirmed coins as my calc said I would have over a day
500TAC (Talkcoin, 0.015BTC) bounty for the one who solves this riddle ^^"