Bitcoin Forum
October 01, 2025, 08:31:46 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] leonArdo - Bitcoin Trading Bot for Poloniex, Bittrex, Bitstamp, Bitfinex.. on: December 26, 2017, 11:02:20 AM
I'm using the Demo now for bittrex, but 1 thing i don't understand,

I have in total 0.02BTC to trade, while im not checking for a few hours, the amount of btc is at 0.03 but i didn't sell anything i only bought some alt coins. Is this a bug? or how does it work.
2  Alternate cryptocurrencies / Mining (Altcoins) / How: Ethos check hasrate reboot script on: July 21, 2017, 02:53:14 PM
So i saw this script on github.com, but i could not get it started maybe someone els using this script?
Im using EthOS, Claymoreminer

Code:
import subprocess
import os
import re
import sys
import argparse
import httplib, urllib

def pushover_message(title, message, app_token, user_token):
conn = httplib.HTTPSConnection("api.pushover.net:443")
conn.request("POST", "/1/messages.json",
  urllib.urlencode({
    "token": app_token,                       # Insert app token here
    "user": user_token,                       # Insert user token here
    "title": title,                  # Title of the message
    "message": message            # Content of the message
  }), { "Content-type": "application/x-www-form-urlencoded" })
return conn.getresponse()

parser = argparse.ArgumentParser()

parser.add_argument(
'-f',
'--checkfilepath',
dest='check_file_path',
help="path to store temporary file at if reboot criteria is met, but we need to wait until next time this script runs, check if that file exists, criteria are till met and then reboot",
default="/tmp/reboot_conditions_met_last_time.txt"
)

parser.add_argument('-a', '--pushover_app_token', dest='pushover_app_token',  help="app token for pushover service for push notifications on reboot")

parser.add_argument('-u', '--pushover_user_token', dest='pushover_user_token',  help="user token for pushover service for push notifications on reboot")

args = parser.parse_args()

update_data = subprocess.check_output(['update'])

hash = None
miner_id = ''

for line in update_data.splitlines():
if 'hash:  ' in line:
hash_line = line
hash_list = re.findall(r'\d+\.\d+', hash_line)

if len(hash_list) > 0:
hash = float(hash_list[0])

elif 'hostname:   ' in line:
hostname_list = re.findall(r'\w+', line)
if len(hostname_list) > 1:
miner_id = hostname_list[1]


if not hash:
#criteria are met
#check if file exists, meaning that conditions were met last time
if os.path.isfile(args.check_file_path):
print 'file here'
os.remove(args.check_file_path)
if args.pushover_user_token and args.pushover_app_token:
pushover_message(
'Miner {} restarted'.format(miner_id),
'Miner {} reached hash rate of 0'.format(miner_id),
args.pushover_app_token,
args.pushover_user_token
)
os.system("r")
else:
# create a file so that next time we know if has been at state for a while
os.system('touch {}'.format(args.check_file_path))
else:
# if the checkfile exists, remove it because the conditions are no longer met
if os.path.isfile(args.check_file_path):
os.remove(args.check_file_path)
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v9.7 (Windows/Linux) on: July 16, 2017, 04:06:32 PM
Im trying to dual mine on EthOS, but its not working yet, ETH is working, i set everyting up as requested bye someone els, but we cant find it what the problem can be? Anyone got to know it.

claymore.stub.conf
___________

# WARNING! Remove "#" characters to enable lines, with "#" they are disabled and will be ignored by miner! Check README for details.
# WARNING! Miner loads options from this file only if there are not any options in the command line

-colors 1
-dbg -1
-esm STRATUMTYPE
-epool POOL1
-ewal WALLET
-epsw PASSWORD1
-eworker WORKER
-allpools 1
-gser 2
-allcoins 1
-wd 0

#uncomment and configure the -dpool and -dwal lines below to enable dualmining.
-mode 0

#-ewal 0x81d70F0C545750d3DAe1CD78B503fDcD9Fxxxxx
-dpool stratum+tcp://sia-eu2.nanopool.org:7777
-dwal df624983c65b194444539293aa1cdf0b7aae0410e9bdffc585daad117fd2421ab7450286xxxxx/Rig/Mail
-dcoin sia
-dcri 16
#-dpsw x
#-esm 1
#-mode 0
#-tt 70


So after more struggling, i still cant fix it :/
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v9.7 (Windows/Linux) on: July 16, 2017, 06:48:50 AM
Im trying to dual mine on EthOS, but its not working yet, ETH is working, i set everyting up as requested bye someone els, but we cant find it what the problem can be? Anyone got to know it.

claymore.stub.conf
___________

# WARNING! Remove "#" characters to enable lines, with "#" they are disabled and will be ignored by miner! Check README for details.
# WARNING! Miner loads options from this file only if there are not any options in the command line

-colors 1
-dbg -1
-esm STRATUMTYPE
-epool POOL1
-ewal WALLET
-epsw PASSWORD1
-eworker WORKER
-allpools 1
-gser 2
-allcoins 1
-wd 0

#uncomment and configure the -dpool and -dwal lines below to enable dualmining.
-mode 0

#-ewal 0x81d70F0C545750d3DAe1CD78B503fDcD9Fxxxxx
-dpool stratum+tcp://sia-eu2.nanopool.org:7777
-dwal df624983c65b194444539293aa1cdf0b7aae0410e9bdffc585daad117fd2421ab7450286xxxxx/Rig/Mail
-dcoin sia
-dcri 16
#-dpsw x
#-esm 1
#-mode 0
#-tt 70
5  Alternate cryptocurrencies / Mining (Altcoins) / Re: EthOS / Claymore 9.0 Dual Mining ETH and SIA on: July 16, 2017, 01:07:51 AM
Can someone check this config? im not able to get it working: http://paste.ethosdistro.com/moqumumoru   
6  Alternate cryptocurrencies / Mining (Altcoins) / Unstable, Gigabyte Mobo, GTX 1070 on: July 15, 2017, 03:22:27 PM
Hey all,

My Specs are:

Intel Celereon G3930
Gigabyte GA Z170 Gaming K3
8GB DDR4 RAM
60GB SSD
6x MSI GTX 1070 ARMOR OC
1200w Corsair

Problem:

When i bought my last GPU, i connected it, pc wont boot normal, it goes do the second bios automatic i think so there is some failure?
I cant find the problem, and its only when i connect 6 GPU's does anyone here runs the same motherboard with 6 GPU's?
When u use 6 cars, the MH\s is bouncing up and down. from 30mhs to 15->8 and again up. How is this possible? i tried everything with Afterburner current settings are:
Power Limit 70% Mem Clock +700, it was all the time stable with 5 cars, disconnected differed cards if there was a problem with the 6th card but nothing.


And atm. i am using Claymore dual miner
Driver version 384,76 because windows did it automatically
pool: Ethermine, Sia Nanopool
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!