Search content
Sort by

Showing 20 of 23 results by KamiN
Post
Topic
Board Pools (Altcoins)
Re: [ANN][POOL] Profit switching pool - wafflepool.com
by
KamiN
on 04/02/2014, 19:42:52 UTC
Looks like it's shaping up to be a pretty decent day.


Hopefully. I switched about 4 days ago from Middlecoin, just when the bad luck streak started... So far I get only 25% of what I get at Middlecoin on average. I'm gonna try a few more days, hopefully it'll get better. I do like that waffle has more transparency & better communication.
Post
Topic
Board Service Announcements
Re: BitcoinWisdom.com - Live Bitcoin/LiteCoin Charts
by
KamiN
on 09/12/2013, 23:53:42 UTC
Hey there,

I want to create an interactive line graph of my own for calculating some things - for this I want to use Bitstamp API data of prices and draw the chart. In the API of Bitstamp I can only fetch hourly or minute data. Anything older than that is seemingly not supported. I'd like to ask, where does your data come from? Did you accumulate it yourself over time? Is that data available through a bitcoinwisdom API or something similar?

Please let me know - thanks! Smiley

Post
Topic
Board Pools (Altcoins)
Re: [ANN] profit switching auto-exchanging pool - middlecoin.com
by
KamiN
on 06/12/2013, 17:18:22 UTC
I mined for a few hours yesterday to try this out, and it shows on the site 0.00113072 paid out to my address 1NQKqxXXDmEgVtecjczM6TTtb17DrnC4Tq

I haven't received the BTC, and nothing shows up on blockchain.info either, any ideas why this might be?


On the site they don't show up as "paid out" yet. The payout (for me, at least) is around 4AM, Amsterdam time.
Post
Topic
Board Pools (Altcoins)
Re: [ANN] profit switching auto-exchanging pool - middlecoin.com
by
KamiN
on 06/12/2013, 12:01:35 UTC
If possible, could you edit the template that prints:
Code:
address
to print:
Code:
address
so I can go to http://middlecoin.com/#address
?

Done.

In addition, could you also set the table head in ? It is currently listed in the .

Ok, I added thead and tbody tags. I'm not sure what that did though. It looks the same in chrome.

Hi,

I wanted a way to search addresses. This snippet will give the realtime search functionality. That's why I wanted thead separated, otherwise when filtering the header disappears as well Smiley
It'll work with Tampermonkey - added as a gist here as well.

I might add other functions later.
Code:
// ==UserScript==
// @name Middlecoin utilities
// @namespace http://middlecoin.com/
// @version 0.1
// @description Some extras for middlecoin, i.e. table search filter
// @match http://middlecoin.com/
// @copyright 2012+, KamiNuvini
// @run-at document-end
// @require http://code.jquery.com/jquery-2.0.3.min.js
// ==/UserScript==
 
// Realtime address search
$('table').before('');
 
// Search snippet, thanks to dfsq at StackOverflow - http://stackoverflow.com/questions/9127498/how-to-perform-a-real-time-search-and-filter-on-a-html-table
var $rows = $('table tbody tr');
 
$('#search').keyup(function() {
    var val = $.trim($(this).val()).replace(/ +/g, ' ').toLowerCase();
 
    $rows.show().filter(function() {
        var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
        return !~text.indexOf(val);
    }).hide();
});
// End of realtime address search
Post
Topic
Board Pools (Altcoins)
Re: [ANN] profit switching auto-exchanging pool - middlecoin.com
by
KamiN
on 05/12/2013, 19:40:39 UTC
If possible, could you edit the template that prints:
Code:
address
to print:
Code:
address
so I can go to http://middlecoin.com/#address
?

In addition, could you also set the table head in ? It is currently listed in the .
Post
Topic
Board Trading Discussion
Re: bitcoinity.org/markets - live bitcoin price charts
by
KamiN
on 17/11/2013, 14:33:43 UTC
Comboy, thanks for offering this service and the awesome pictures that sometimes pop up Wink

Do you have any plans on going open source?
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 15/11/2013, 15:26:37 UTC
I was going to build trading packages in VM's for my little cousin's for their college funds, but after talking to their parents, who would rather see me spend that money on myself, I won't be doing so anymore. Oh well. Its that thought that counts right?
It's a very nice idea.

Hello,

I'd strongly suggest against putting your bitcoin wallets in hosted virtual machines / virtual private servers (VPSs), as the owner of such infrastructure has full access to the VMs and can copy your wallets and use the funds at any point.

You don't really need the wallets until you want to pull out the BTCs, if you ever want to. So the wallet doesn't have to exist on the VM. Just let the bot run on the VM and make sure to restrict the API key to disallow it from withdrawing any funds.

It might be cheaper to buy a RaspberryPi per person and run them from home.

I think he meant his own VMs, as in running an ESXi/Xen server at home. I do the same for my own butter bot at the moment, so it can run 24/7.
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 14/11/2013, 17:47:33 UTC
I've been having a go at trying out some numbers in backtesting.... Could anyone tell me if they're any good/advice?

http://i.imgur.com/Af10aLll.png
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 14/11/2013, 13:42:32 UTC
Since you say automated backend testing is resourceful (understandable ) - isn't it possible to download the "database" of the market over the last 1/3/6/12(+?) months and do the testing locally? That way all calculations would be done on the machine itself so it's not using all the resources of whatever server it is using for backend testing.

