MaxiMan
Newbie
Offline
Activity: 85
Merit: 0
|
 |
January 09, 2018, 04:51:50 PM |
|
I posted about mining with 1 gpu and gaming/browsing with other on one pc at the same time couple days ago. But miners' windows keep popping up stealing focus. If anyone is interested here is my solution: just add another Windows user for mining. Launch Nemosminer in it and switch to your usual user.
thanks What i need is a command to make it run on background
|
|
|
|
HardBlockMiner
Jr. Member
Offline
Activity: 224
Merit: 2
|
 |
January 09, 2018, 04:59:25 PM |
|
Here is the update from the current vs 24hr avg.... Last day or two has caused the 'current profit' to swing a little higher on avg between the two rigs at day 12.5. I use a 900 interval to prevent constant switching. I still like the 24hr more since it doesn't switch so much.
(8.5 day test) - 6x1070ti Miner1 = $44.40/day (ahashpool) Miner2 = $44.65/day (ahashpool24hr)
12.5 day test (btc 14743) - 6x1070ti Miner1 = $41.94/day (ahashpool) Miner2 = $40.59/day (ahashpool24hr)
I appreciate you doing this. Has anyone tested the difference between zpool and ahashpool since the zpool update? I started yesterday and after about 16 hours here's what I came up with. Miner 1 - 2x1070 - .00057904 btc - ahashpool Miner 2 - 2x1070 - .00031789 btc - zpool These are the total earned figures not the balance which has gone through the exchange. I was mining zpool after the update for payout in altcoins and I noticed a huge drop in my payments so I decided to set up as two rigs to see what the real difference is. I'll keep this going until Monday to see what's going on but right now ahashpool is showing 45% higher returns that zpool which is a crazy difference.
|
|
|
|
millsys
Member

Offline
Activity: 112
Merit: 10
|
 |
January 09, 2018, 05:09:59 PM |
|
Zpool has ALWAYS had lower revenue, myself and Nemos both use ahashpool because it has the highest payouts Here is TODAY's analysis between ahashpool and zpool for a single 1070!! https://imgur.com/a/84WNa
|
FARM #1 : 60 GPUs spread across 6 rigs (1080ti/1080/1070ti/1070) FARM #2 : 72 GPUs spread across 12 rigs (1070ti x 6) FARM #3 : 16 GPUs spread across 4 rigs (1080ti x 4) AntMiner S9 13.5TH / AntMiner L3+ x 2
|
|
|
HardBlockMiner
Jr. Member
Offline
Activity: 224
Merit: 2
|
 |
January 09, 2018, 05:25:15 PM |
|
Zpool has ALWAYS had lower revenue, myself and Nemos both use ahashpool because it has the highest payouts Here is TODAY's analysis between ahashpool and zpool for a single 1070!! https://imgur.com/a/84WNaIt's just crazy that it's all the same coins with all the same algos and one can be 45% higher on btc payout than the other. In theory zpool should be finding more blocks and getting better payouts but I can see my earned curve actually go down when they make the exchanges like this: https://imgur.com/rws0xRL as opposed to ahashpool which is more linear like this: https://imgur.com/KaNaZr8 I actually switched from linda to btc payout yesterday with all 4 1070's and let it go for a few hours until I could do the math and then switched 2 over to ahashpool which is why the zpool graph is so crazy to start.
|
|
|
|
Finnedsgang
Newbie
Offline
Activity: 16
Merit: 0
|
 |
January 09, 2018, 05:40:01 PM |
|
If you only have 1 gpu you should use the following in your command line
-SelGPUDSTM '0' -SelGPUCC '0'
Thank you! It worked! 😊what a Niub Do you think it’s better to select just the algos with a good profit? Or it’s better to mine everything?
|
|
|
|
Calatravo
Newbie
Offline
Activity: 65
Merit: 0
|
 |
January 09, 2018, 05:59:21 PM |
|
hi guys how do u max your profit with nemosminer? im on ahashpool with a 1080 ti and nemosminer says me i'll get around 17€ a day with phi atm. what i actual get is about 9€. i have set interval to 900 with all algos. any advice to max profit?
|
|
|
|
mullen1200
Newbie
Offline
Activity: 11
Merit: 0
|
 |
