Bitcoin Forum
June 30, 2024, 06:42:46 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Bitcoin / Project Development / Re: Looking for someone that can create me a simple script on: August 28, 2015, 06:47:00 AM
Hi Xiaoxiao,

I can make this script for you. I have some good experience with exchanges API's, bots and programming. Please pm me with details.

Depending on what functionality and how complex the script needs to be i can tell you the price.
2  Bitcoin / Project Development / Re: How much would you pay for a trading bot? on: May 27, 2014, 08:53:38 AM
You should definetely give more information about the strategy it is trading on. If it is an arbitrage strategy then selling the bot to multiple people will immeadiatly eliminate any potential profits, so the bot will become useless. Also it sounds like a big scam if you claim you make 5 BTC a month with almost no capital.

It would be better if you claimed the outperformance of the bot. So the bot makes 10%, the market did 5% for that period, hence the outperformance is 5%.
3  Economy / Trading Discussion / Re: I'm a trader and want to learn how to build my own bitcoin bot on: May 22, 2014, 03:01:09 PM
Search for the basis of your bot code on github. After this building the code for your own strategy is quit easy. Built a bot that does not trade to often, because paying the spread and transaction fees will eat your profit away.
4  Economy / Service Discussion / Re: Bitstamp TX Fee Exploit - Charge 1.16% instead of 0.2% without your consent on: May 08, 2014, 09:33:44 PM
I still do not agree with this partial fix of Bitstamp. If I place one order I want to be charged for just one order, regardless if it is bought into by three different orders. I decided to place one order so should be charged for just one. Bitstamp is just a scammer exchange with a bad reputation.
5  Economy / Trading Discussion / Re: Selling the Froth: A Hedged Forex Strategy and What, if Anything, It Tells Us on: April 04, 2014, 02:22:34 PM
Thnx for your answers! Found it very interesting.  I myself would be interested in the Excel sheet, as I have slightly different numbers than you do and am not absolutely sure how you did calculate the numbers.

For the strategy that I mentioned, the rate of return would be 56% on a yearly basis if you plug in the numbers from today (not sure if I did it correctly). Is this high in the bitcoin world? What was the highest you have seen? There must be some very big pitfalls? I have come by one pitfal, as of yesterday you can not register anymore on that exchange :s. Not sure what kind of exchange wouldn't allow people to register, but it shows that there could be many more flaws in the sites design.
6  Economy / Trading Discussion / Re: Selling the Froth: A Hedged Forex Strategy and What, if Anything, It Tells Us on: April 04, 2014, 10:10:20 AM
Ok thnx.

So what would be wrong with buying 1 bitcoin in the market (564 at that time) and selling a futures contract to sell at 865 (at that time). You would lock in a tremendous rate. Also no "risk". What would stop you? and why do you need a fund size 4 times as large as the amount of bitcoins deployed?
7  Economy / Trading Discussion / Re: Selling the Froth: A Hedged Forex Strategy and What, if Anything, It Tells Us on: April 03, 2014, 09:11:22 PM
Interesting read. You are obviously a very smart man.

I always thought that futures locked in the exchange rate, so how is it possible that this strategy loses in dollar terms?
8  Economy / Trading Discussion / Re: Bitcoin arbitrage, pros and cons, experience and profitability on: March 28, 2014, 10:30:23 AM
The only real arbitrage I did was with bitcoinbuilder. I deposited money into Gox and got it out with around 70% profit margin. I was lucky to get it out in time, because two days later they froze their website. I don't see these opportunities anymore.

If you do arbitrage now, then if you calculate the arbitrage opportunities between exchanges after transaction costs, you can get on average 0.10$ per trade. So your just scalping the markets. This small profit margin wipes out very fast when you make some mistakes or do the wrong trade.  Also you have to do alot and very fast to make it profitable.
9  Bitcoin / Project Development / Re: Building own trading bot on: March 28, 2014, 10:11:05 AM
When writing your bot in LISP or Scheme, can you connect to the websockets?
10  Bitcoin / Project Development / Re: Building own trading bot on: March 28, 2014, 09:53:27 AM
Hi there...

I am running a platform where you can code your rule engine in JavaScript then test it and use it for real trading on BTC-e.

There are some strategies already implemented and you can get a hang of how things work pretty fast. You can then use this knowledge to build your own bot Wink

You can find the platform here: http://www.cointelligence.net

Have fun coding your own strategies and rules!

Thnx!
11  Bitcoin / Project Development / Re: Programming Bitcoin Reading List and Projects on: March 25, 2014, 09:36:57 PM
Nice!
12  Bitcoin / Project Development / Re: Building own trading bot on: March 25, 2014, 09:30:38 PM
One more question Smiley 
What are the rules for hitting an API. So basically if i hit an API for 1 minutes 200 times and then don't do it for 3.5 hours. Averaging once a second. Is that even allowed? Ím just trying to come up with ways to work around it.
13  Bitcoin / Project Development / Re: Building own trading bot on: March 25, 2014, 09:23:57 PM
Ok nice.  Do traders sometimes end up with excess inventories/balances :p How big would that risk be? Smiley
14  Bitcoin / Project Development / Re: Building own trading bot on: March 25, 2014, 08:36:54 PM
Some exchanges have methods to check the status of an order. The most simple way is usually to check your funds. If you bought 1 btc and your btc funds are 1 btc higher than before => order filled.

