Author

Topic: [NemosMiner] multi algo profit switching NVIDIA/CPU miner - page 109. (Read 289447 times)

newbie
Activity: 3
Merit: 0
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
full member
Activity: 350
Merit: 100
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.
newbie
Activity: 72
Merit: 0
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

newbie
Activity: 6
Merit: 0
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  Smiley
newbie
Activity: 18
Merit: 0
Same here.
newbie
Activity: 7
Merit: 0
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
newbie
Activity: 7
Merit: 0
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.
newbie
Activity: 2
Merit: 0
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
jr. member
Activity: 76
Merit: 1
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
jr. member
Activity: 224
Merit: 2

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:
Code:
$DecayBase = 1-0.1 #decimal percentage

$ActiveMinerPrograms = @()

new:
Code:
$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:
Code:
$Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe"
$usd = $rates.$Currency
$money= $Balance.balance*$usd

#Display mining information
new:
Code:
# 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:
Code:
#Stop the log
Stop-Transcript

new:
Code:
#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.
jr. member
Activity: 224
Merit: 2

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:
Code:
$DecayBase = 1-0.1 #decimal percentage

$ActiveMinerPrograms = @()

new:
Code:
$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:
Code:
$Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe"
$usd = $rates.$Currency
$money= $Balance.balance*$usd

#Display mining information
new:
Code:
# 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:
Code:
#Stop the log
Stop-Transcript

new:
Code:
#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?
newbie
Activity: 8
Merit: 0
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,
newbie
Activity: 11
Merit: 0

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:
Code:
$DecayBase = 1-0.1 #decimal percentage

$ActiveMinerPrograms = @()

new:
Code:
$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:
Code:
$Balance = Invoke-RestMethod "https://www.ahashpool.com/api/wallet/?address=1N3dUzc2e6LGBNbkieMYX4a8EAbmq5nJUe"
$usd = $rates.$Currency
$money= $Balance.balance*$usd

#Display mining information
new:
Code:
# 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:
Code:
#Stop the log
Stop-Transcript

new:
Code:
#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.

newbie
Activity: 65
Merit: 0
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?
newbie
Activity: 16
Merit: 0
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?
jr. member
Activity: 224
Merit: 2
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


It'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.
member
Activity: 112
Merit: 10
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

jr. member
Activity: 224
Merit: 2
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.  
newbie
Activity: 85
Merit: 0
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
newbie
Activity: 13
Merit: 1
Hello everyone, I have one problem over a few days - on my 4x1070TI rig when I'm mining one of this algos - nist5,x17,neoscrypt - when nemosminer checks profitability and best algo is that algo which is at this time already mining, then miner is shutting down and till next profitability check nothing is mined. For example - im mining x17 with 120 interwal - first check miner starts, second check (x17 is still best profitability) miner is closed - third check miner starts - and so on. So I'm always half of the time not mining. It's frustrating - now i've set interval to over a day and it looks good but it only mining one algo for whole day :/
On second rig everything is ok
On this rig also everything was ok till few days back.
Anyone has any idea what that could be?
Jump to: