Author

Topic: [ANN] NiceHash.com - sell & buy hash rate cloud mining service / multipool - page 242. (Read 794394 times)

sr. member
Activity: 252
Merit: 250
Is anyone else having issues connecting to the Nicehash pool to mine SHA256? My Antminers just say the pool is Dead, my settings all appear to be correct and it worked a few days ago just fine. Now that the Daily price has gone up I wanted to switch but I cant get back on now???
legendary
Activity: 1974
Merit: 1003
I have my p=0.05 for west hash...why is that pool alive for scrypt? It no where near the right price? Or did I mess something up?

You probably meant to set p=0.5

Scrypt is currently paying 0.3561

wich is the lowest rate since im on NH for months because of their great idea called westhash ... they built their own competitor
legendary
Activity: 3654
Merit: 8909
https://bpip.org
I have my p=0.05 for west hash...why is that pool alive for scrypt? It no where near the right price? Or did I mess something up?

You probably meant to set p=0.5

Scrypt is currently paying 0.3561
hero member
Activity: 784
Merit: 504
Dream become broken often
I have my p=0.05 for west hash...why is that pool alive for scrypt? It no where near the right price? Or did I mess something up?
sr. member
Activity: 423
Merit: 250
There really needs to be more crossover between nicehash and westhash pools. Over the last week or so there has been one buyer running a script or spending a butt ton of time pushing everyone out of the x15 market simply by constantly changing their order and out bidding other people. Since there is so few miners on westhash, orders below them never get filled and despite their order having relatively little amount of bitcoin (to reduce cancellation fees) and ghash (so they only take the miners and not extra by having the pool auto-switch to them as most profitable) they can control the market. As soon as the other order leaves the market, they drop theirs down again. It starts all over again.

I assume it's automated as it seems to be going pretty much steady as long as I've watched the x15 market. This isn't good for nicehash, miners, or buyers.

I understand the idea of 'efficiency' by separating geographic locations, but I've been buying on nicehash using NA pools and it doesn't make THAT much of a difference. Since Nicehash is cloud based, it's entirely possible to sort miners based on their geographic location and appropriate them for a pool close to their location completely transparently to the buyers and the miners (such as a quick ping to the miner and the pool from two or three different geographic locations would locate the address approximately or with a IP lookup). Obviously there would be some cross-over, but since prices are already the same for both nicehash and westhash, it doesn't matter.

Whoever it is, is devastating the market though and solely controlling it. That obviously also influences prices on Nicehash.
newbie
Activity: 35
Merit: 0
feel free to edit the above code for your own purpose.
have fun , guys !
newbie
Activity: 35
Merit: 0
in the above script .
1.conf to 7.conf are needed in the same folder.

