Bitcoin Forum
May 24, 2024, 09:38:45 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 [177] 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 ... 413 »
  Print  
Author Topic: [ANN][XMY] Myriad | Multi-Algo, Fair, Secure  (Read 849668 times)
burningzoul
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
April 24, 2014, 12:09:56 PM
 #3521

Where do you guys see this coin heading? Can it or will ever hit $1?

Too much coins for that price. Something around 0.01 is possible...maybe Smiley

It already hit 0.01$ for a brief period when on Poloniex in the early stage of the coin it reached aprox. 1800 sats ( BTC price was higher than when it hit aprox 1600-1700 on Mintpal)...so think big because it hit that without anything compared to what is instored and worked upon in the present. Back then we were under 10 people in the IRC channel and and this thread had around 20 posts, people were still figuring out how to mine the different algos...
mfqrs3
Sr. Member
****
Offline Offline

Activity: 419
Merit: 250


View Profile
April 24, 2014, 12:22:32 PM
 #3522

Where do you guys see this coin heading? Can it or will ever hit $1?

Too much coins for that price. Something around 0.01 is possible...maybe Smiley

It already hit 0.01$ for a brief period when on Poloniex in the early stage of the coin it reached aprox. 1800 sats ( BTC price was higher than when it hit aprox 1600-1700 on Mintpal)...so think big because it hit that without anything compared to what is instored and worked upon in the present. Back then we were under 10 people in the IRC channel and and this thread had around 20 posts, people were still figuring out how to mine the different algos...

Yes, some coins only once hit big mark, and strumble down and never come back. I think that is not ever near the limit of how high MYR can/should go. But we shall see Smiley
dannyboy
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
April 24, 2014, 01:23:45 PM
Last edit: April 24, 2014, 01:51:56 PM by dannyboy
 #3523

Hi all,

I've written a bash script that automatically screen scrapes the GPU algo profitabilities from the block explorer and then switches my mining rig to the most profitable one.  I got tired of doing it manually so with this script in a cron job I never miss switching algos in a timely manner Smiley  I added a line to remove qubit from the running as I don't have a miner built for it at the moment.

Code:
#!/bin/bash

# setup mining commands
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
scryptminer="SCRYPT MINER COMMAND INCLUDING OPTIONS"
groestlminer="GROESTL MINER COMMAND INCLUDING OPTIONS"
skeinminer="SKEIN MINER COMMAND INCLUDING OPTIONS"

# get block explorer and save profitability of GPU algos to file (rounding to whole numbers)
curl -s http://myriad.theblockexplorer.com/ | grep "Coins/Scrypt MH:" | sed 's/^.*Coins\/Scrypt MH:<br> //' | sed 's/\..*$//' > /tmp/profit.txt

# extract profitability into array
s=$(</tmp/profit.txt)
set -- $s
echo "Scrypt:  $1"
echo "Groestl: $2"
echo "Skein:   $3"
echo "Qubit:   $4"

# this line sets qubit to 0 so we never mine it (comment out if you want to start mining this algo)
set -- "${@:1:3}" "0"

echo "Adjusted profits $@"

# search for max profit
count=0
max=0
winner=0
for n in "$@" ; do
    count=$[count + 1]
    if [ $n -gt $max ]
    then
        max=$n
        winner=$count
    fi
done

# now we know which algo is winning, switch to mining it
case "$winner" in
    1) echo "Switching to Scrypt"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $scryptminer &
       ;;
    2) echo "Switching to Groestl"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $groestlminer &
       ;;
    3) echo "Switching to Skein"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $skeinminer &
       ;;
    4) echo "Switching to Qubit"
       ;;
esac

Just put the above code into an file called /usr/local/bin/profit, edit the appropriate lines to add your actual miner commands and run the following (to make it executable):

Code:
chmod +x /usr/local/bin/profit

... and then put the following in your crontab to run it hourly:

Code:
0 * * * *	/usr/local/bin/profit

Enjoy!

Dan

PS:  MYR donations are always welcome MVHD6wGng6WHse1dPtTJRyMbe2KVwvkmG2

