Thanks for adding X15 algo!
On the site multi algo page there is instructions for setting up NVIDIA/ccminer cards. It could do with adding an AMD/sgminer combo. If the conf below looks good, you could use it as an example. Also, there should be instructions for normalising algos to the card, which is worthwhile doing as card algo outputs can vary considerably. I think the way to do this is to determine the hash rate of each algo for the card, and then normalise it to another algo (e.g. scrypt output). If algo output is 1000 kH/s and scrypt output is 100 kH/s, then algo normalisation factor is 1000/100 = 10. (Note: use the hash rate reported by the miner, rather than the 5 min 'luck' based hash rate reported on the site by share submissions. This figure will vary more than the miner hash rate)
The below conf example I have used on sgminer 5.2.1. On default failover, add most used algos to the top of the list, or set up round-robin failover instead. Note intensity, thread-concurrency factors also need to be set appropriate to the card. AMD/sgminer needs quite a lot of fine tuning.
{
"pools" : [
{
"name" : "X11",
"url" : "stratum+tcp://mine.zpool.ca:3533",
"user" : "myAddress",
"pass" : "c=BTC,x11=10.4,x13=5.7,x15=5.1,lyra2v2=8.7",
"algorithm" : "X11",
"intensity" : "20",
"thread-concurrency" : "8000"
},
{
"name" : "X13",
"url" : "stratum+tcp://mine.zpool.ca:3633",
"user" : "myAddress",
"pass" : "c=BTC,x11=10.4,x13=5.7,x15=5.1,lyra2v2=8.7",
"algorithm" : "X13",
"intensity" : "20",
"thread-concurrency" : "8000"
},
{
"name" : "X15",
"url" : "stratum+tcp://mine.zpool.ca:3733",
"user" : "myAddress",
"pass" : "c=BTC,x11=10.4,x13=5.7,x15=5.1,lyra2v2=8.7",
"algorithm" : "X15",
"intensity" : "20",
"thread-concurrency" : "8000"
},
{
"name" : "Lyra2v2",
"url" : "stratum+tcp://mine.zpool.ca:4533",
"user" : "myAddress",
"pass" : "c=BTC,x11=10.4,x13=5.7,x15=5.1,lyra2v2=8.7",
"algorithm" : "lyra2v2",
"intensity" : "18",
"thread-concurrency" : "8000"
}
]
}