January 09, 2018, 06:12:03 PM |
|
Be careful with this. Don't call this API too often. Probably once, twice per hour. It might get your wallet banned if you call it too many times. When I made http://my pools.you-stupid-woman.com tool I remembered a pool owner saying that users calling the wallet API was taking a lot of bandwidth, even more than just the algo API... Small fix then, 3 parts in main file and the API is read once every 30 minutes old: $DecayBase = 1-0.1 #decimal percentage
$ActiveMinerPrograms = @() new: $DecayBase = 1-0.1 #decimal percentage
$StopWatch = New-Object -TypeName System.Diagnostics.Stopwatch $stopwatch.Start() $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $usd = $rates.$Currency $money= $Balance.balance*$usd
$ActiveMinerPrograms = @() old: $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $usd = $rates.$Currency $money= $Balance.balance*$usd
#Display mining information new: # Once every 1800sec /30min/ get Site Balance $tMs = $Stopwatch.ElapsedMilliseconds if ($tMs -gt 1800000) { $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $stopwatch.Restart() #restart 1800sec countdown $usd = $rates.$Currency $money= $Balance.balance*$usd }
#Display mining information and at the end old: #Stop the log Stop-Transcript new: #Stop the log $stopwatch.stop() Stop-Transcript PS: Not sure if thats right - but how do you stop Nemos? When I stop it with ctrl-c or clicking X, last working miner is not stopped/killed Perhaps @start the script should try to kill all possible/known miner programs? I got an answer from Ahashpool on whether this is safe and if they ban users that call the API too much. It is ok to call it once every 10 minutes. We only update the stats every 10 minutes anyway, so calling it more frequent would not give any benefit. Because we have well over 5000 users now, anything more frequent would amount to DDoS attack on the server and everyone would suffer I posted about mining with 1 gpu and gaming/browsing with other on one pc at the same time couple days ago. But miners' windows keep popping up stealing focus. If anyone is interested here is my solution: just add another Windows user for mining. Launch Nemosminer in it and switch to your usual user.
thanks What i need is a command to make it run on background No you dont. I did just this, and it still steals windows focus, (ie I have to click back into PUBG game when a new miner opens, even though I never see it, my mouselooks is broken until I click). the windows user trick was AWESOME. I thought I wasnt going to find a solution. is it possible to run nemos miner twice one instance for my 2 1080 ti and one for my 2 1070? because of different benchmarks/profits..
thank you
Yep, just make completely separate folders for the nemosminers. So you will have 2 nemosminer folders (just rename each one based on which card it runs). hi guys how do u max your profit with nemosminer? im on ahashpool with a 1080 ti and nemosminer says me i'll get around 17€ a day with phi atm. what i actual get is about 9€. i have set interval to 900 with all algos. any advice to max profit?
If you make 9C a day then you are doing very well. It will never be 15+ dollars a day. Despite what its current estimates are.
|
|
|
|
routeruser77
Newbie
Offline
Activity: 8
Merit: 0
|
 |
January 09, 2018, 06:39:31 PM |
|
So Zpool just tweeted this: More Due to lack of interest and hash power, we've dropped the $XZC #lyra2z pool. #zpool #multipool #bitcoin #litecoin #altcoin #crypto
Does that mean I need to remove those from my startzpool script or ?
Thanks so much,
|
|
|
|
HardBlockMiner
Jr. Member
Offline
Activity: 224
Merit: 2
|
 |