PPS:  I should add that there are various refinements that could be made to this but it works well enough for me for the time being.  For example, it could use a proper locking mechanism and process number tracking to prevent having to kill the miner each time it runs.  The "killall" lines are a bit hacky TBH - they just kill all processes that look like miners (ie: in my case cgminer and sgminer).  Much better to track the current miner by its process ID and do a targetted killing Wink
primer-
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
April 24, 2014, 01:58:34 PM
 #3524

Hi all,

I've written a bash script that automatically screen scrapes the GPU algo profitabilities from the block explorer and then switches my mining rig to the most profitable one.  I got tired of doing it manually so with this script in a cron job I never miss switching algos in a timely manner Smiley  I added a line to remove qubit from the running as I don't have a miner built for it at the moment.

Code:
#!/bin/bash

# setup mining commands
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
scryptminer="SCRYPT MINER COMMAND INCLUDING OPTIONS"
groestlminer="GROESTL MINER COMMAND INCLUDING OPTIONS"
skeinminer="SKEIN MINER COMMAND INCLUDING OPTIONS"

# get block explorer and save profitability of GPU algos to file (rounding to whole numbers)
curl -s http://myriad.theblockexplorer.com/ | grep "Coins/Scrypt MH:" | sed 's/^.*Coins\/Scrypt MH:<br> //' | sed 's/\..*$//' > /tmp/profit.txt

# extract profitability into array
s=$(</tmp/profit.txt)
set -- $s
echo "Scrypt:  $1"
echo "Groestl: $2"
echo "Skein:   $3"
echo "Qubit:   $4"

# this line sets qubit to 0 so we never mine it (comment out if you want to start mining this algo)
set -- "${@:1:3}" "0"

echo "Adjusted profits $@"

# search for max profit
count=0
max=0
winner=0
for n in "$@" ; do
    count=$[count + 1]
    if [ $n -gt $max ]
    then
        max=$n
        winner=$count
    fi
done

# now we know which algo is winning, switch to mining it
case "$winner" in
    1) echo "Switching to Scrypt"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $scryptminer &
       ;;
    2) echo "Switching to Groestl"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $groestlminer &
       ;;
    3) echo "Switching to Skein"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $skeinminer &
       ;;
    4) echo "Switching to Qubit"
       ;;
esac

Just put the above code into an file called /usr/local/bin/profit, edit the appropriate lines to add your actual miner commands and run the following (to make it executable):

Code:
chmod +x /usr/local/bin/profit

... and then put the following in your crontab to run it hourly:

Code:
0 * * * *	/usr/local/bin/profit

Enjoy!

Dan

PS:  MYR donations are always welcome MVHD6wGng6WHse1dPtTJRyMbe2KVwvkmG2

PPS:  I should add that there are various refinements that could be made to this but it works well enough for me for the time being.  For example, it could use a proper locking mechanism and process number tracking to prevent having to kill the miner each time it runs.  The "killall" lines are a bit hacky TBH - they just kill all processes that look like miners (ie: in my case cgminer and sgminer).  Much better to track the current miner by its process ID and do a targetted killing Wink

Using http://myriad.theblockexplorer.com/ instead of the wallet getmininginfo output is just insane..
dannyboy
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
April 24, 2014, 02:03:58 PM
 #3525

Using http://myriad.theblockexplorer.com/ instead of the wallet getmininginfo output is just insane..

Not insane, just lazy Wink  getmininginfo give me the difficulties, but some kind soul on the block explorer has done the maths to give "Coins/Scrypt MH" which is a really nice number for comparing the algos.  I'd have to do the extra maths in my script to work out which one was most profitable... which I can do... but scraping the data from the block explorer was one line of code.
dannyboy
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
April 24, 2014, 02:15:50 PM
 #3526

... also using getmininginfo would require running a wallet on my mining rig (or using RPC to connect to one) which further complicates things.  That said, it would probably be an improvement to use getmininginfo, so if someone wants to send me the maths to get from the difficulties of the various algos to "Coins/Scrypt MH" then I'll update my script and post a new version using that.
Watchy312
Member
**
Offline Offline

Activity: 193
Merit: 10


View Profile
April 24, 2014, 02:26:32 PM
 #3527

Is there any news about this coin, seems like it's been a while we have nothing new?
hyeoam
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
April 24, 2014, 02:28:20 PM
 #3528

Charts here: http://crypto-prices.com/MYR

Donate BTC: 1NRG17fYCNcfQvQHC3G9TUAowNKsM4oTWA
foodies123
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
April 24, 2014, 04:04:54 PM
 #3529

Hi all,

I've written a bash script that automatically screen scrapes the GPU algo profitabilities from the block explorer and then switches my mining rig to the most profitable one.  I got tired of doing it manually so with this script in a cron job I never miss switching algos in a timely manner Smiley  I added a line to remove qubit from the running as I don't have a miner built for it at the moment.

Code:
#!/bin/bash

# setup mining commands
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
scryptminer="SCRYPT MINER COMMAND INCLUDING OPTIONS"
groestlminer="GROESTL MINER COMMAND INCLUDING OPTIONS"
skeinminer="SKEIN MINER COMMAND INCLUDING OPTIONS"

# get block explorer and save profitability of GPU algos to file (rounding to whole numbers)
curl -s http://myriad.theblockexplorer.com/ | grep "Coins/Scrypt MH:" | sed 's/^.*Coins\/Scrypt MH:<br> //' | sed 's/\..*$//' > /tmp/profit.txt

# extract profitability into array
s=$(</tmp/profit.txt)
set -- $s
echo "Scrypt:  $1"
echo "Groestl: $2"
echo "Skein:   $3"
echo "Qubit:   $4"

# this line sets qubit to 0 so we never mine it (comment out if you want to start mining this algo)
set -- "${@:1:3}" "0"

echo "Adjusted profits $@"

# search for max profit
count=0
max=0
winner=0
for n in "$@" ; do
    count=$[count + 1]
    if [ $n -gt $max ]
    then
        max=$n
        winner=$count
    fi
done

# now we know which algo is winning, switch to mining it
case "$winner" in
    1) echo "Switching to Scrypt"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $scryptminer &
       ;;
    2) echo "Switching to Groestl"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $groestlminer &
       ;;
    3) echo "Switching to Skein"
       killall cgminer
       killall sgminer
       sleep 3
       /usr/bin/screen -d -m -S miner $skeinminer &
       ;;
    4) echo "Switching to Qubit"
       ;;
esac

Just put the above code into an file called /usr/local/bin/profit, edit the appropriate lines to add your actual miner commands and run the following (to make it executable):

Code:
chmod +x /usr/local/bin/profit

... and then put the following in your crontab to run it hourly:

Code:
0 * * * *	/usr/local/bin/profit

Enjoy!

Dan

PS:  MYR donations are always welcome MVHD6wGng6WHse1dPtTJRyMbe2KVwvkmG2

PPS:  I should add that there are various refinements that could be made to this but it works well enough for me for the time being.  For example, it could use a proper locking mechanism and process number tracking to prevent having to kill the miner each time it runs.  The "killall" lines are a bit hacky TBH - they just kill all processes that look like miners (ie: in my case cgminer and sgminer).  Much better to track the current miner by its process ID and do a targetted killing Wink

for your leasure I can up a special php code that prints only the needed numbers in a page thus eliminating any mysql or load related delays. just pm me and tell me what data you want me to ouput.

nope
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
April 24, 2014, 04:10:15 PM
 #3530


Pools for Myriad:

https://myrgrs.suprnova.cc  - Groestl

&

https://myrskein.suprnova.cc - Skein

&

https://myrq.suprnova.cc - Qubit *NEW*


We got patched Stratum against the diff-Attacks, No fake shares are counted on all our Pools !

Our Groestl Pool would need some power...



All our Pools have now been updated with the latest wallet !


suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
Vyker
Member
**
Offline Offline

Activity: 93
Merit: 10


