Bitcoin Forum
May 06, 2024, 01:27:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 ... 346 »
  Print  
Author Topic: [ANN] NiceHash.com - sell & buy hash rate cloud mining service / multipool  (Read 794124 times)
prof7bit
Hero Member
*****
Offline Offline

Activity: 938
Merit: 500


https://youengine.io/


View Profile WWW
August 21, 2014, 03:55:02 PM
 #2081

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).

1715002079
Hero Member
*
Offline Offline

Posts: 1715002079

View Profile Personal Message (Offline)

Ignore
1715002079
Reply with quote  #2

1715002079
Report to moderator
"Bitcoin: mining our own business since 2009" -- Pieter Wuille
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715002079
Hero Member
*
Offline Offline

Posts: 1715002079

View Profile Personal Message (Offline)

Ignore
1715002079
Reply with quote  #2

1715002079
Report to moderator
1715002079
Hero Member
*
Offline Offline

Posts: 1715002079

View Profile Personal Message (Offline)

Ignore
1715002079
Reply with quote  #2

1715002079
Report to moderator
1715002079
Hero Member
*
Offline Offline

Posts: 1715002079

View Profile Personal Message (Offline)

Ignore
1715002079
Reply with quote  #2

1715002079
Report to moderator
rammy2k2
Legendary
*
Offline Offline

Activity: 1974
Merit: 1003



View Profile
August 21, 2014, 07:59:51 PM
 #2082

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
torontominer
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
August 21, 2014, 08:16:02 PM
Last edit: August 21, 2014, 08:29:49 PM by torontominer
 #2083

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)
torontominer
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
August 21, 2014, 08:21:30 PM
 #2084

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
    }

}
torontominer
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
August 21, 2014, 08:25:04 PM
 #2085

feel free to edit the above code for your own purpose.
have fun , guys !
bensam123
Sr. Member
****
Offline Offline

Activity: 423
Merit: 250


View Profile
August 22, 2014, 08:23:36 AM
 #2086

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.
crashoveride54902
Hero Member
*****
Offline Offline

Activity: 784
Merit: 504


Dream become broken often


View Profile
August 22, 2014, 12:34:44 PM
 #2087

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?

Dreams of cyprto solving everything is slowly slipping away...Replaced by scams/hacks Sad
suchmoon
Legendary
*
Offline Offline

Activity: 3654
Merit: 8922


https://bpip.org


View Profile WWW
August 22, 2014, 01:22:09 PM
 #2088

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
rammy2k2
Legendary
*
Offline Offline

Activity: 1974
Merit: 1003



View Profile
August 22, 2014, 02:44:52 PM
Last edit: August 22, 2014, 03:06:52 PM by rammy2k2
 #2089

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
Ilan1
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 22, 2014, 03:08:07 PM
 #2090

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???

LTCgear.com Review http://ltcgear.co.ukhttp://ltcgear.com/?apage=120 - 160mh/s for $850 use coupon code "anniversary1yr" - Active Multi Algorithm cloud mining in Scrypt, X11 and Scrypt-N - ROI in 5 Weeks
Trimegistus
Legendary
*
Offline Offline

Activity: 1564
Merit: 1027



View Profile
August 22, 2014, 03:15:16 PM
 #2091

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???

I have two S3 connected to nicehash as we speak. No problems, at least for now

Ilan1
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 22, 2014, 03:20:52 PM
 #2092

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???

I have two S3 connected to nicehash as we speak. No problems, at least for now

That is very odd they are working with Westhash but not Nicehash  Huh

LTCgear.com Review http://ltcgear.co.ukhttp://ltcgear.com/?apage=120 - 160mh/s for $850 use coupon code "anniversary1yr" - Active Multi Algorithm cloud mining in Scrypt, X11 and Scrypt-N - ROI in 5 Weeks
Trimegistus
Legendary
*
Offline Offline

Activity: 1564
Merit: 1027



View Profile
August 22, 2014, 03:24:40 PM
 #2093

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???

I have two S3 connected to nicehash as we speak. No problems, at least for now

That is very odd they are working with Westhash but not Nicehash  Huh

Check your password/price