January 09, 2018, 06:39:47 PM |
|
Be careful with this. Don't call this API too often. Probably once, twice per hour. It might get your wallet banned if you call it too many times. When I made http://my pools.you-stupid-woman.com tool I remembered a pool owner saying that users calling the wallet API was taking a lot of bandwidth, even more than just the algo API... Small fix then, 3 parts in main file and the API is read once every 30 minutes old: $DecayBase = 1-0.1 #decimal percentage
$ActiveMinerPrograms = @() new: $DecayBase = 1-0.1 #decimal percentage
$StopWatch = New-Object -TypeName System.Diagnostics.Stopwatch $stopwatch.Start() $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $usd = $rates.$Currency $money= $Balance.balance*$usd
$ActiveMinerPrograms = @() old: $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $usd = $rates.$Currency $money= $Balance.balance*$usd
#Display mining information new: # Once every 1800sec /30min/ get Site Balance $tMs = $Stopwatch.ElapsedMilliseconds if ($tMs -gt 1800000) { $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $stopwatch.Restart() #restart 1800sec countdown $usd = $rates.$Currency $money= $Balance.balance*$usd }
#Display mining information and at the end old: #Stop the log Stop-Transcript new: #Stop the log $stopwatch.stop() Stop-Transcript PS: Not sure if thats right - but how do you stop Nemos? When I stop it with ctrl-c or clicking X, last working miner is not stopped/killed Perhaps @start the script should try to kill all possible/known miner programs? I got an answer from Ahashpool on whether this is safe and if they ban users that call the API too much. It is ok to call it once every 10 minutes. We only update the stats every 10 minutes anyway, so calling it more frequent would not give any benefit. Because we have well over 5000 users now, anything more frequent would amount to DDoS attack on the server and everyone would suffer Doesn't changing the interval in your start.bat to 600 accomplish the same thing?
|
|
|
|
HardBlockMiner
Jr. Member
Offline
Activity: 224
Merit: 2
|
 |
January 09, 2018, 07:10:08 PM |
|
Be careful with this. Don't call this API too often. Probably once, twice per hour. It might get your wallet banned if you call it too many times. When I made http://my pools.you-stupid-woman.com tool I remembered a pool owner saying that users calling the wallet API was taking a lot of bandwidth, even more than just the algo API... Small fix then, 3 parts in main file and the API is read once every 30 minutes old: $DecayBase = 1-0.1 #decimal percentage
$ActiveMinerPrograms = @() new: $DecayBase = 1-0.1 #decimal percentage
$StopWatch = New-Object -TypeName System.Diagnostics.Stopwatch $stopwatch.Start() $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $usd = $rates.$Currency $money= $Balance.balance*$usd
$ActiveMinerPrograms = @() old: $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $usd = $rates.$Currency $money= $Balance.balance*$usd
#Display mining information new: # Once every 1800sec /30min/ get Site Balance $tMs = $Stopwatch.ElapsedMilliseconds if ($tMs -gt 1800000) { $Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe" $stopwatch.Restart() #restart 1800sec countdown $usd = $rates.$Currency $money= $Balance.balance*$usd }
#Display mining information and at the end old: #Stop the log Stop-Transcript new: #Stop the log $stopwatch.stop() Stop-Transcript PS: Not sure if thats right - but how do you stop Nemos? When I stop it with ctrl-c or clicking X, last working miner is not stopped/killed Perhaps @start the script should try to kill all possible/known miner programs? I got an answer from Ahashpool on whether this is safe and if they ban users that call the API too much. It is ok to call it once every 10 minutes. We only update the stats every 10 minutes anyway, so calling it more frequent would not give any benefit. Because we have well over 5000 users now, anything more frequent would amount to DDoS attack on the server and everyone would suffer Doesn't changing the interval in your start.bat to 600 accomplish the same thing? I just tested it and unless the program queries the API outside of when it notifies you that it's doing it changing your interval to 600 makes it so you only do it every 10 minutes.
|
|
|
|
Bit2017User
Jr. Member
Offline
Activity: 76
Merit: 1
|
 |
January 09, 2018, 07:21:22 PM |
|
Strange Error Stratum time is at least 86s in the future Today with ccminerklaust and neoscrypt.
[2018-01-09 20:11:11] neoscrypt.mine.ahashpool.com:4233 neoscrypt block 1611040 [2018-01-09 20:11:11] GPU #0: Gigabyte GTX 1050 Ti, 408.06 kH/s [2018-01-09 20:11:12] neoscrypt.mine.ahashpool.com:4233 neoscrypt block 1611041 [2018-01-09 20:11:12] GPU #0: Gigabyte GTX 1050 Ti, 415.68 kH/s [2018-01-09 20:11:13] stratum time is at least 33s in the future [2018-01-09 20:11:13] neoscrypt.mine.ahashpool.com:4233 neoscrypt block 1611042 [2018-01-09 20:11:13] GPU #0: Gigabyte GTX 1050 Ti, 402.16 kH/s [2018-01-09 20:11:14] stratum time is at least 86s in the future [2018-01-09 20:11:14] neoscrypt.mine.ahashpool.com:4233 neoscrypt block 1611043 [2018-01-09 20:11:14] GPU #0: Gigabyte GTX 1050 Ti, 410.30 kH/s [2018-01-09 20:11:39] GPU #0: Gigabyte GTX 1050 Ti, 410.96 kH/s
|
|
|
|
smalltimeminer
Newbie
Offline
Activity: 2
Merit: 0
|
 |