Just a random idea that might be handy..
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 10/11/2013, 17:38:41 UTC
Have you read this? http://www.theverge.com/2013/11/7/5077856/google-for-windows-to-prohibit-browser-extensions-not-in-chrome-web-store

Chrome will not allow manual extensions installations anymore

I read it - but from what I understand you'll still be able to use the dev-versions to install these extensions. If they really make it impossible through Chrome (which would be very bad and dissapointing) it'll probably still be possible through Chromium / Comodo Dragon
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 10/11/2013, 15:28:35 UTC
lol pablo,

butter made me 60$ this night... while beeing turned off Wink

lucky me, cause it could have been the other way round.
but the crusial update does fix this, right?

What am I missing... how did it trade while turned off?

BTW Butter made me bank tonight too... & hit really well on the rebound... happy with the settings.  But... mine was turned on lol.

Sean, can I ask you which settings you are using?
I'm still using the standard settings with 2hr intervals on mtGox - which hasn't triggered a sell since yesterday evening.

I was lucky enough to get woken up by my cats this night / morning, so I could buy some extra coins at the lowest point (220€) though Cheesy

Before I answer that can someone walk me through how to embed pictures in a post here?  I see it done, and I would like to illustrate my answer.

Upload the image to a site like imgur.com - (imgur.com -> At upload click "Computer", browse to the image and upload it..) Once the upload is done, on the right side you'll see some links, one of them says BBcode (which has [img]http://imgur.com/[/img] in it). You can post that here, when it is in the img tags it'll embed as a picture Smiley

EDIT: To clarify why your google drive thing won't work - it expects a direct image in the img tags - you give it a website. The forum doesn't know which part of the website (the google drive thing) is the actual image, so it fails to parse.
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 10/11/2013, 14:18:37 UTC
i read your posts

but i am commenting in the chart for btc-e that is showing under the arrow unless that is the chart for bitcoincharts.

it says connected and waiting to see what happens

and thanks for your help

The graphs are loaded from bitcoincharts.com - since bitcoincharts.com is having issues at the moment they won't show Wink

Once bitcoincharts is working again the charts will show up as well in butterbot.
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 10/11/2013, 13:45:43 UTC
i see it now but the chart keeps loading and never shows up

will it still place trades?

this is what i am getting http://prntscr.com/236kdx

... You're not reading my posts, let me quote it again:
Quote
Ryan, see https://bitcointalk.org/index.php?topic=329934.0 - it's an issue with bitcoincharts Sad

And even without the charts - it should still trade as far as I know.
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 10/11/2013, 13:18:45 UTC
Ryan, see https://bitcointalk.org/index.php?topic=329934.0 - it's an issue with bitcoincharts Sad

All is well if you have this icon:
http://i.imgur.com/RadY3JD.png

i dont see a chart when i click on the btc-e tab i only see my api and there is no check mark or pause on mine.

You should see them when clicking the ButterBot icon right of the address-bar. See my previous reply for the chart issue.
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 10/11/2013, 13:06:46 UTC
Ryan, see https://bitcointalk.org/index.php?topic=329934.0 - it's an issue with bitcoincharts Sad

All is well if you have this icon:
http://i.imgur.com/RadY3JD.png
Post
Topic
Board Service Discussion
Re: Bitcoincharts hacked?
by
KamiN
on 10/11/2013, 12:38:49 UTC
Alternative in the meantime:

https://bitcoinaverage.com/

(I'm getting the same posted website)

And it's open-source, that's awesome. Wish there were more sites out there like bitcoincharts / bitcoinwisdom / bitcoinity that were open-source.
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 08/11/2013, 21:25:21 UTC
Unlikely this is planned - but I'll ask just to be sure... With hosted coming, are there also plans for self-hosted without a GUI? e.g. run just as a CLI program/daemon? I currently run it on a home server VM with a gnome/Chrome installed. It'd be awesome to be able to just run it as a service in the background without a GUI needed - and perhaps configure it through a web interface?
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 05/11/2013, 14:41:12 UTC
Hi,

Got another question - what happens during a strong rise or drop, one that would trigger a buy/sell, but when it tries to do so, the API towards Bitstamp is being slow/unresponsive. It gives the notification that it will automatically recover - but will it keep trying and trying straight away, or will it just wait and try again at the next "Trade frequency"-point?

Thanks!

Hi Kami Smiley,
  It will hit the API periodically until it can execute the trade.

I hope that answers your question, please let me know if you need anything at all Smiley.

Pablo.

Yes it does, that's great. Thanks Smiley
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 05/11/2013, 12:23:20 UTC
Hi,

Got another question - what happens during a strong rise or drop, one that would trigger a buy/sell, but when it tries to do so, the API towards Bitstamp is being slow/unresponsive. It gives the notification that it will automatically recover - but will it keep trying and trying straight away, or will it just wait and try again at the next "Trade frequency"-point?

Thanks!
Post
Topic
Board Services
Re: Butter Bot!: New Bitstamp, BTC-E, and MtGox EMA Trading Platform
by
KamiN
on 04/11/2013, 09:35:54 UTC
Grinny - I used your referral and code. You should probably update the link though, since it didn't work (https://www.btcbots.com/?r=d40b15a3). This is because btcbots.com doesn't have https. I changed it to https://butter-bot.com/?r=d40b15a3 and that seemed to work Smiley

Anyways, I got the bot running. Now let's see how it goes Smiley