Bitcoin Forum
July 05, 2024, 11:06:01 AM *
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 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
521  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: January 02, 2014, 05:16:04 PM
Orders are sorted by price and then if the price is the same then they are sorted by time and the oldest orders at any particular price are filled first.

I didn't know that.  Thanks.
You can try to "front run" the bulk of orders at crowded price levels by placing your order a few odd number of cents below it (if its a sell) or above it (if its a buy order). It helps looking at the order book before placing the order. I also recommend trading with a comfortable trading client application rather than through the website. For Linux and Mac users I recommend goxtool.
522  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: January 02, 2014, 03:28:44 PM
Okay so I've been trying to buy and sell at gox. When I set a limit order to lets say but at $795 for example, how come it dose not buy when the last price goes to it?

Anyone?

Because it is likely that a lot of other people also have orders at this same price and if not *all* orders at this price get eaten then then only the ones who were earlier than you will be filled. Once *all* orders at 795 are filled then your order will have been filled too.

Orders are sorted by price and then if the price is the same then they are sorted by time and the oldest orders at any particular price are filled first.
523  Economy / Service Announcements / Re: BitcoinWisdom.com - Live Bitcoin/LiteCoin Charts on: December 31, 2013, 02:11:28 PM
Since a few days it does not work on Firefox anymore. (Ubuntu precise + Firefox 26.0). All I get are the empty black frames and a small box in the middle saying: "loading". Firefox is not an exotic 0.0001% browser, its still pretty common in many places, please test on all major browsers. Thank you.
524  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 29, 2013, 01:44:58 PM
50:50 - always.
525  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 28, 2013, 08:22:49 PM
The day that BTCChina disallows fiat withdrawals, I believe. Cheers Smiley
Why would they want to do this? This would be the equivalent of completely shutting down their operations.
its the law.
Really? I read otherwise. I know only of one statement from official sources and that did not mention something as nonsensical as funding allowed, withdrawl not allowed, it also said that registered exchanges and bitcoin trading are legal and also no mention of a deadline of 31st January. Everything else I have heard since then were only interpretations and speculations by other people and the complaints of the owner of one exchange about how he could not find a payment provider or banking partner. But I have read nothing about a new law since then. Please send a link. Until then I call it market manipulation through FUD.
526  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 28, 2013, 07:27:32 PM
The day that BTCChina disallows fiat withdrawals, I believe. Cheers Smiley
Why would they want to do this? This would be the equivalent of completely shutting down their operations.
527  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 28, 2013, 07:18:28 PM
The January 31st deadline
What is on January 31st? What deadline?
528  Economy / Marketplace / Re: [BETA] MTGox websocket API, testers wanted on: December 27, 2013, 08:35:33 PM
Is the gox websocket crap? Or is the problem with the Xchange implementation or the websocket java lib?
Any idea suggestion or wisdom is welcomed.

MtGox websocket is excellent, 99.9% uptime and <200ms delay. Try goxtool (see my sig) for a proper implementation and reference.
529  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 27, 2013, 12:19:22 PM
You must first multiply each *individual* bid with its price to get the USD value of each bid and *then* add the USD values. This screenshot you posted is doing it wrong. Its totally meaningless to add up the sum of BTC on the bid side.
If that is the explanation for how the bid was wrong then what is the explanation for how the ask was wrong?
It was a few hours ago, I did not look at the exact values at that time, so I can't comment on that question. Currently (right now at this very moment) according to the official MtGox API the correct numbers are:

Code:
sum_bid: 39,479,189 USD | sum_ask: 24,575 BTC | ratio: 1,606.48 USD/BTC

530  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 27, 2013, 12:06:29 PM
no I am looking only at gox and it is 52+ million USD look to my post above

and when I zoom out you see this