January 09, 2018, 09:49:46 PM |
|
I recently started using Nemos on my 1060 6gb x 4 mining rig. I was wondering if anyone has the ability to auto switch GPU overclock profiles when nemos switches script? Any help would be greatly appreciated.
Thank you
|
|
|
|
noureldinmajed
Newbie
Offline
Activity: 7
Merit: 0
|
 |
January 10, 2018, 12:22:28 AM |
|
Hello,Coinbase website now requires a captcha to be accessed so the miner can't get the BTC rate so i don't think it can select the best profitable algo to mine if you could please fix that or change the BTC rate source.
Thanks.
|
|
|
|
kalud
Newbie
Offline
Activity: 7
Merit: 0
|
 |
January 10, 2018, 12:27:26 AM |
|
Hello,Coinbase website now requires a captcha to be accessed so the miner can't get the BTC rate so i don't think it can select the best profitable algo to mine if you could please fix that or change the BTC rate source.
Thanks.
Still works fine on my end
|
|
|
|
airwalker_
Newbie
Offline
Activity: 18
Merit: 0
|
 |
January 10, 2018, 01:41:52 AM |
|
Same here.
|
|
|
|
fangs87
Newbie
Offline
Activity: 6
Merit: 0
|
 |
January 10, 2018, 02:32:33 AM |
|
Tried looking around here have 2 questions: is there a way to configure max temps for the gpu's? - as it stands it runs a little hot is there away to force a new benchmark, or does it do it automatically after a while? - during the initial i started getting application blocked from gpu so I wanted to see if a restart and re-benchmark would help thanks 
|
|
|
|
primo1983
Newbie
Offline
Activity: 72
Merit: 0
|
 |
January 10, 2018, 03:16:04 AM |
|
this in the README.md file
This file with that name edit: start.bat 5.run start.bat
no longer exists in the folder now the name is startzpool.bat
|
|
|
|
car1999
|
 |
January 10, 2018, 06:21:35 AM |
|
Hello,Coinbase website now requires a captcha to be accessed so the miner can't get the BTC rate so i don't think it can select the best profitable algo to mine if you could please fix that or change the BTC rate source.
Thanks.
same issue, it hangs at calling coinbase api.
|
|
|
|
jungleRogi
Newbie
Offline
Activity: 3
Merit: 0
|
 |
January 10, 2018, 07:34:56 AM Last edit: January 10, 2018, 08:10:47 AM by jungleRogi |
|
Hi All
I got the following problem,what could be the problem?
Status: Failed
Speed Active Launched Command ----- ------ -------- ------- 0,00 PH/s 00 Days 00 Hours 00 Minutes Once Bin\NVIDIA-CcminerKlaust\ccminer.exe -a neoscrypt -o stratum+tcp://neosc rypt.mine.zpool.ca:4233 -u 16smbET6YpCn4gKoV6oJEtZyezkfiT3Ygo -p ID=GTX1 0602,c=BTC -d 0,1,2,3,4,5 Seems that the following miners won't start: NVIDIA-Alexis78cuda9 NVIDIA-CcminerKlaust
|
|
|
|
ALTCOlNMlNER
Newbie
Offline
Activity: 28
Merit: 0
|
 |
January 10, 2018, 09:28:32 AM |
|
Can anyone of you tell me, why nemosminer shows me much much more BTC/Day then I really get? For example: The miner shows 44,604 USD/Day at moment and in the last 24h it was around 46 USD/Day. But on ahashpool, I have an income of only 32 USD for the last 24h. Is the calculation that worse or is ahashpool a scam-pool or what is going on? Anything that I dont understand?
|
|
|
|
|