View Profile
April 24, 2014, 04:23:00 PM
 #3531

Do you get the same performance whichever algo you pick to mine?

I have R9 280x's and I want to know which Algo i should mine with them for best results?

For instance, I know that SHA3 takes 500w less on my rigs than Scrypt, but will it earn the same amount of coins?

Let me know, as I need to turn my rigs to this ASAP Smiley

Go MYR Smiley

lunswor
Full Member
***
Offline Offline

Activity: 159
Merit: 100



View Profile WWW
April 24, 2014, 05:06:14 PM
 #3532

Do you get the same performance whichever algo you pick to mine?

I have R9 280x's and I want to know which Algo i should mine with them for best results?

For instance, I know that SHA3 takes 500w less on my rigs than Scrypt, but will it earn the same amount of coins?

Let me know, as I need to turn my rigs to this ASAP Smiley

Go MYR Smiley



You can see here http://myriad.theblockexplorer.com the coins per mh/s for each algo. It's always jumping around which one gives the most coins. I personally just mine skein. It's low on energy, stable and i can mine in my own pool Smiley

████→→       ● DeepOnion                                                                       ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ 
████→→       ● Tor integrated, 100% anonymous!                                       Get Your FREE Coins NOW!     
████→→       ● Free Airdrop! (No ICO, No Crowdfund)                       ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯
infofront
Legendary
*
Offline Offline

Activity: 2632
Merit: 2780


Shitcoin Minimalist


View Profile
April 24, 2014, 05:26:57 PM
 #3533

$1 price means a 500x increase, so no.

Once this coin catches on, and the price of bitcoin recovers, I'd say $1 coins are fairly likely.
iopq
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
April 24, 2014, 05:44:57 PM
 #3534

... also using getmininginfo would require running a wallet on my mining rig (or using RPC to connect to one) which further complicates things.  That said, it would probably be an improvement to use getmininginfo, so if someone wants to send me the maths to get from the difficulties of the various algos to "Coins/Scrypt MH" then I'll update my script and post a new version using that.

it should be in a config file because 290/290x mines differently than 280x (faster skein, slower groestl for the same scrypt mhash/s)

I made a php script that does the same thing for windows:
https://bitbucket.org/iopq/automatic-algo-switcher-for-myriadcoin/

I scape the difficulties from the JSON api and my config file has the settings for an R9 290
if you want to do it from the wallet and run the wallet I suggest you use the same approach, I have scrypt disabled because it takes too much power

what you might want to also do is scrape the price info, let the user specify the power usage of each algo (and $/watt), and calculate the most profitable algo based on current price and selling immediately after mining
primer-
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
April 24, 2014, 07:38:40 PM
 #3535

No buy support @0.00000364 ?? sad.
asdf_files
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
April 24, 2014, 07:40:17 PM
 #3536

No buy support @0.00000364 ?? sad.

It's bad investment Angry
ivanlabrie
Hero Member
*****
Offline Offline

Activity: 812
Merit: 1000



View Profile
April 24, 2014, 07:46:27 PM
 #3537

Good moment to buy back in...  Cool
primer-
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
April 24, 2014, 07:48:44 PM
 #3538

Where are the kids promoting Brazil and that junkie Bryce ...
gaazje
Sr. Member
****
Offline Offline

Activity: 452
Merit: 250


View Profile WWW
April 24, 2014, 07:50:47 PM
 #3539

Good moment to buy back in...  Cool

░▒▓█ / / /X42/ / / WELCOME TO FEELESS FUTURE! █▓▒░
novag
Hero Member
*****
Offline Offline

Activity: 687
Merit: 500


novag


View Profile WWW
April 24, 2014, 08:17:00 PM
 #3540

Ok Smiley

Donate for the support of a new Martial arts Style - Aikivindo = Aikido + Wing-Chun (in Ukraine) 5168757318423326 PrivatBank.
http://aikivindo.com.ua
BTC:1DpRaQjdVmrkSopRV8p9RdwvBMWNA9faCS
Pages: « 1 ... 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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 [177] 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 ... 413 »
  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!