You must first multiply each *individual* bid with its price to get the USD value of each bid and *then* add the USD values. This screenshot you posted is doing it wrong. Its totally meaningless to add up the sum of BTC on the bid side.
531  Economy / Trading Discussion / Re: goxtool bot: portfolio rebalancing on: December 23, 2013, 01:18:20 AM
he imported your code into goxtool
Its probably also a modified goxtool. Original code for original goxtool is at my repository (link in my sig)
532  Economy / Trading Discussion / Re: goxtool bot: portfolio rebalancing on: December 23, 2013, 01:12:26 AM
He probably added the user.conf stuff to support multiple installations on his multi user hosted goxtool server, probably heavy modifications because also every user needs his own account api secret.

The original _balancer does not need a config file, the way it is supposed to work in a single user setup is to edit the .py file of the strategy directly and then just press "l" (lowercase L) to dynamically reload the strategy at runtime (keep it simple approach, also for making code changes to the bot or similar experiments without needing to restart the entire application).
533  Economy / Trading Discussion / Re: goxtool bot: portfolio rebalancing on: December 23, 2013, 01:03:24 AM
and in my signature the link for the main goxtool app. The only recommended and supported version.
534  Economy / Trading Discussion / Re: goxtool bot: portfolio rebalancing on: December 23, 2013, 01:00:51 AM
So you're telling me this has nothing to do with balancer.py from https://github.com/caktux/goxtool ?  Hmmmm.
Thats a fork of my original bot. I don't know what was changed in this fork and how to use it, I can only recommend my original as it is found in the link on page 1.
535  Economy / Trading Discussion / Re: goxtool bot: portfolio rebalancing on: December 23, 2013, 12:53:13 AM
user.conf

The _balancer.py this thread is about has no "user.conf", please see the link to the original in post #1

You also wouldn't have needed any additional json packages, all of goxtool is using the built in json moule that comes with a standard python installation, I don't know what this balancer fork is doing or what it needs exotic additional json libs for.
536  Bitcoin / Electrum / Re: Electrum 1.9 released on: December 17, 2013, 07:45:57 PM
ThomasV, could you please have a quick look at this thread (its a bit old already, are you aware of this, is it fixed already or is it meant to be that way intentionally? What does the corresponding BIP say about it?)
https://bitcointalk.org/index.php?topic=329354.0
537  Economy / Trading Discussion / Re: goxtool bot: portfolio rebalancing on: December 17, 2013, 07:39:27 PM
0.05BTC
Is not enough. please read the thread, I have mentioned it multiple times. Load it at least with a few thousand dollars for it to make any sense. Minimum order size on gox is 0.01BTC, if you do the math you will see that your rebalancing orders would be too small by orders of magnitude.
538  Local / Off-Topic (Deutsch) / Re: Candoo/Salazarian BFL Gruppenkauf-Megathread on: December 17, 2013, 07:28:06 PM
bist du sicher das du die prozente richtig vergeben hast?

ich lasse mir selbst den ertrag von 10GH/s automatisch über ghash.io auszahlen.

heute kamen von dir für 10 Anteile - 0.00084639 BTC
über meine 10 GH/s - 0.0201795 BTC

selbst wenn man die Unkosten abzieht, ist das weit entfernt von dem was mir 10GH/s bei ghash.io bringen.

wie ist das bei euch anderen so?
Hier ebenfalls. Stimmt hinten und vorne nicht. Ich hab jetzt 423µ beommen (22 cent) für 5 Gh/s (vorher zufällige Summen zu zufälligen Zeiten), anfangs war wöchenliche Zahlung ausgemacht und jetzt wird mein Wallet täglich mit Staub vollgeblasen, wenn ich das jemals wieder ausgeben will geht die Hälfte für Gebühren drauf. Der nächste Miner freut sich dann.
539  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 16, 2013, 12:57:56 AM
Bitstamp M15 chart, ascending triangle, short term ultra bullish. And if it breaks upward we might also break the down trend on the H6

Edit: and if this happens we might see $2000 before the year is over.
540  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: December 15, 2013, 01:57:35 PM
This thread's sentiment is turning bearish now? I will take that as a bullish sign.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!