Bitcoin Forum
June 25, 2024, 02:45:26 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 »
241  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 28, 2013, 05:14:33 PM
what is it with those dwolla, okpay and so on, why do u.s. citizen need such enterprises?
dont you have wire transfer as in europe: you give your bank a account number, the sum to transfer and 1day to 10 days after its done. the whole thing works with webinterfaces of the banks too. why take a third party for that???
242  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 26, 2013, 11:31:45 AM
q question, is there already a definition for a "tick" for bitcoin? 0.01?
243  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 21, 2013, 11:14:00 AM
rigor mortis
244  Economy / Speculation / Re: [Mt. Gox Chart] Trying to get the best out of Gnuplot on: May 19, 2013, 04:12:32 PM
very cool!
would you mind to share the py? Smiley
245  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 17, 2013, 10:30:04 PM
yeah, buy time
246  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 15, 2013, 06:25:31 PM
in europe "getting registered" is not easy, see
http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2007:319:0001:01:EN:HTML

247  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 13, 2013, 06:05:37 PM
replikia,  pm me,  otherwise i cant help you,  cause youre on my ignore list
248  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 13, 2013, 06:03:50 PM
hey reptikia,  i am in the asset reallocation bussiness,  need help?  btw i predict massive colume increase,  as wall thread is interesting again Wink
249  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 09, 2013, 09:44:25 AM
mtgox api sums up bids and asks of same value, right?
is there a way to know how many orders a price in the wall consists of?
250  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 03, 2013, 01:32:15 PM
So I postulate that the big player that was slowly cashing out last week and yesterday had prior knowledge about the coming lawsuit. Lots of other big players seem to as well, them causing the ask sum to skyrocket in the last 48 hours.

I'm really glad I noticed that happening and got out in time.

Which lawsuit? You mean that?
http://news.cnet.com/8301-1023_3-57582688-93/bitcoin-exchange-partnership-dissolves-with-lawsuit/
251  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 03, 2013, 12:03:46 PM
ip; is domain fixed? thread/link?
252  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 03, 2013, 08:58:14 AM

(from http://www.oftwominds.com/blogapr09/housing04-09.html  somebody posted it on this forum before but I can't find it right now)
nice reading - follow the link:

Quote
8. At some point, all the bottom fishers have expended their capital and prices retrace to the pre-bubble levels, or even lower. This is what can be called "the real bottom."
253  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 02, 2013, 02:28:56 PM
96.21
254  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 01, 2013, 08:02:05 PM
hy everybody,
am i interpreting something wrong - there are way more bids than asks at the moment but the price isnt going up, why´s that?
I think you might wanna delete this account and start a new one undercover.

maybe i should, but as long as you dont give me a reason, a simple ignore would do
255  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 01, 2013, 07:48:52 PM
whole order book just fake/temporary bids?
256  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: May 01, 2013, 07:44:48 PM
hy everybody,
am i interpreting something wrong - there are way more bids than asks at the moment but the price isnt going up, why´s that?
257  Economy / Trading Discussion / Re: ncurses based MtGox live monitor and trading-bot-framework on: May 01, 2013, 04:21:52 PM
Smiley
thx, i use your code as leraning object; isnt that a good motivation - as soon as it works it brings btc
258  Economy / Trading Discussion / Re: ncurses based MtGox live monitor and trading-bot-framework on: May 01, 2013, 04:07:34 PM
Sad i am blind as a fish, cant see it..

i posted:

hy
i started to look into goxbot and i must admit, i dont get anything, but anyway i will reach the goal of my own little bot. Wink plz help!

in my strategy module i got (copied most of it of the 50/50-balance boot)

Code:
import strategy
import goxapi


class Strategy(strategy.Strategy):

    """a protfolio rebalancing bot"""
    def __init__(self, gox):
        strategy.Strategy.__init__(self, gox)
        self.temp_halt = False


    def slot_before_unload(self, _sender, _data):
        pass

    def slot_keypress(self, gox, (key)):
if key == ord("b"):
    self.debug("canceling all rebalancing orders")






If key "b" is pressed goxtool displays: someone pressed key b,
But it doesnt display "canceling all rebalancing orders".
so, how to write messages to the log output?


btw: is there an easy way to get rid of the Winconsole output in the main window? I am running tail on the log in a second window, so its just superfluid for me?



what i run now is (snipplet):

Code:
class Strategy(strategy.Strategy):
    """a protfolio rebalancing bot"""
    def __init__(self, gox):
        strategy.Strategy.__init__(self, gox)
        self.temp_halt = False

    def slot_before_unload(self, _sender, _data):
        pass

    def slot_keypress(self, gox, (key)):
        """a key has been pressed"""

        if key == ord("c"):
            # cancel existing rebalancing orders and suspend trading
            self.debug("canceling all rebalancing orders")
            self.temp_halt = True
            #self.cancel_orders()

do you mean that self.debug.. is under the "e" of key and above it was under the "y" of key?
259  Economy / Trading Discussion / Re: ncurses based MtGox live monitor and trading-bot-framework on: May 01, 2013, 03:58:56 PM
AAAAAAHHHHH, its the variables in the braces of the class-functions, right?

i.e.

def slot_history_changed(self, history, _dummy):

history is found in goxapi - class History(BaseObject)

so goxapi "fills" its classes and strategy.py is defining other classes filled with goxapi results?

I think i start to understand
260  Economy / Trading Discussion / Re: ncurses based MtGox live monitor and trading-bot-framework on: May 01, 2013, 03:55:33 PM
i know about indentation (just a beginner yet), what i ment was, that i didnt see which indentation was messed up, but maybe due to the fact that since 6 hours i am studying your code and its the first time i actually try to cope with classes..
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!