Like you said, you cant hit the api continuously?, so how to work around this.

For example: You usually check for the opportunity and one round trip (buy USD to BTC and immediately sell BTC to XXX) would look like this:

Make one side of the trade
Wait one sec

Check balance if trade went through
Wait one sec

Make other side of the trade
Wait one sec

Check balance if trade went through
Wait one sec
15  Bitcoin / Project Development / Re: Building own trading bot on: March 25, 2014, 06:27:46 PM
No need to reinvent the wheel. Take an existing bot and modify for your needs. I wasted several months on my own code until I dug deeper into what is out there. My code was usable,but still just the basics. With existing, you get the basics for free and you get to build something advanced more quickly.

For nodejs I run Gekko.   Search for it here or Github.


Yess thats a good idea.  Thanks for the pointer, I will take a first look at Gekko.
So I was wondering.. What happens when you see a trading opportunity? Do you place a limit order at one of the open bid-ask prices or do you come in with a market order?  How do you check if the trade was really executed? 
16  Bitcoin / Project Development / Building own trading bot on: March 24, 2014, 08:33:42 AM
Hi,


I got kind of inspired by all the trading bots offered on this site and now I want to build my own bot. Most of the bots that I have seen here are more user friendly, with a nice interface ect. I think the best way to build my own bot is just some plain script that does the trading and nothing more. I just want to do it myself to get to know the inside outs of trading bots and that I am not reliable to someone else for further improvements. I need some pointers in the right direction and am willing to learn some new skills to do this. At the moment it needs to update and search for trading opportunities every 1 to 5 seconds, but maybe in 1 year time this needs to be considerably faster. So im looking to build something that is scalable on speed, as it becomes harder and harder to beat other players.

At the moment I was thinking to write the code in Node js and javascript. How does this sound?
I am collecting trading data in a mysql database and can do the computations for trading opportunities there. The reason for this is, that I think that this method is less prone to errors. For example, exchange sites api lag sometimes and I need to collect data for when a trade is confirmed ect. Is it better?

Are there any other languages that I could best write my code in?

Thanks and help will be appreciated.
17  Bitcoin / Project Development / Re: I made a website that has various multi-chart layouts! on: March 24, 2014, 08:17:12 AM
Nice!
18  Economy / Service Discussion / Huobi API on: March 17, 2014, 11:05:44 PM
Hi there,

I need some help accessing the huobi api.  http://market.huobi.com/staticmarket/detail.html
in PHP

$obj =
{
    "sells": [
        {
            "price": 3840,
            "level": 0,
            "amount": 1
        },
        {
            "price": "3840.05",
            "level": 0,
            "amount": 0.287
        },
        {
            "price": 3841,
            "level": 0,
            "amount": 0.1
        } ],
 "p_new": 3838,
    "level": -72.12,
    "amount": 82792,
    "total": 321774060.34653,
    "amp": -2,
    "p_open": 3910.12,
    "p_high": 3925,
    "p_low": 3809.99,
    "p_last": 3910.12
}
      
                echo "Ask     " . $obj->sells[0]->price; // does not work
                echo "Volume" . $obj->amount;// does not work

Help will be appreciated.
19  Economy / Service Discussion / Need help accessing Huobi API on: March 14, 2014, 09:39:05 AM
Hi there,

I need some help accessing the huobi api.
in PHP

$obj =
{
    "sells": [
        {
            "price": 3840,
            "level": 0,
            "amount": 1
        },
        {
            "price": "3840.05",
            "level": 0,
            "amount": 0.287
        },
        {
            "price": 3841,
            "level": 0,
            "amount": 0.1
        } ],
 "p_new": 3838,
    "level": -72.12,
    "amount": 82792,
    "total": 321774060.34653,
    "amp": -2,
    "p_open": 3910.12,
    "p_high": 3925,
    "p_low": 3809.99,
    "p_last": 3910.12
}
      
                echo "test1     " . $obj->sells[0]->price;
                echo "test2     " . $obj->amount;


20  Economy / Trading Discussion / Re: bitstamp API tradebot on Php - WhaleHunter on: March 14, 2014, 09:01:16 AM
The buy/sell wall is now checking for every 3000 open orders? Can you make the buy/sell wall calculated differently? So for example check all open bid orders above $400, or not more than 30% away from the midpoint (bid/ask/2), same for open asks order.

Just to avoid counting  open orders of buying 10.000 bitcoin for 0.01$ in the orderbook ect.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!