Author

Topic: Mining different currency at different time intervals ? (Read 568 times)

member
Activity: 210
Merit: 10
Hello sir
I coudn't use this code . which version of cgminer you check it ?

Please provide more information. What error are you getting? Check the names of the .bat files.
member
Activity: 112
Merit: 10
Hello

Is it possible to mine more than one currency at different time intervals ?

For example I want to mine FTC,LTC,DOGE,42 each 30 minutes automatically without create 4 file .bat

Is that possible ? what's example of order line ?

if you use cgminer, just set the 'rotate' argument or conf entry value :

Quote
--rotate      Change multipool strategy from failover to regularly rotate at N minutes (default: 0)

This will make cgminer move from one configured pool to the next one every minutes.

you could also set it to "balance" between pools, with optional quotas, so cgminer will dispatch its hashrate over multiple pools at once.
hero member
Activity: 798
Merit: 1000
I wrote a batch file to do this for me when I was giving away mining time. Here's an example of the code, just paste it into a batch file and set it up for your pools. Sleep time is in seconds. Note: This can be used with cgminer, vertminer, sgminer or any other command line miner. Just set up the individual batch files and combine them with this single file or execute the miner from this single batch file if you prefer, one or the other not both.

Code:
taskkill /im cgminer.exe /f
echo Starting LTC
start ltc.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting FTC
taskkill /im cgminer.exe /f
start ftc.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting DOGE
taskkill /im cgminer.exe /f
start doge.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting 42
taskkill /im cgminer.exe /f
start 42.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
taskkill /im cgminer.exe /f

Hello sir
I coudn't use this code . which version of cgminer you check it ?

You need to replace the bat names with the names of your bats.
hero member
Activity: 546
Merit: 500
I wrote a batch file to do this for me when I was giving away mining time. Here's an example of the code, just paste it into a batch file and set it up for your pools. Sleep time is in seconds. Note: This can be used with cgminer, vertminer, sgminer or any other command line miner. Just set up the individual batch files and combine them with this single file or execute the miner from this single batch file if you prefer, one or the other not both.

Code:
taskkill /im cgminer.exe /f
echo Starting LTC
start ltc.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting FTC
taskkill /im cgminer.exe /f
start ftc.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting DOGE
taskkill /im cgminer.exe /f
start doge.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting 42
taskkill /im cgminer.exe /f
start 42.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
taskkill /im cgminer.exe /f

Hello sir
I coudn't use this code . which version of cgminer you check it ?
member
Activity: 210
Merit: 10
I wrote a batch file to do this for me when I was giving away mining time. Here's an example of the code, just paste it into a batch file and set it up for your pools. Sleep time is in seconds. Note: This can be used with cgminer, vertminer, sgminer or any other command line miner. Just set up the individual batch files and combine them with this single file or execute the miner from this single batch file if you prefer, one or the other not both.

Code:
taskkill /im cgminer.exe /f
echo Starting LTC
start ltc.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting FTC
taskkill /im cgminer.exe /f
start ftc.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting DOGE
taskkill /im cgminer.exe /f
start doge.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
echo Starting 42
taskkill /im cgminer.exe /f
start 42.bat OR cgminer.exe --scrypt -o stratum+tcp://pool.whatever.com:3333 -u miner.1 -p x
sleep 1800
taskkill /im cgminer.exe /f
hero member
Activity: 798
Merit: 1000
You can use CGWatcher to automatically switch between configures profiles.

How ? is there another program ?

Yes, there is another program, called CGWatcher. As I said:
You can use CGWatcher to automatically switch between configures profiles.

I wanna a program that open a .bat file and then close it after 30 minute and again open another .bat file .
This program is too difficult for use .

That program is like the easiest GUI application for CGMiner, SGMiner and BFLMiner.
There is no such program to open bat files.
hero member
Activity: 546
Merit: 500
You can use CGWatcher to automatically switch between configures profiles.

How ? is there another program ?

Yes, there is another program, called CGWatcher. As I said:
You can use CGWatcher to automatically switch between configures profiles.

I wanna a program that open a .bat file and then close it after 30 minute and again open another .bat file .
This program is too difficult for use .
hero member
Activity: 798
Merit: 1000
You can use CGWatcher to automatically switch between configures profiles.

How ? is there another program ?

Yes, there is another program, called CGWatcher. As I said:
You can use CGWatcher to automatically switch between configures profiles.
hero member
Activity: 546
Merit: 500
You can use CGWatcher to automatically switch between configures profiles.

How ? is there another program ?
hero member
Activity: 798
Merit: 1000
You can use CGWatcher to automatically switch between configures profiles.
hero member
Activity: 546
Merit: 500
Hello

Is it possible to mine more than one currency at different time intervals ?

For example I want to mine FTC,LTC,DOGE,42 each 30 minutes automatically without create 4 file .bat

Is that possible ? what's example of order line ?
Jump to: