Search content
Sort by

Showing 20 of 44 results by steganos
Post
Topic
Board Altcoin Discussion
Re: FREE DEVCOINS!!!!
by
steganos
on 25/06/2013, 16:59:25 UTC
1G4oHDZzPDWbpba32w7yhabWtw9ZHCytC1

Thanks.
Post
Topic
Board Altcoin Discussion
Re: FREE DEVCOINS!!!!
by
steganos
on 25/06/2013, 16:58:27 UTC
Almost there.
Post
Topic
Board Altcoin Discussion
Re: [GIVEAWAY] Free devcoin faucet - 20DVC per person!
by
steganos
on 23/06/2013, 20:34:50 UTC
DFkaTdYuQhmFKHht5Y56SA3BvRc6Q6Xfoh

Thanks.
Post
Topic
Board Trading Discussion
Re: Gekko - a javascript trading bot for nodejs
by
steganos
on 17/06/2013, 23:24:07 UTC
The latest version quites for me immediately after sending a notification email:

Quote
2013-06-17 17:24:58 (DEBUG):    fetching new trades for new bucket at Mt. Gox
2013-06-17 17:25:01 (DEBUG):    calculated candle: 0
2013-06-17 17:25:01 (DEBUG):    calced EMA properties for new candle:
2013-06-17 17:25:01 (DEBUG):             short ema 101.493
2013-06-17 17:25:01 (DEBUG):             long ema 101.179
2013-06-17 17:25:01 (DEBUG):             diff ema 0.310
2013-06-17 17:25:01 (DEBUG):    we are currently in uptrend (0.310)
2013-06-17 17:25:01 (INFO):     ADVICE is to BUY @ 101.837 (0.310)
~/gekko $

Post
Topic
Board Trading Discussion
Re: Gekko - a javascript trading bot for nodejs
by
steganos
on 15/06/2013, 04:23:51 UTC
Thank you. That is a good thing to be aware of.
Post
Topic
Board Trading Discussion
Re: Gekko - a javascript trading bot for nodejs
by
steganos
on 14/06/2013, 15:48:41 UTC
Previous tick:

Quote
013-06-13 15:00:04 (DEBUG):    calculated new tick: 0  price: 108.969  diff: -0.006
2013-06-13 15:00:04 (DEBUG):    we are currently not in an up or down trend  (-0.006)
2013-06-13 15:00:04 (INFO):     ADVICE is to HOLD @ 108.969 (-0.006)

A sell was triggered at a later tick:

Quote
2013-06-13 17:00:05 (DEBUG):    calculated new tick: 0  price: 102.060  diff: -0.623
2013-06-13 17:00:05 (DEBUG):    we are currently in a downtrend  (-0.623)
2013-06-13 17:00:05 (INFO):     ADVICE is to SELL @ 102.060 (-0.623)

How far back does Gekko look when when choosing trades to use for the EMA?  I don't remember for sure, but I think the price had started to drop quickly by about 10 minutes before the hour.
Post
Topic
Board Trading Discussion
Re: Gekko - a javascript trading bot for nodejs
by
steganos
on 13/06/2013, 22:24:32 UTC
For some reason Gekko just missed a sell signal.

Quote
2013-06-13 16:00:04 (DEBUG):    refreshing
2013-06-13 16:00:04 (DEBUG):    fetching exchange...
2013-06-13 16:00:05 (DEBUG):    fetched exchange
2013-06-13 16:00:05 (DEBUG):    calculated new tick: 0  price: 108.300  diff: -0.058
2013-06-13 16:00:05 (DEBUG):    we are currently not in an up or down trend  (-0.058)
2013-06-13 16:00:05 (INFO):     ADVICE is to HOLD @ 108.300 (-0.058)

These times are Mountain time so that would be 22:00 UTC.

bitcoincharts.com shows that ema(21) was about 107.9 and ema(10) was about 106.9 at that time.

http://bitcoincharts.com/charts/mtgoxUSD#rg2zigHourlyzczsg2013-06-13zeg2013-06-14ztgSza1gEMAzm1g10za2gEMAzm2g21zi1gMACDzi2gATRzv

This should have triggered a sell with the settings that I am using.  Is there a bug?

Quote
// Exponential Moving Averages settings:
config.EMA = {
  // timeframe per candle
  interval: 60, // in minutes
  // EMA weight (α)
  // the higher the weight, the more smooth (and delayed) the line
  shortEMA: 10,
  longEMA: 21,
  // amount of samples to remember and base initial EMAs on
  ticks: 100,
  // max difference between first and last trade to base price calculation on
  sampleSize: 10, // in seconds
  // the difference between the EMAs (to act as triggers)
  sellTreshold: -0.125,
  buyTreshold: 0.125
};

config.watch = {
  exchange: 'MtGox',
  currency: 'USD',
  asset: 'BTC'
}

Edit:  modified formatting for easier reading.
Post
Topic
Board Service Announcements (Altcoins)
Re: Free profit/loss portfolio manager for Bitcoins and all other digital currencies
by
steganos
on 05/06/2013, 22:01:19 UTC
Great news for all miners and persons receiving donations.
A tool for automated tracking of BTC inputs and outputs is almost ready.

You can even get your mining costs automatically calculated.
And if you want, you will be notified by mail of the transfer.

Sit back and let your account tracking by itself Wink
Should go live tomorrow.

Fantastic! I was just coming back to this thread to ask what the best way to handle mined coins would be.
Post
Topic
Board Mining software (miners)
Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.2.0
by
steganos
on 31/05/2013, 17:31:08 UTC
I wrote a bash script that will check to see if a newer version of cgminer is available.  If there is a newer version the script will download the pre-built version and extract it. 

Here is the script if anybody is interrested:

Code:
#!/bin/bash
server=http://ck.kolivas.org
path=/apps/cgminer/

#; Get the file name for the latest version
cgminer=`wget -q -O- $server$path | egrep -o cgminer-[0-9\.]+-x86_64-built.tar.bz2 | sort -V | tail -1`

#; Get the folder name that the downloaded file should be extracted to
folder="${cgminer%.tar.bz2}"
version="${folder%-x86_64-built}"
version="cgminer ${version##*-}"

echo "Latest version is $version"

#; Check to see if this version is already installed.
if [ ! -d $folder ]
then
        echo "Downloading $version..."
        #; Download the file
        wget -q $server$path$cgminer

        echo "Installing $version..."
        #; Extract cgminer
        tar -xjf $cgminer
        #; Create a symbolic link to the new folder so we can keep older versions and the latest version can always be found in "cgminer"
        if [ -L cgminer ]
        then
                rm cgminer
        fi
        ln -s $folder cgminer
        #; Remove the downloaded file
        rm $cgminer
else
        echo "Already have $version"
fi

Post
Topic
Board Announcements (Altcoins)
Re: [ANN] eMulah (EMU) - NOT a BitCoin fork/clone - call for beta testers
by
steganos
on 30/05/2013, 21:45:33 UTC
I would like to be a beta tester.
Post
Topic
Board Economics
Re: BTC-E PHP Currency Arbitrage Bot Full Code
by
steganos
on 30/05/2013, 02:29:09 UTC
Thank you for the excellent explanation.
Post
Topic
Board Economics
Re: BTC-E PHP Currency Arbitrage Bot Full Code
by
steganos
on 29/05/2013, 22:10:24 UTC
Is arbitrage still profitable? and how has your experience been so far running this?

Arbitrage is less profitable now that a lot of bots exist.   As I said I have abandoned this for a rolling buy sell bot which is proving more profitable.  I did make several B over the course of a few weeks using this bot.  I would think that other exchanges and auto transfers could be added in order to take advantage of the dozen or so alts out there with different prices and faster transaction times than B.

All of that said.  I'm not one to turn down making even $.01 a day while I sleep, eat and work.  Free money is free money.

Can you point a noob to something that explains what the strategy is for a rolling buy sell bot?

Thanks.
Post
Topic
Board Mining software (miners)
Re: ANUBIS - a CGMINER Web Frontend
by
steganos
on 29/05/2013, 19:06:24 UTC
That looks awesome MWNinja!  

I'd like to know more about what BeagleBone Black is.

edit:  Nevermind.  This explains it http://beagleboard.org/Products/BeagleBone%20Black

