Bitcoin Forum
May 14, 2024, 03:01:31 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 »
  Print  
Author Topic: Megaminer 6.3 - Multi pool / Multi Algo launcher  (Read 70950 times)
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 14, 2017, 04:31:20 PM
 #381

I did some experimentation , these days and nicehash is the best option , although zpool showing 30-40% more profit the final result is the sam even a little less than nicehash! This is for 3x1080ti 1x1080 and 3x1070 , zpool was showing that 0.04-5 a day , but at the end it was 0.0031 for 24h as i left all the blocks to mature! And using nicehash i got 0.0034btc for the same 24h! Megaminer was set to 1 automatic 24h mode , for zpool , hashref, multipoolhub! Embarrassed


I think for autoexchange pool is best option "Automatic", I don´t know how Zpool,MPH, etc, calculates profit but always is overstimated.

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
1715698891
Hero Member
*
Offline Offline

Posts: 1715698891

View Profile Personal Message (Offline)

Ignore
1715698891
Reply with quote  #2

1715698891
Report to moderator
1715698891
Hero Member
*
Offline Offline

Posts: 1715698891

View Profile Personal Message (Offline)

Ignore
1715698891
Reply with quote  #2

1715698891
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715698891
Hero Member
*
Offline Offline

Posts: 1715698891

View Profile Personal Message (Offline)

Ignore
1715698891
Reply with quote  #2

1715698891
Report to moderator
1715698891
Hero Member
*
Offline Offline

Posts: 1715698891

View Profile Personal Message (Offline)

Ignore
1715698891
Reply with quote  #2

1715698891
Report to moderator
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 14, 2017, 04:36:17 PM
 #382

is it possible to start mining on zpool in manual mode?
To mine only coins I want?

No, Zpool dont allow select coin to mine, only algo to mine. You can start zpool on automode with only one algo enabled by parameter, but pool will select coin to mine from available to that algo.
But I found how to do this
By setting $Divisor and @@CURRENCY=coin to mine


No, when you set @@currency on zpool you are ordering pool change your mined coins to that coin to pay you, you are not forcing to mine that coin.

You can see on zpool web than only one port per algo exists, a pool that allow coin selection has a port per coin.


Usually is better to do what you are doing, mining most profitable coin and indicates pool you want to change that coins for your desired destination coin.

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 14, 2017, 04:38:15 PM
 #383

can I change EUR/day to USD/day without change Europe location ?

No directly on config.txt