this is the script to create the conf files if you have a sgminer.conf for multi-algo already in the sgminer folder
Quote
$ccc = new-object system.net.webclient
$ddd = $ccc.downloadstring("c:\users\admin\documents\sgminer.conf")
[System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions") >null
$sgminer = New-Object System.Web.Script.Serialization.JavaScriptSerializer
$poolglobal = $sgminer.DeserializeObject($ddd)
$pools = $poolglobal.pools
   #Global Settings Start
  $failoveronly = $poolglobal."failover-only"
  $devices = $poolglobal.devices
  $lookupgap = $poolglobal."lookup-gap"
  $intensity = $poolglobal.intensity
  $worksize = $poolglobal.worksize
  $tempcutoff = $poolglobal."temp-cutoff"
  $tempoverheat = $poolglobal."temp-overheat"
  $gpufan = $poolglobal."gpu-fan"
  $temptarget = $poolglobal."temp-target"
  $gpumemdiff = $poolglobal."gpu-memdiff"
  $shares = $poolglobal.shares
  $kernelpath = $poolglobal."kernel-path"
  $autofan = $poolglobal."auto-fan"
  $expiry =  $poolglobal.expiry
  $failoverswitchdelay = $poolglobal."failover-switch-delay"
  $gpudyninterval = $poolglobal."gpu-dyninterval"
  $gpuplatform = $poolglobal."gpu-platform"
  $hamsiexpandbig = $poolglobal."hamsi-expand-big"
  $log = $poolglobal.log
  $nopooldisable = $poolglobal."no-pool-disable"
  $noclientreconnect =  $poolglobal."no-client-reconnect"
  $queue = $poolglobal.queue
  $scantime = $poolglobal."scan-time"
  $tcpkeepalive = $poolglobal."tcp-keepalive"
  $temphysteresis = $poolglobal."temp-hysteresis"
  #Global Settings End
foreach ($pool in $pools) {
 #Pool Spec starts
    $name = $pool.name |out-string
     #$name = $name -replace [Environment]::NewLine
    $url = $pool.url |out-string
     #$url = $url -replace [Environment]::NewLine
    $user = $pool.user |out-string
     #$user = $user -replace [Environment]::NewLine
    $pass = $pool.pass |out-string
     #$pass = $pass -replace [Environment]::NewLine
    $nfactor = $pool.nfactor |out-string
     #$nfactor = $nfactor -replace [Environment]::NewLine
    $algorithm = $pool.algorithm |out-string
     #$algorithm = $algorithm -replace [Environment]::NewLine
    $threadconcurrency = $pool."thread-concurrency" |out-string
     #$threadconcurrency = $threadconcurrency -replace [Environment]::NewLine
    $intensity = $pool.intensity |out-string
     #$intensity = $intensity -replace [Environment]::NewLine
    #pool spec ends
    if($pool.url -like "*nicehash*" -and $pool.url -like "*336*"){
    $conf1 = @"
    {
  "pools": [
    {
      "name": "$name",
      "url": "$url",
      "user": "$user",
      "pass": "$pass",
      "nfactor" : "$nfactor",
      "algorithm": "$algorithm",
      "thread-concurrency": "$threadconcurrency",
      "intensity": "$intensity"

    }
  ],
 
  "failover-only": $failoveronly,
  "devices": "$devices",
  "lookup-gap": "$lookupgap",
  "intensity": "$intensity",
  "worksize": "$worksize",
  "temp-cutoff": "$tempcutoff",
  "temp-overheat": "$tempoverheat",
   "gpu-fan" : "$gpufan",
  "temp-target": "$temptarget",
  "gpu-memdiff": "$gpumemdiff",
  "shares": "$shares",
  "kernel-path": "$kernelpath",
  "auto-fan": $autofan,
  "expiry": "$expiry",
  "failover-switch-delay": "$failoverswitchdelay",
  "gpu-dyninterval": "$gpudyninterval",
  "gpu-platform": "$gpuplatform",
  "hamsi-expand-big": "$hamsiexpandbig",
  "log": "$log",
  "no-pool-disable": $nopooldisable,
  "no-client-reconnect": $noclientreconnect,
  "queue": "$queue",
  "scan-time": "$scantime",
  "tcp-keepalive": "$tcpkeepalive",
  "temp-hysteresis": "$temphysteresis"
}
"@
 $conf1 =  $conf1 -replace "4336","3336" -replace '"nfactor" : "",' -replace '"nfactor" : ""' -replace '"thread-concurrency": "",' -replace '"thread-concurrency": ""' -replace  '"intensity": "",' -replace  '"intensity": ""' -replace [Environment]::NewLine -replace " " -replace ',}','}' 
 $conf1 > 1.conf       }
elseif($pool.url -like "*nicehash*" -and $pool.url -like "*337*"){
    $conf2 = @"
    {
  "pools": [
    {
      "name": "$name",
      "url": "$url",
      "user": "$user",
      "pass": "$pass",
      "nfactor" : "$nfactor",
      "algorithm": "$algorithm",
      "thread-concurrency": "$threadconcurrency",
      "intensity": "$intensity"

    }
  ],
 
  "failover-only": $failoveronly,
  "devices": "$devices",
  "lookup-gap": "$lookupgap",
  "intensity": "$intensity",
  "worksize": "$worksize",
  "temp-cutoff": "$tempcutoff",
  "temp-overheat": "$tempoverheat",
   "gpu-fan" : "$gpufan",
  "temp-target": "$temptarget",
  "gpu-memdiff": "$gpumemdiff",
  "shares": "$shares",
  "kernel-path": "$kernelpath",
  "auto-fan": $autofan,
  "expiry": "$expiry",
  "failover-switch-delay": "$failoverswitchdelay",
  "gpu-dyninterval": "$gpudyninterval",
  "gpu-platform": "$gpuplatform",
  "hamsi-expand-big": "$hamsiexpandbig",
  "log": "$log",
  "no-pool-disable": $nopooldisable,
  "no-client-reconnect": $noclientreconnect,
  "queue": "$queue",
  "scan-time": "$scantime",
  "tcp-keepalive": "$tcpkeepalive",
  "temp-hysteresis": "$temphysteresis"
}
"@
  $conf2 = $conf2 -replace "4337","3337" -replace '"nfactor" : "",' -replace '"nfactor" : ""' -replace '"thread-concurrency": "",' -replace '"thread-concurrency": ""' -replace  '"intensity": "",' -replace  '"intensity": ""' -replace [Environment]::NewLine -replace " " -replace ',}','}' 
   
   $conf2 > 2.conf
    }
elseif($pool.url -like "*nicehash*" -and $pool.url -like "*338*"){
    $conf3 = @"
    {
  "pools": [
    {
      "name": "$name",
      "url": "$url",
      "user": "$user",
      "pass": "$pass",
      "nfactor" : "$nfactor",
      "algorithm": "$algorithm",
      "thread-concurrency": "$threadconcurrency",
      "intensity": "$intensity"

    }
  ],
 
  "failover-only": $failoveronly,
  "devices": "$devices",
  "lookup-gap": "$lookupgap",
  "intensity": "$intensity",
  "worksize": "$worksize",
  "temp-cutoff": "$tempcutoff",
  "temp-overheat": "$tempoverheat",
   "gpu-fan" : "$gpufan",
  "temp-target": "$temptarget",
  "gpu-memdiff": "$gpumemdiff",
  "shares": "$shares",
  "kernel-path": "$kernelpath",
  "auto-fan": $autofan,
  "expiry": "$expiry",
  "failover-switch-delay": "$failoverswitchdelay",
  "gpu-dyninterval": "$gpudyninterval",
  "gpu-platform": "$gpuplatform",
  "hamsi-expand-big": "$hamsiexpandbig",
  "log": "$log",
  "no-pool-disable": $nopooldisable,
  "no-client-reconnect": $noclientreconnect,
  "queue": "$queue",
  "scan-time": "$scantime",
  "tcp-keepalive": "$tcpkeepalive",
  "temp-hysteresis": "$temphysteresis"
}
"@
 $conf3 = $conf3 -replace "4338","3338" -replace '"nfactor" : "",' -replace '"nfactor" : ""' -replace '"thread-concurrency": "",' -replace '"thread-concurrency": ""' -replace  '"intensity": "",' -replace  '"intensity": ""' -replace [Environment]::NewLine -replace " " -replace ',}','}' 
   
   $conf3 > 3.conf 
    }
elseif($pool.url -like "*nicehash*" -and $pool.url -like "*339*"){
    $conf4 = @"
    {
  "pools": [
    {
      "name": "$name",
      "url": "$url",
      "user": "$user",
      "pass": "$pass",
      "nfactor" : "$nfactor",
      "algorithm": "$algorithm",
      "thread-concurrency": "$threadconcurrency",
      "intensity": "$intensity"

    }
  ],
 
  "failover-only": $failoveronly,
  "devices": "$devices",
  "lookup-gap": "$lookupgap",
  "intensity": "$intensity",
  "worksize": "$worksize",
  "temp-cutoff": "$tempcutoff",
  "temp-overheat": "$tempoverheat",
   "gpu-fan" : "$gpufan",
  "temp-target": "$temptarget",
  "gpu-memdiff": "$gpumemdiff",
  "shares": "$shares",
  "kernel-path": "$kernelpath",
  "auto-fan": $autofan,
  "expiry": "$expiry",
  "failover-switch-delay": "$failoverswitchdelay",
  "gpu-dyninterval": "$gpudyninterval",
  "gpu-platform": "$gpuplatform",
  "hamsi-expand-big": "$hamsiexpandbig",
  "log": "$log",
  "no-pool-disable": $nopooldisable,
  "no-client-reconnect": $noclientreconnect,
  "queue": "$queue",
  "scan-time": "$scantime",
  "tcp-keepalive": "$tcpkeepalive",
  "temp-hysteresis": "$temphysteresis"
}
"@
 $conf4 =  $conf4 -replace "4339","3339" -replace '"nfactor" : "",' -replace '"nfactor" : ""' -replace '"thread-concurrency": "",' -replace '"thread-concurrency": ""' -replace  '"intensity": "",' -replace  '"intensity": ""' -replace [Environment]::NewLine -replace " " -replace ',}','}' 
   
  $conf4 > 4.conf
    }

elseif($pool.url -like "*nicehash*" -and $pool.url -like "*340*"){
    $conf5 = @"
    {
  "pools": [
    {
      "name": "$name",
      "url": "$url",
      "user": "$user",
      "pass": "$pass",
      "nfactor" : "$nfactor",
      "algorithm": "$algorithm",
      "thread-concurrency": "$threadconcurrency",
      "intensity": "$intensity"

    }
  ],
 
  "failover-only": $failoveronly,
  "devices": "$devices",
  "lookup-gap": "$lookupgap",
  "intensity": "$intensity",
  "worksize": "$worksize",
  "temp-cutoff": "$tempcutoff",
  "temp-overheat": "$tempoverheat",
   "gpu-fan" : "$gpufan",
  "temp-target": "$temptarget",
  "gpu-memdiff": "$gpumemdiff",
  "shares": "$shares",
  "kernel-path": "$kernelpath",
  "auto-fan": $autofan,
  "expiry": "$expiry",
  "failover-switch-delay": "$failoverswitchdelay",
  "gpu-dyninterval": "$gpudyninterval",
  "gpu-platform": "$gpuplatform",
  "hamsi-expand-big": "$hamsiexpandbig",
  "log": "$log",
  "no-pool-disable": $nopooldisable,
  "no-client-reconnect": $noclientreconnect,
  "queue": "$queue",
  "scan-time": "$scantime",
  "tcp-keepalive": "$tcpkeepalive",
  "temp-hysteresis": "$temphysteresis"
}
"@
  $conf5 = $conf5 -replace "4340","3340" -replace '"nfactor" : "",' -replace '"nfactor" : ""' -replace '"thread-concurrency": "",' -replace '"thread-concurrency": ""' -replace  '"intensity": "",' -replace  '"intensity": ""' -replace [Environment]::NewLine -replace " " -replace ',}','}' 
   
   $conf5 > 5.conf 
    }
elseif($pool.url -like "*waffle*" -and $pool.url -like "*3331*"){
    $conf6 = @"
    {
  "pools": [
    {
      "name": "$name",
      "url": "$url",
      "user": "$user",
      "pass": "$pass",
      "nfactor" : "$nfactor",
      "algorithm": "$algorithm",
      "thread-concurrency": "$threadconcurrency",
      "intensity": "$intensity"

    }
  ],
 
  "failover-only": $failoveronly,
  "devices": "$devices",
  "lookup-gap": "$lookupgap",
  "intensity": "$intensity",
  "worksize": "$worksize",
  "temp-cutoff": "$tempcutoff",
  "temp-overheat": "$tempoverheat",
   "gpu-fan" : "$gpufan",
  "temp-target": "$temptarget",
  "gpu-memdiff": "$gpumemdiff",
  "shares": "$shares",
  "kernel-path": "$kernelpath",
  "auto-fan": $autofan,
  "expiry": "$expiry",
  "failover-switch-delay": "$failoverswitchdelay",
  "gpu-dyninterval": "$gpudyninterval",
  "gpu-platform": "$gpuplatform",
  "hamsi-expand-big": "$hamsiexpandbig",
  "log": "$log",
  "no-pool-disable": $nopooldisable,
  "no-client-reconnect": $noclientreconnect,
  "queue": "$queue",
  "scan-time": "$scantime",
  "tcp-keepalive": "$tcpkeepalive",
  "temp-hysteresis": "$temphysteresis"
}
"@
  $conf6 = $conf6 -replace '"nfactor" : "",' -replace '"nfactor" : ""' -replace '"thread-concurrency": "",' -replace '"thread-concurrency": ""' -replace  '"intensity": "",' -replace  '"intensity": ""' -replace [Environment]::NewLine -replace " " -replace ',}','}' 
   
    $conf6 > 6.conf 
    }
else{
    $conf7 = @"
    {
  "pools": [
    {
      "name": "$name",
      "url": "$url",
      "user": "$user",
      "pass": "$pass",
      "nfactor" : "$nfactor",
      "algorithm": "$algorithm",
      "thread-concurrency": "$threadconcurrency",
      "intensity": "$intensity"

    }
  ],
 
  "failover-only": $failoveronly,
  "devices": "$devices",
  "lookup-gap": "$lookupgap",
  "intensity": "$intensity",
  "worksize": "$worksize",
  "temp-cutoff": "$tempcutoff",
  "temp-overheat": "$tempoverheat",
   "gpu-fan" : "$gpufan",
  "temp-target": "$temptarget",
  "gpu-memdiff": "$gpumemdiff",
  "shares": "$shares",
  "kernel-path": "$kernelpath",
  "auto-fan": $autofan,
  "expiry": "$expiry",
  "failover-switch-delay": "$failoverswitchdelay",
  "gpu-dyninterval": "$gpudyninterval",
  "gpu-platform": "$gpuplatform",
  "hamsi-expand-big": "$hamsiexpandbig",
  "log": "$log",
  "no-pool-disable": $nopooldisable,
  "no-client-reconnect": $noclientreconnect,
  "queue": "$queue",
  "scan-time": "$scantime",
  "tcp-keepalive": "$tcpkeepalive",
  "temp-hysteresis": "$temphysteresis"
}
"@
  $conf7 = $conf7 -replace '"nfactor" : "",' -replace '"nfactor" : ""' -replace '"thread-concurrency": "",' -replace '"thread-concurrency": ""' -replace  '"intensity": "",' -replace  '"intensity": ""' -replace [Environment]::NewLine -replace " " -replace ',}','}' 
   
   $conf7 > 7.conf
    }

}
newbie
Activity: 35
Merit: 0
I made a powershell script to do multi-algo switch between nicehash and wafflepool.
this script is tested in windows 7 ,powershell v2. it will run in the folder where sgminer.exe is .
it will switch between niceshash x11 x13 x15 kecaack nist5 , wafflepool x11
$switchcontrol is 1.1 which means when the highest normalized profit is at least 1.1times of current profit , the switch will be triggered.
$delay is 30 now , it should be 300 which means after 300 seconds , the script will process again for the most profitable algo.
1.conf to 6.conf  each match the conf file for x11 ,x13 ,kecaack , x15, nist5 ,wafflex11

Quote
get-process | where-object {$_.name -like "*sgminer*"} | stop-process;"Program Start @"+ $(get-date) + "Nicehash x11 is loaded by default"  ;$current =3; start-process powershell "cmd.exe /C sgminer.exe --config 1.conf";$current = 3
[decimal]$switchcontrol = 1.1
[int]$delay = 300
do{
$aaa = new-object system.net.webclient
$bbb = $aaa.downloadstring("https://www.nicehash.com/api?method=stats.global.current")
[System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions") >null
$ser = New-Object System.Web.Script.Serialization.JavaScriptSerializer
$obj = $ser.DeserializeObject($bbb)
$nicehashprofit =@()
for ($i = 0;$i -le 7;$i++){
$nicehashprofit  += $obj.result.stats[$i].price
}
$nicehashbest = @()
$nicehashbest += [decimal]$nicehashprofit[0]*0
$nicehashbest += [decimal]$nicehashprofit[1]*0
$nicehashbest += [decimal]$nicehashprofit[2]*0
$nicehashbest += [decimal]$nicehashprofit[3]*5.5
$nicehashbest += [decimal]$nicehashprofit[4]*4
$nicehashbest += [decimal]$nicehashprofit[5]*500
$nicehashbest += [decimal]$nicehashprofit[6]*3.5
$nicehashbest += [decimal]$nicehashprofit[7]*16
#------------------waffle---------------------
$ccc = new-object system.net.webclient
$ddd = $ccc.downloadstring("http://wafflepool.com/api/stats")
[System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions") >null
$waf = New-Object System.Web.Script.Serialization.JavaScriptSerializer
$waf1 = $waf.DeserializeObject($ddd)
$waffleprofit7=($waf1."values") | foreach-object {$_."earnings"} | foreach-object {$_."permhs"}
#------------------add waffle x11 to comparasion ---------------------
$nicehashbest += [decimal]$waffleprofit7[14]*5500
$nicehashnormalized = ($nicehashbest | measure -maximum).maximum
#------------------make the switch based on price and variance ---------------------
if($nicehashbest[0] -eq $nicehashnormalized -and $nicehashbest[0] -gt $switchcontrol*$nicehashbest[$current]) {"switch to scrypt,$nicehashnormalized";$current = 0}
elseif($nicehashbest[1] -eq $nicehashnormalized -and $nicehashbest[1] -gt $switchcontrol*$nicehashbest[$current]) {"switch to sha256,$nicehashnormalized";$current = 1}
elseif($nicehashbest[2] -eq $nicehashnormalized -and $nicehashbest[2] -gt $switchcontrol*$nicehashbest[$current]) {"switch to scrypt-n,$nicehashnormalized";$current = 2}
elseif($nicehashbest[3] -eq $nicehashnormalized -and $nicehashbest[3] -gt $switchcontrol*$nicehashbest[$current]) {if ($current -eq 3  -and (get-process | Where-Object {$_.name -eq "sgminer" } ).responding){"remain in X11 @"+$(get-date)} else { get-process | where-object {$_.name -like "*sgminer*"} | stop-process;"Switching to X11 @"+ $(get-date);$current =3; start-process powershell "cmd.exe /C sgminer.exe --config 1.conf";$current = 3}}
elseif($nicehashbest[4] -eq $nicehashnormalized -and $nicehashbest[4] -gt $switchcontrol*$nicehashbest[$current]) {if ($current -eq 4  -and (get-process | Where-Object {$_.name -eq "sgminer" } ).responding){"remain in X13 @"+$(get-date)} else { get-process | where-object {$_.name -like "*sgminer*"} | stop-process;"Switching to X13 @"+ $(get-date);$current =4; start-process powershell "cmd.exe /C sgminer.exe --config 2.conf";$current = 4}}
elseif($nicehashbest[5] -eq $nicehashnormalized -and $nicehashbest[5] -gt $switchcontrol*$nicehashbest[$current]) {if ($current -eq 5  -and (get-process | Where-Object {$_.name -eq "sgminer" } ).responding){"remain in Keccak @"+$(get-date)} else { get-process | where-object {$_.name -like "*sgminer*"} | stop-process;"Switching to Keccak @"+ $(get-date);$current =5; start-process powershell "cmd.exe /C sgminer.exe --config 3.conf";$current = 5}}
elseif($nicehashbest[6] -eq $nicehashnormalized -and $nicehashbest[6] -gt $switchcontrol*$nicehashbest[$current]) {if ($current -eq 6  -and (get-process | Where-Object {$_.name -eq "sgminer" } ).responding){"remain in X15 @"+$(get-date)} else { get-process | where-object {$_.name -like "*sgminer*"} | stop-process;"Switching to X15 @"+ $(get-date);$current =6; start-process powershell "cmd.exe /C sgminer.exe --config 4.conf";$current = 6}}
elseif ($nicehashbest[7] -eq $nicehashnormalized -and $nicehashbest[7] -gt $switchcontrol*$nicehashbest[$current]) {if ($current -eq 7  -and (get-process | Where-Object {$_.name -eq "sgminer" } ).responding){"remain in Nist5 @"+$(get-date)} else { get-process | where-object {$_.name -like "*sgminer*"} | stop-process;"Switching to Nist5 @"+ $(get-date);$current =7; start-process powershell "cmd.exe /C sgminer.exe --config 5.conf";$current = 7}}
elseif($nicehashbest[8] -eq $nicehashnormalized -and $nicehashbest[8] -gt $switchcontrol*$nicehashbest[$current]){if ($current -eq 8  -and (get-process | Where-Object {$_.name -eq "sgminer" } ).responding){"remain in waffle X11 @"+$(get-date)} else { get-process | where-object {$_.name -like "*sgminer*"} | stop-process;"Switching to waffle X11 @"+ $(get-date);$current =8; start-process powershell "cmd.exe /C sgminer.exe --config 6.conf";$current = 8}}
elseif((get-process | Where-Object {$_.name -eq "sgminer" } ).responding -eq $true) {"remian in last algo @ price:$($nicehashbest[$current])"}
else{"for some reason sgminer stopped, please check the hardware";start-process powershell "cmd.exe /C sgminer.exe --config 1.conf";$current = 3}
sleep $delay
}while($true -eq $true)
legendary
Activity: 1974
Merit: 1003
why not just make the westcrap site just a node to connect for the ones who wants to, and not a place where they can place bids ? west site is keeping prices down, because no one is there ...


ps : i will ask this until i get an answer

It has already been explained. Buyers need to have a choice whether to buy from EU or US so they can minimize reject rates on their chosen pools.

That dosent make sense, buyers can buy at a certain price, and they can choose on what server to mine after, is that simple.

U buy at X price, and after u choose where u want to mine, EU or US, how about that ?

Since the dev dosent seem to understand our point, look at clevermining, they have eu.clevermining.com and us.clevermining.com , thats what i was saying, u dont need to make another market with other prices, for a server designed for us or eu ... keep nicehash.com main site, and west JUST as alternative server, not another whole market
hero member
Activity: 938
Merit: 500
https://youengine.io/
0.025 [...] this way we will force them to buy at higher price

LOL, You don't force anybody to buy at such ridiculous prices. You just won't sell very much (or anything at all).
legendary
Activity: 1708
Merit: 1036
everyone put password :  p=0.025
This way we will only accept to be paid only 0.025 BTC and better for TH/DAY
Prices have dropped significantly lately, this way we will force them to buy at higher price

Sorry - you lost me.  Where does this go?  Literally in your password setting on each miner?

Yes, you can set difficulty and minimum price you'll accept within the password field.
legendary
Activity: 1593
Merit: 1004
everyone put password :  p=0.025
This way we will only accept to be paid only 0.025 BTC and better for TH/DAY
Prices have dropped significantly lately, this way we will force them to buy at higher price

Sorry - you lost me.  Where does this go?  Literally in your password setting on each miner?
legendary
Activity: 1708
Merit: 1036
Is there a delay in getting Nicehash working when you add it as a mining pool? Last night I switched my miner on Leaserig to X13, and tried connecting it to Nicehash for X13 mining. But the LR page for Nicehash just lists it as dead and I can't start mining on it. I'm using the SGMiner build from August 4 obtained from Nicehash's nightly builds section, so that shouldn't be the issue. I'm mining fine at other X13 pools. I'm just using the 3337 port, a BTC address and password "X", nothing fancy.

(Or has LR done something to disable mining at Nicehash via their system? I think I've heard there is bad blood between Leaserig and Nicehash.)

Thanks for any insight/ideas!
legendary
Activity: 1120
Merit: 1001
everyone put password :  p=0.025
This way we will only accept to be paid only 0.025 BTC and better for TH/DAY
Prices have dropped significantly lately, this way we will force them to buy at higher price
legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
Okz will test it again tmrw and what about failover pools by the way i am using minera for the zeus miners

And bro u just clean ur keboard Wink
newbie
Activity: 53
Merit: 0
now how i can advertise my preferred rates on which i'll lease my rig
while rig is not hired it shows that it is mining and shares are getting accepted but i cant see it is mining in any of my failover pools
is there any step my step tutorial which shows how to set our rigs and advertise on portal

p=threshold in your password, for example (from my SHA config) -

Code:
      "pass": "d=1024;p=0.0218"
hero member
Activity: 672
Merit: 500
http://fuk.io - check it out!
i love nicehash Smiley using tchem wit hbot selling and buying of miners

will you put more light on hbot and tchem  Huh

haha for reason i dont know of my keyboard/systm makes tchem instead of them. if u know how to solve it please tell
with is just a typo with space too fast Wink
legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
i love nicehash Smiley using tchem wit hbot selling and buying of miners

will you put more light on hbot and tchem  Huh
hero member
Activity: 672
Merit: 500
http://fuk.io - check it out!
i love nicehash Smiley using tchem wit hbot selling and buying of miners
legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
guys i need help

nice hash is bit complicated system to me, few questions since i cant find appropriate tutorials maybe

if i point my rig to the stratum servers set user and pwd for it and define my failover pools

now how i can advertise my preferred rates on which i'll lease my rig
while rig is not hired it shows that it is mining and shares are getting accepted but i cant see it is mining in any of my failover pools
is there any step my step tutorial which shows how to set our rigs and advertise on portal

few more questions which i'll post after coming to the right path

thanks,
Jump to: