Bitcoin Forum
May 25, 2024, 07:41:19 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 »
121  Economy / Exchanges / Re: www.BITSTAMP.net Bitcoin exchange site for USD/BTC on: November 19, 2013, 02:12:28 PM
Now it seems that API does not work. I keep receiving 403 Forbidden. The very same code worked yesterday ...
122  Bitcoin / Bitcoin Technical Support / How original Bitcoin client fee scales? on: November 19, 2013, 06:56:22 AM
Last time I sent cca 1 BTC to my father's account the original Bitcoin client I use (version 0.8.5) required me to pay 0.0015 BTC fee. Now, BTC is reaching $1000 in China, making this fee 1.5 USD. That is not a small fee. I think we can't say it is unrealistic to work with scenarios of BTC being valued $10000. Would fees be extreme by then? Or is there a possibility (using the original Bitcoin client) to really pay something like 0.05 USD that I find a reasonable fee for "small" transactions such as 1 BTC? How about 0.1 BTC transactions or even smaller transactions? Thanks for explanations.
123  Economy / Auctions / Re: [Auction] MtGox open order automat on: November 19, 2013, 06:35:49 AM
Bumpity Smiley

With recent moves of the price, the tool made me another bunch of good bucks while my risk was kept minimal.
124  Economy / Exchanges / Re: www.BITSTAMP.net Bitcoin exchange site for USD/BTC on: November 18, 2013, 10:03:03 AM
Thanks for info. Finally, I have received an answer that my family bank account should not be used for funding my Bitstamp account in case the primary account holder is not exactly myself but some other member of my family (although obviously having same surname). This is weird but at least the funds did not lost.
125  Economy / Exchanges / Re: www.BITSTAMP.net Bitcoin exchange site for USD/BTC on: November 18, 2013, 06:59:26 AM
It's been 7 days since I have sent SEPA to Bitstamp and my account has not been credited yet. Anyone else with similar problem?
Note that all my previous SEPA payments were processed within 48 hours and I have a verified account for a long time.
126  Economy / Auctions / Re: [Auction] MtGox open order automat on: November 17, 2013, 08:36:05 AM
If I buy script , any updates available in the future ?

The tool is being sold as is. I use it for myself, that is its primary purpose of existence. I just thought that someone might be interested in this too, so that could make me some extra satoshis. I really can not guarantee you any additional coding work in the future for 0.01 BTC and similar amounts. It just works now. It would need update only if MtGox changes their API. I might be able to make that change for you in the future if that happens, but not free of charge.

What I can do, however, is to offer you updates in case it stops working within 30 days after purchase. If MtGox changes their API in 30 days from purchase, you will get update for free so that you can use the tool again. If I fail to give you that update within 14 days of your request, you get your money back. This is what I can offer.
127  Economy / Auctions / Re: I'd like to sell 100+ Asicminer direct stocks, anyone who knows how to trade? on: November 17, 2013, 08:30:15 AM
I think the price is now around 0.6 - for this estimation I take larger amounts of shares being sold on Havelock for 0.6.
128  Economy / Auctions / Re: [Auction] MtGox open order automat on: November 17, 2013, 08:09:34 AM
Just to make sure - you will not be allowed to sell the tool to other persons, you just get a license to use the tool for yourself. You will be allowed to modify the source code and add new features, but not to sell my code or its parts. Thanks for understanding.
129  Economy / Auctions / [Auction] MtGox open order automat on: November 17, 2013, 08:00:22 AM
Hi,



Auction rules

Starting price: 0.01 BTC
Smallest price increment: 0.01 BTC
Auction ends with the counter above.
Winning bids are binding.
Escrow? Possible, if you need it, you arrange the deal and pay fees. Must be super trusted like JohnK. Mutual agreement on the guy is needed.
The winner gets nonexclusive copy of the tool.
No PM bids accepted for this auction.

If you are interested in modifications of this tool, do not post in this auction. This auction is only for the tool as described below. If you are interested in some modification of it, let me know in PM what would you need and include your offer in BTC too.

What is being sold?
For my own trading I have coded a tool in C#, I am using it daily, works well for me, so maybe someone would also find it handy. I will give you the source code so that you can be sure that the tool is what you expect and not something ugly that would steal your BTC. If you are interested I can give you the binary too, but this is not very smart idea unless you really trust me ...

This tool is for Windows and you run it like this:

Code:
btc.exe FILE

FILE is a simple TXT file that you create with your favorite text editor. It looks like this:

Code:
{
  "Action": "CancelOrders",
  "Count": "0",
  "BasePrice": "0",
  "BaseAmount": "0",
  "PriceFormula": "0",
  "AmountFormula": "0"
}

or like this:

Code:
{
  "Action": "Buy",
  "Count": "50",
  "BasePrice": "299.8400",
  "BaseAmount": "0.01",
  "PriceFormula": "[Price] - 0.9",
  "AmountFormula": "[Amount] + ([Counter] + 1) * 0.001"
}

or with Action set to "Sell", obviously. This is JSON format of input.

Now what it does. If action is "CancelOrders" it just cancel all your MtGox orders. It goes one by one and with a small delay between two requests, it sends cancel order request to MtGox. This is handy if you have more than 10 orders and need to cancel them. All other input parameters are ignored in case of "CancelOrder" action.

Much more interesting are "Buy" and "Sell" actions. In their case other parameters are useful too.

Count paramter is a number of orders you would like to create. I use 50-70 here, but this is entirely up on you. Could be 1, could be 100. I am not sure whether MtGox has any limit here, but up to 70 it is tested and works fine.

BasePrice is simply the price of the first order, for which you want to Buy/Sell BTC.

BaseAmount is the amount of BTC of the first order you want to Buy/Sell.

PriceFormula is how the price is changed with each order. So, if the BasePrice is 100 and you have your PriceFormule set to "[Price] - 1.00" then the first order's price will be 100, second will be 99, third 98 etc. You can use some variables here like [Price] and [Counter]. [Price] is simply the price of your last order. [Counter] goes from 1 up to the value of your Count parameter, incremented by 1 after placing an order.

Similarly AmountFormula is how your Amount is being changed. Here you can use variables [Amount] and [Counter].

It might be more clear to have an example. So let's try this. I create "config-buy-test.txt" and run "btc.exe config-buy-test.txt". The configuration file looks like this:

Code:
{
  "Action": "Buy",
  "Count": "5",
  "BasePrice": "100.00",
  "BaseAmount": "0.01",
  "PriceFormula": "[Price] - 0.50",
  "AmountFormula": "[Amount] + [Counter] * 5 * 0.001"
}

The result is here:



As you can see, we started on price 100 USD/BTC and amount 0.01 BTC. Then we altered your Price by formula

Price := [Price] - 0.5

so the second order has its price set to 99.5. The amount formula is

Amount := [Amount] + [Counter] * 5 * 0.001

which is after first order:

Amount := 0.01 + 1 * 5 * 0.001 = 0.015

Third order is Price := 99.5 - 0.5 = 99.0
and Amount := 0.015 + 2 * 5 * 0.001 = 0.015 + 0.01 = 0.025

and so on.
130  Bitcoin / Pools / Re: [115 Th] 50BTC.com - PPS|Stratum+Vardiff|Port 80|QIWI,Yandex,Mobile,WM... on: November 16, 2013, 07:15:20 AM
hiii
plz replay me !!

i cant login ....
even cant reset password !!
my account totally disappeared !!
or its deleted !!!

is there sombody else with same my case !???


Same here, I can not log in to my account. I wrote to their email and received no response.
Password reset did help, however. Yet still, my account has invalid balance...
131  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: November 07, 2013, 07:33:37 AM
With a great relief I can say that we have just received our several thousand EUR payment from MtGox to our bank account in EU.
132  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: October 23, 2013, 01:23:26 PM
I was informed that they are forbidden to provide information about why my money is being held for 3 months or when will the money be released.  Angry
133  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: October 22, 2013, 01:25:32 PM
yes, it is in FAQ article that is being updated from time to time without any notice ... I am really unhappy about how Gox handle this
134  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: October 22, 2013, 12:30:15 PM
they just informed me about this update that there is only 1 SEPA withdrawal in 20 days per client, why this information is missing in the client area  Embarrassed
135  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: October 22, 2013, 07:45:55 AM
currently 3 months delay for USD payment, 1 month delay for EUR and no estimations given on when the funds will be released ...
136  Bitcoin / Pools / Re: [115 Th] 50BTC.com - PPS|Stratum+Vardiff|Port 80|QIWI,Yandex,Mobile,WM... on: October 19, 2013, 06:16:26 AM
200 BTC on mine, but I would really like to see what is my real balance, I hope the actual number after fixing problems will be correct ...
137  Other / MultiBit / Re: MultiBit on: September 13, 2013, 10:24:28 AM
Any chance to import Bitcoins-QT wallet to Multibit INCLUDING labels?
I have cca 1000 addresses in the original client and want to get rid of it, but did not find out how to import the wallet to Multibit. Manually labeling 1000 addresses is not a good way to go.
Thanks for any tips.
138  Economy / Auctions / Re: Auctioning my forum signature - 2,500 posts, Sr. Member - 0.4 BTC starting bid! on: September 09, 2013, 02:59:13 PM
Do you have any stats on CTR (or just number of clicks per time frame) of current/past links (yours or someone else's) in your signature?
139  Economy / Auctions / Re: [AUCTION] Selling website 100000 visits in last 3 months on: September 06, 2013, 07:02:19 AM
Excellent, thank you!
140  Economy / Auctions / Re: [AUCTION] Selling website 100000 visits in last 3 months on: September 04, 2013, 07:53:52 AM
ste0024 is now the new owner of this project. The trade is almost finished now - project and domain have been transferred already, it only remains to transfer Google+ and FB groups.
Pages: « 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!