You can edit core.ps1 and replace

   switch ($location) {
                    'Europe' {$LabelProfit="EUR/Day" ; $localBTCvalue = [double]$CDKResponse.eur.rate}
                    'US'     {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'ASIA'   {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'GB'     {$LabelProfit="GBP/Day" ; $localBTCvalue = [double]$CDKResponse.gbp.rate}

                }


for


   switch ($location) {
                    'Europe'  {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'US'     {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'ASIA'   {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'GB'     {$LabelProfit="GBP/Day" ; $localBTCvalue = [double]$CDKResponse.gbp.rate}

                }


Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 14, 2017, 04:38:44 PM
 #384

can I change EUR/day to USD/day without change Europe location ?

No directly on config.txt


You can edit core.ps1 and replace

   switch ($location) {
                    'Europe' {$LabelProfit="EUR/Day" ; $localBTCvalue = [double]$CDKResponse.eur.rate}
                    'US'     {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'ASIA'   {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'GB'     {$LabelProfit="GBP/Day" ; $localBTCvalue = [double]$CDKResponse.gbp.rate}

                }


To


   switch ($location) {
                    'Europe'  {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'US'     {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'ASIA'   {$LabelProfit="USD/Day" ; $localBTCvalue = [double]$CDKResponse.usd.rate}
                    'GB'     {$LabelProfit="GBP/Day" ; $localBTCvalue = [double]$CDKResponse.gbp.rate}

                }



Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 14, 2017, 04:40:26 PM
 #385

some times i have this error ( Ccminer has stop working ) . 2 rig working - 1 rig have 6 gtx 1070 and show error on this rig , second rig just 1 gtx 1070 installed . Both rig's installed win 10 Enterprise.v1703

how fix this ?

https://pasteboard.co/GKf4hAa.jpg

I think is a ccminer error not MM error, you can test if get same error runing same command MM launch (you can see it on History screen).

You can try also lowe overclock profiles.

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 14, 2017, 05:46:34 PM
 #386

some times i have this error ( Ccminer has stop working ) . 2 rig working - 1 rig have 6 gtx 1070 and show error on this rig , second rig just 1 gtx 1070 installed . Both rig's installed win 10 Enterprise.v1703

how fix this ?

https://pasteboard.co/GKf4hAa.jpg

I think is a ccminer error not MM error, you can test if get same error runing same command MM launch (you can see it on History screen).

You can try also lowe overclock profiles.

thanks i try lower overclock and test it

on MPH mining on port 20XXX , for gpu mining beter use port 12XXXX . can change port too 12XXX ?

Simple coin mining (Port 20XXX)
Select any coin and check its port number. Just start mining with appropriate miner and algo right away.
Algo switch mining (Port 17XXX)
We provide auto switching port for each algo. These ports switch coins time to time to mine the most profitable coin. Best for Rental, ASIC, FPGA miners.
Multi-algo switch mining (Port 12XXX)
You can mine different algo coins by using Hub feature, or third party mining helper programs. Good for GPU miners but need some knowledge to set up and optimize


Best port for MM working mode is 20XXX, it let MM what coin to mine. 12XXX are ports for run miners without profit change app like  MM.

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
4ward
Member
**
Offline Offline

Activity: 473
Merit: 18


View Profile
September 14, 2017, 06:14:51 PM
Last edit: September 15, 2017, 03:34:52 PM by 4ward
 #387

it fails to detect secondary algo sometimes

@tutulfo, perhaps when you search for max value, the eth max value was paired with 0 secondary and then it fails to update it as pair?


No, this is the code for update stats, if miner needs bechmarks (it is same var used to show "benchmarkin" msg) and actual readed value is greater than stored value stats are updated

  $Value=[long]($Miner_HashRates[0] * 0.95)

  if ($Value -gt $_.Hashrate -and $_.NeedBenchmark) {
                                                $ValueDual=[long]($Miner_HashRates[1] * 0.95)
                                                $_.Hashrate= $Value
                                                $_.HashrateDual= $ValueDual
                                                Set-Hashrates -algorithm $_.Algorithms -minername $_.Name -value  $Value -valueDual $ValueDual
                                                }

While benchmarking must appear speed on active miners section and must appear a file on stats folder with this value on it.

If you have a situation where dual mining numbers you have detected are "30, 0" because ETH was initialized first and these values are stored in file.

After that, when dual mining actually kicks in, the values are "25, 100", for example

so, 25 is never higher than 30, and never overwrites the values in the benchmark.txt which causes the benchmark to run forever

twente-mining
Member
**
Offline Offline

Activity: 176
Merit: 10


View Profile
September 14, 2017, 07:48:55 PM
 #388

some times i have this error ( Ccminer has stop working ) . 2 rig working - 1 rig have 6 gtx 1070 and show error on this rig , second rig just 1 gtx 1070 installed . Both rig's installed win 10 Enterprise.v1703

how fix this ?

https://pasteboard.co/GKf4hAa.jpg

I think is a ccminer error not MM error, you can test if get same error runing same command MM launch (you can see it on History screen).

You can try also lowe overclock profiles.

It's a memory issue, i had the same...

Set virtuel memory to at least 16 GB and you are good to go ;-)

No more crashes

▄▄▄▄▄▄▄▄▄▄▄▄
twente-mining
Member
**
Offline Offline

Activity: 176
Merit: 10


View Profile
September 17, 2017, 11:11:29 AM
Last edit: September 17, 2017, 11:43:43 AM by twente-mining
 #389

would like to choose Flypool instead of MPH voor zcash, is that possible ?

▄▄▄▄▄▄▄▄▄▄▄▄
cryptolelefla
Member
**
Offline Offline

Activity: 121
Merit: 10


View Profile
September 17, 2017, 09:31:44 PM
 #390

I do exactly that with Afterburner - it works just fine - remember to mod all the Miner files though to switch back - With NVIDIA, flipping from ethash and other algos require major canges on memory overclock and a significant performance difference

you means change *.json file on the miners folder and set (CC-MC) clock for all file ?

I call a .cmd file and place the relevant instructions in the command file

i.e. for v4.2
Miners\ccminer-2.2.json
Code:
..
"Path" : ".\\Bin\\NVIDIA-ccminer-2.2\\ccminer.cmd"..

... Bin\NVIDIA-ccminer-2.2\ccminer.cmd
Code:
title %*
"C:\Program Files (x86)\MSI Afterburner\MSIAfterburner.exe" -profile5
"ccminer-x64.exe" %*

Repeat for each entry you are using in Miners
I save the profiles in Afterburner but you can use any utility for the desired effect
this will apply profile 5 to all gpus?
cUJo76
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 18, 2017, 07:48:11 PM
 #391

Is it possible to implement feature that stops previous miner only after new miner has started and reporting hashrate ?
So that 2 miners run paraller until new one is reporting h/r, that way there wouldn't be pauses between switches.
Maybe then you could lower interval value and always have a miner running without pauses.

Anyhow, Thanks for awesome script
origin-AL
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile WWW
September 18, 2017, 08:31:10 PM
 #392

Awesome script, easy to set up, thank you!
stunvn
Full Member
***
Offline Offline

Activity: 266
Merit: 100



View Profile
September 21, 2017, 11:05:38 AM
 #393

Hello.

I'm still using 4.2  Do I have to upgrade to 4.3? 

I'm lazy.  Cry
known-user
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile
September 22, 2017, 12:07:33 AM
Last edit: September 22, 2017, 12:37:17 AM by known-user
 #394

first of all i would like to start by saying that i think megaminer is a great product, good job on that.

suggestion #1 - bruto to netto profit option
what i really think is missing in here is an option to set your cost per kwh.
in the (C)urrent screen i can see the power that all gpus are using. while i am not able to program powershell myself, i am able to read it (php programmer). i see that the power_draw and the power_limit are addressable, so the data is there in case of nvidia cards.
it could be awesome if we could put our price per kwh in the Config.txt.
during the benchmarking besides from the speed, the total watt usage (sum of power_draw of all cards) could also be read and saved.
desired result: to mine the coin with the highest netto profit (profit - cost for electricity), instead of total profit (including energy costs).

suggestion #2 - include nvidiainspector
ok, this one i have not figured out myself yet, so i thought it might be best to throw it in the community.
basically now i have 2 profiles:
- one profile for ethash , i use a really low power target, i overclock the core a bit but not to the max and i go extreme on the memory: as much as possible per card
- one profile for other algos, i use a little higher power target, i go extreme on the core, and i overclock the memory a bit

for sure this could be finetuned more with diferent algos, but hey, there is also just a certain amount of hours in a day...
let's call these ethash-profile and other-profile for easyness.

at this moment i could go for the route to change the start.bat, and add my ethash-profile in that file.
then i could also change in the Miners directory the json files directly to change the path to my own bat files for the other-profile and do my thing this way.

i do think however that this might also be done through the Config.txt itself, which makes it more easy for the most users.
these could be optional settings. not filled in, won't make use of it.
filled in it could be something per algo to be able to set powerTarget, baseClockOffset, memoryClockOffset

thinking a little further on this, and editing this post, it might be a perfect option to be able to add these as optional fields with your personal values directly in the Miners/*.json files. if filled in, then it could start nvidiainspector first with the filled in settings maybe?

bug - benchmark loop with claymore ethminer dual mode
in case of benchmarking claymore ethminer dual mode it always gets stuck, it keeps on looping the same benchmark over and over.
i found a quick workaround by deleting the hashrate file from the current benchmark that is running, so that it will recreate it and then it will be ok.
can this be fixed in a better way?
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 23, 2017, 08:32:35 AM
 #395

would like to choose Flypool instead of MPH voor zcash, is that possible ?


I have uploaded Flypool pool file to github

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 23, 2017, 08:37:52 AM
 #396

Is it possible to implement feature that stops previous miner only after new miner has started and reporting hashrate ?
So that 2 miners run paraller until new one is reporting h/r, that way there wouldn't be pauses between switches.
Maybe then you could lower interval value and always have a miner running without pauses.

Anyhow, Thanks for awesome script

Added to "to-do" list

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 23, 2017, 08:38:39 AM
 #397

Hello.

I'm still using 4.2  Do I have to upgrade to 4.3? 

I'm lazy.  Cry

Yes, 4.2 has a memory grotwh problem.

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 23, 2017, 08:43:34 AM
 #398

first of all i would like to start by saying that i think megaminer is a great product, good job on that.

suggestion #1 - bruto to netto profit option
what i really think is missing in here is an option to set your cost per kwh.
in the (C)urrent screen i can see the power that all gpus are using. while i am not able to program powershell myself, i am able to read it (php programmer). i see that the power_draw and the power_limit are addressable, so the data is there in case of nvidia cards.
it could be awesome if we could put our price per kwh in the Config.txt.
during the benchmarking besides from the speed, the total watt usage (sum of power_draw of all cards) could also be read and saved.
desired result: to mine the coin with the highest netto profit (profit - cost for electricity), instead of total profit (including energy costs).

suggestion #2 - include nvidiainspector
ok, this one i have not figured out myself yet, so i thought it might be best to throw it in the community.
basically now i have 2 profiles:
- one profile for ethash , i use a really low power target, i overclock the core a bit but not to the max and i go extreme on the memory: as much as possible per card
- one profile for other algos, i use a little higher power target, i go extreme on the core, and i overclock the memory a bit

for sure this could be finetuned more with diferent algos, but hey, there is also just a certain amount of hours in a day...
let's call these ethash-profile and other-profile for easyness.

at this moment i could go for the route to change the start.bat, and add my ethash-profile in that file.
then i could also change in the Miners directory the json files directly to change the path to my own bat files for the other-profile and do my thing this way.

i do think however that this might also be done through the Config.txt itself, which makes it more easy for the most users.
these could be optional settings. not filled in, won't make use of it.
filled in it could be something per algo to be able to set powerTarget, baseClockOffset, memoryClockOffset

thinking a little further on this, and editing this post, it might be a perfect option to be able to add these as optional fields with your personal values directly in the Miners/*.json files. if filled in, then it could start nvidiainspector first with the filled in settings maybe?

bug - benchmark loop with claymore ethminer dual mode
in case of benchmarking claymore ethminer dual mode it always gets stuck, it keeps on looping the same benchmark over and over.
i found a quick workaround by deleting the hashrate file from the current benchmark that is running, so that it will recreate it and then it will be ok.
can this be fixed in a better way?


suggestion #1 --> To-do list
suggestion #2  --> 4.4 release will have a "prelaunch" command for each miner, future releases will expand this feature to each algo
Bug --> I can not get this error on my rigs. I need to know if while benchmar is running:
   - There is speed on Active Miners section
   - If speed is shown, ¿is a file for that miner/algo generated on stats folders?




Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
dragonmike
Hero Member
*****
Offline Offline

Activity: 1274
Merit: 556



View Profile
September 23, 2017, 11:28:24 AM
 #399

Dude, your readme and config files are just massive, unformatted walls of text. I'd really like to give your miner a go but it's giving me a massive headache!...
tutulfo (OP)
Full Member
***
Offline Offline

Activity: 322
Merit: 105


View Profile
September 23, 2017, 01:48:59 PM
 #400

Dude, your readme and config files are just massive, unformatted walls of text. I'd really like to give your miner a go but it's giving me a massive headache!...

Its windows notepad problem, open it with notepad++, ultraedit or any other “real” tex editor.

Megaminer - Multi pool / Multi Algo launcher https://bitcointalk.org/index.php?topic=2059039.0
BTC: 1AVMHnFgc6SW33cwqrDyy2Fug9CsS8u6TM -------   LTC:  LVwuYbAvbMDVapheQBA7o2qQ2mKTEXVDbX
BCH: 1N7wsg4JmWJLP6BuHUP5rwsAXnQjTWPBjr --------  ETH: 0x9b7A01Bf5bD29c66d228d372B5bD1C43cDb78AcC
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 »
  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!