Thanks.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DGC] DigitalCoin.Co || Instant | Stable | Reliable || ~UPDATED~
by
steganos
on 29/05/2013, 18:50:43 UTC
Concerning p2pool I have updated some setting in github to reduce orphan between nodes : https://github.com/hakabane/p2pool-altcoins.git

I have relocated http://pool.bounceme.net:24397 to http://pool.bounceme.net:25397 with this new code, also switched it to the netherland server and added 1% fee.

To make it clear for the pool list :
Add:
http://pool.bounceme.net:25397 - akabane | 1% | Amsterdam, Netherlands (LeaseWeb)

Remove:
http://95.211.25.2:24397 - akabane | 0% | Amsterdam, Netherlands (LeaseWeb)
http://pool.bounceme.net:24397 - akabane | 0% | Paris, France (OVH)



I pulled the lastest code from github and now I am getting this error repeatedly:

Code:
HARMLESS error while reading saved shares, continuing where left off:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 551, in _runCallbacks
    current.result = callback(current.result, *args, **kw)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1101, in gotResult
    _inlineCallbacks(r, g, deferred)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1045, in _inlineCallbacks
    result = g.send(result)
  File "/home/steganos/mining/p2pool-altcoins/p2pool/main.py", line 105, in main
    for i, (mode, contents) in enumerate(ss.get_shares()):
--- ---
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 651, in get_shares
    share = load_share(raw_share, self.net, None)
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 48, in load_share
    return Share(net, peer_addr, Share.share_type.unpack(share['contents']))
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 275, in __init__
    raise p2p.PeerMisbehavingError('share PoW invalid')
p2pool.p2p.PeerMisbehavingError: share PoW invalid

Everything was working fine before I pulled the latest code.  All I did was stop p2pool, pull the latest code, and start p2pool.  What do I need to do to fix it?

Thanks

delete the data file that should fix it digital  one

I want to make sure I am deleting the correct data file.  Do you mean ~/.digitalcoin/blk*.dat, or something in .../p2pool-altcoins/data/digital/, or something else?

Thanks.

For anybody else that has this problem, I needed to delete the .../p2pool-altcoins/data/digital/ directory.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DGC] DigitalCoin.Co || Instant | Stable | Reliable || ~UPDATED~
by
steganos
on 29/05/2013, 14:59:43 UTC
Concerning p2pool I have updated some setting in github to reduce orphan between nodes : https://github.com/hakabane/p2pool-altcoins.git

I have relocated http://pool.bounceme.net:24397 to http://pool.bounceme.net:25397 with this new code, also switched it to the netherland server and added 1% fee.

To make it clear for the pool list :
Add:
http://pool.bounceme.net:25397 - akabane | 1% | Amsterdam, Netherlands (LeaseWeb)

Remove:
http://95.211.25.2:24397 - akabane | 0% | Amsterdam, Netherlands (LeaseWeb)
http://pool.bounceme.net:24397 - akabane | 0% | Paris, France (OVH)



I pulled the lastest code from github and now I am getting this error repeatedly:

Code:
HARMLESS error while reading saved shares, continuing where left off:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 551, in _runCallbacks
    current.result = callback(current.result, *args, **kw)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1101, in gotResult
    _inlineCallbacks(r, g, deferred)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1045, in _inlineCallbacks
    result = g.send(result)
  File "/home/steganos/mining/p2pool-altcoins/p2pool/main.py", line 105, in main
    for i, (mode, contents) in enumerate(ss.get_shares()):
--- ---
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 651, in get_shares
    share = load_share(raw_share, self.net, None)
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 48, in load_share
    return Share(net, peer_addr, Share.share_type.unpack(share['contents']))
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 275, in __init__
    raise p2p.PeerMisbehavingError('share PoW invalid')
p2pool.p2p.PeerMisbehavingError: share PoW invalid

Everything was working fine before I pulled the latest code.  All I did was stop p2pool, pull the latest code, and start p2pool.  What do I need to do to fix it?

Thanks

delete the data file that should fix it digital  one

I want to make sure I am deleting the correct data file.  Do you mean ~/.digitalcoin/blk*.dat, or something in .../p2pool-altcoins/data/digital/, or something else?

Thanks.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DGC] DigitalCoin.Co || Instant | Stable | Reliable || ~UPDATED~
by
steganos
on 29/05/2013, 14:18:33 UTC
Concerning p2pool I have updated some setting in github to reduce orphan between nodes : https://github.com/hakabane/p2pool-altcoins.git

I have relocated http://pool.bounceme.net:24397 to http://pool.bounceme.net:25397 with this new code, also switched it to the netherland server and added 1% fee.

To make it clear for the pool list :
Add:
http://pool.bounceme.net:25397 - akabane | 1% | Amsterdam, Netherlands (LeaseWeb)

Remove:
http://95.211.25.2:24397 - akabane | 0% | Amsterdam, Netherlands (LeaseWeb)
http://pool.bounceme.net:24397 - akabane | 0% | Paris, France (OVH)



I pulled the lastest code from github and now I am getting this error repeatedly:

Code:
HARMLESS error while reading saved shares, continuing where left off:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 551, in _runCallbacks
    current.result = callback(current.result, *args, **kw)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1101, in gotResult
    _inlineCallbacks(r, g, deferred)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1045, in _inlineCallbacks
    result = g.send(result)
  File "/home/steganos/mining/p2pool-altcoins/p2pool/main.py", line 105, in main
    for i, (mode, contents) in enumerate(ss.get_shares()):
--- ---
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 651, in get_shares
    share = load_share(raw_share, self.net, None)
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 48, in load_share
    return Share(net, peer_addr, Share.share_type.unpack(share['contents']))
  File "/home/steganos/mining/p2pool-altcoins/p2pool/data.py", line 275, in __init__
    raise p2p.PeerMisbehavingError('share PoW invalid')
p2pool.p2p.PeerMisbehavingError: share PoW invalid

Everything was working fine before I pulled the latest code.  All I did was stop p2pool, pull the latest code, and start p2pool.  What do I need to do to fix it?

Thanks
Post
Topic
Board Altcoin Discussion
Re: [BOUNTY 10BTC] Mining FTC blocks 1BTC@32880,32900,32920,32940,32960 5BTC@33,000
by
steganos
on 23/05/2013, 17:12:49 UTC
and 33000 is mined, not by me  Undecided

Looks like it was mined by marduke at wemineftc.com. 
Post
Topic
Board Altcoin Discussion
Re: DGC digitalcoin.co Fountain
by
steganos
on 21/05/2013, 20:32:18 UTC
D9Y2FT46iXBj6jHyhxuav2bh33ZTW4LCZ2

Thanks.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DGC] DigitalCoin.Co || Instant | Stable | Reliable || LAUNCHED
by
steganos
on 21/05/2013, 18:04:06 UTC
Cryptcoins.net has a digital coin pool now, http://digi.cryptcoins.net

It seems there is a large backlog of unpaid shares.  I have been mining there for about 3 hours and have only recently started getting paid for shares.  However, those payments are only for recent blocks, and not for blocks that the pool found during the first couple of hours that I was mining here.  Can you take a look at this?

Thanks.
Post
Topic
Board Altcoin Discussion
Re: FeatherCoin Pool - Stratum
by
steganos
on 21/05/2013, 17:39:10 UTC
Still no news from Viperaus. How long are we supposed to wait until we take appropriate measures / retaliatory action against Troy Dear and his webhosting / domain name "empire" for ignoring/defrauding miners ?

I'm always willing to give someone the benefit of the doubt, but this is really getting old fast...

Unfortunately he's not logged in since the 13th, and his email isn't listed. Does anyone know another way to get in touch with him? I'd like to help him get out of this predicament and make good on his debts.

In the mean time there's plenty of good pools. Check the Mining forum over at feathercoin.com: http://forum.feathercoin.com/index.php?board=2.0

I think there is an account by the same name on forum.litecoin.net.  I saw a user post by the name of Viperaus post about a week ago, and from the content of the post, it sounds like it might be the same guy.  Unfortunately, I have not been able to access forum.litecoin.net since yesterday, so this is all based on my memory from about 1 seek ago.  Is it down for anybody else?