Ilan1
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 22, 2014, 03:28:19 PM
 #2094

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???

I have two S3 connected to nicehash as we speak. No problems, at least for now

That is very odd they are working with Westhash but not Nicehash  Huh

Check your password/price

All OK, Password = X  I had it set to p=.0255 but changed to X because my Antminers never flipped back when the rates went up, and now it just says Dead when trying to mine on Nicehash! Same settings work perfectly well on Westhash though???

Nicehash doesn't not like me anymore  Sad

LTCgear.com Review http://ltcgear.co.ukhttp://ltcgear.com/?apage=120 - 160mh/s for $850 use coupon code "anniversary1yr" - Active Multi Algorithm cloud mining in Scrypt, X11 and Scrypt-N - ROI in 5 Weeks
Trimegistus
Legendary
*
Offline Offline

Activity: 1564
Merit: 1027



View Profile
August 22, 2014, 03:32:19 PM
 #2095

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???

I have two S3 connected to nicehash as we speak. No problems, at least for now

That is very odd they are working with Westhash but not Nicehash  Huh

Check your password/price

All OK, Password = X  I had it set to p=.0255 but changed to X because my Antminers never flipped back when the rates went up, and now it just says Dead when trying to mine on Nicehash! Same settings work perfectly well on Westhash though???

Nicehash doesn't not like me anymore  Sad

Try setting it to p=0.001 and take it from there

Ilan1
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 22, 2014, 03:38:02 PM
 #2096

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???

I have two S3 connected to nicehash as we speak. No problems, at least for now

That is very odd they are working with Westhash but not Nicehash  Huh

Check your password/price

All OK, Password = X  I had it set to p=.0255 but changed to X because my Antminers never flipped back when the rates went up, and now it just says Dead when trying to mine on Nicehash! Same settings work perfectly well on Westhash though???

Nicehash doesn't not like me anymore  Sad

Try setting it to p=0.001 and take it from there

Done, but no change Miner still says Dead!

Its like my Antminers are blocked from connecting to the pool?

LTCgear.com Review http://ltcgear.co.ukhttp://ltcgear.com/?apage=120 - 160mh/s for $850 use coupon code "anniversary1yr" - Active Multi Algorithm cloud mining in Scrypt, X11 and Scrypt-N - ROI in 5 Weeks
Trimegistus
Legendary
*
Offline Offline

Activity: 1564
Merit: 1027



View Profile
August 22, 2014, 03:41:32 PM
 #2097

It's possible that nicehash blocked your IP or your BTC address but I guess they would have to have a good reason to do it.

Ask them!

Ilan1
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 22, 2014, 03:42:47 PM
 #2098

It's possible that nicehash blocked your IP or your BTC address but I guess they would have to have a good reason to do it.

Ask them!

How do I contact support? I cant find an email address?

LTCgear.com Review http://ltcgear.co.ukhttp://ltcgear.com/?apage=120 - 160mh/s for $850 use coupon code "anniversary1yr" - Active Multi Algorithm cloud mining in Scrypt, X11 and Scrypt-N - ROI in 5 Weeks
Hyacin75
Newbie
*
Offline Offline

Activity: 53
Merit: 0


View Profile
August 22, 2014, 03:56:08 PM
 #2099

Done, but no change Miner still says Dead!

Its like my Antminers are blocked from connecting to the pool?

My S2 is happily connected to westhash with "pass": "d=1024;p=0.0211" ... running Kano's firmware w/ cgminer 4.3.5s2
Ilan1
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 22, 2014, 03:58:37 PM
 #2100

Done, but no change Miner still says Dead!

Its like my Antminers are blocked from connecting to the pool?

My S2 is happily connected to westhash with "pass": "d=1024;p=0.0211" ... running Kano's firmware w/ cgminer 4.3.5s2

I am having no problem connecting with Westhash but I cant connect to Nicehash, very strange!

LTCgear.com Review http://ltcgear.co.ukhttp://ltcgear.com/?apage=120 - 160mh/s for $850 use coupon code "anniversary1yr" - Active Multi Algorithm cloud mining in Scrypt, X11 and Scrypt-N - ROI in 5 Weeks
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 ... 346 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!