Bitcoin Forum
June 20, 2024, 04:13:32 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3] 4 »  All
  Print  
Author Topic: Does any trading bots support bitfinex, lakebtc and btc-e?  (Read 8691 times)
sickhouse
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


View Profile
August 10, 2014, 06:07:25 PM
 #41

We launched the WebSocket API recently, users who wish to use LakeBTC WebSocket API may visit LakeBTC API documents for instructions, sample code, and Javascript lib file.  https://www.lakebtc.com/s/api
Can you explain to a 5 year old how to do that? I know a little about php and such.

Turn off the news and read. Watch Psywar, learn something important about our society and PR, why and how it got started and how it brainwashes you.
Gargulan
Full Member
***
Offline Offline

Activity: 231
Merit: 100



View Profile
August 10, 2014, 10:14:06 PM
 #42

Was wondering if anyone have sample code written for bitfinex bot either in java or script.


daybyter
Legendary
*
Offline Offline

Activity: 965
Merit: 1000


View Profile
August 11, 2014, 02:12:02 PM
 #43

I write java code for bots. But I do not write code for a specific exchange. I wrote me a lib to abstract from those APIs, so I can use the same bot code for all supported exchanges.

But I have a question: what do you think is such a bot worth? What would you pay for it?

Gargulan
Full Member
***
Offline Offline

Activity: 231
Merit: 100



View Profile
August 12, 2014, 03:54:22 AM
 #44

I write java code for bots. But I do not write code for a specific exchange. I wrote me a lib to abstract from those APIs, so I can use the same bot code for all supported exchanges.

But I have a question: what do you think is such a bot worth? What would you pay for it?


The key is finding enough traders to pay for the bot. If you have a fully configurable bots for the major exchanges, it shouldn't be hard to sell it for around 10-50 dollars each. Which can add up to a hefty sum.

Nrcewker
Copper Member
Hero Member
*****
Online Online

Activity: 2212
Merit: 536


Promotional Campaign Manager|Telegram @NrcewkerBTC


View Profile WWW
August 12, 2014, 04:07:40 AM
 #45

I write java code for bots. But I do not write code for a specific exchange. I wrote me a lib to abstract from those APIs, so I can use the same bot code for all supported exchanges.

But I have a question: what do you think is such a bot worth? What would you pay for it?


It seems to be 0.5 BTC

My code only supports bitfinex and btc-e. Never heard of lakebtc. Maybe it could be added with reasonable effort. Don't know yet.


Is your code open source?
There seems to be available API on lakebtc: https://www.lakebtc.com/s/api?locale=en

The API implementations are open source. My bot framework and the bots are not.

https://github.com/ReAzem/cryptocoin-tradelib

Well, I look for other people if they have ready trading bots, and it's good enough, I'm willing to pay at most 0.5 BTC to buy it.

I expect anyone PM to me.

daybyter
Legendary
*
Offline Offline

Activity: 965
Merit: 1000


View Profile
August 12, 2014, 11:39:12 AM
 #46

The key is finding enough traders to pay for the bot. If you have a fully configurable bots for the major exchanges, it shouldn't be hard to sell it for around 10-50 dollars each. Which can add up to a hefty sum.

Even if you can find 1000 traders, it wouldn't pay the development. And the traders wouldn't make any profit anymore, because you'd have 1000 bots trying to make the same trades.

bounst
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile
August 19, 2014, 04:04:40 AM
 #47

Was the bot available yet?
capoeira
Legendary
*
Offline Offline

Activity: 2404
Merit: 1003



View Profile
August 19, 2014, 11:06:42 AM
 #48

Was the bot available yet?

What do you mean?

itod
Legendary
*
Offline Offline

Activity: 1974
Merit: 1076


^ Will code for Bitcoins


View Profile
August 19, 2014, 04:12:29 PM
 #49

Quote from: daybyter link=topic=699558.msg8311052#msg83110
And the traders wouldn't make any profit anymore, because you'd have 1000 bots trying to make the same trades.

This is a problem. Have anyone come to solution to this? For instance, you can have each local bot poll the exchange in different interval starting from different timestamps, randomizing the interval, so the insight into the prices on the exchanges will be slightly different. Even then the trades from each bot would heavily influence each other, since the trade logic is similar, especially with arbitrage. Must be something else could be done about this, but I fail to see it.
capoeira
Legendary
*
Offline Offline

Activity: 2404
Merit: 1003



View Profile
August 20, 2014, 03:14:06 AM
 #50

Quote from: daybyter link=topic=699558.msg8311052#msg83110
And the traders wouldn't make any profit anymore, because you'd have 1000 bots trying to make the same trades.

This is a problem. Have anyone come to solution to this? For instance, you can have each local bot poll the exchange in different interval starting from different timestamps, randomizing the interval, so the insight into the prices on the exchanges will be slightly different. Even then the trades from each bot would heavily influence each other, since the trade logic is similar, especially with arbitrage. Must be something else could be done about this, but I fail to see it.

The only solution is what the do with good forex bots....they sell them for thousands of dolars.

itod
Legendary
*
Offline Offline

Activity: 1974
Merit: 1076


^ Will code for Bitcoins


View Profile
August 20, 2014, 03:17:00 PM
 #51

Quote from: daybyter link=topic=699558.msg8311052#msg83110
And the traders wouldn't make any profit anymore, because you'd have 1000 bots trying to make the same trades.

This is a problem. Have anyone come to solution to this? For instance, you can have each local bot poll the exchange in different interval starting from different timestamps, randomizing the interval, so the insight into the prices on the exchanges will be slightly different. Even then the trades from each bot would heavily influence each other, since the trade logic is similar, especially with arbitrage. Must be something else could be done about this, but I fail to see it.

The only solution is what the do with good forex bots....they sell them for thousands of dolars.

Can you point me in which direction to search for them?
capoeira
Legendary
*
Offline Offline

Activity: 2404
Merit: 1003



View Profile
August 20, 2014, 09:11:57 PM
 #52

Quote from: daybyter link=topic=699558.msg8311052#msg83110
And the traders wouldn't make any profit anymore, because you'd have 1000 bots trying to make the same trades.

This is a problem. Have anyone come to solution to this? For instance, you can have each local bot poll the exchange in different interval starting from different timestamps, randomizing the interval, so the insight into the prices on the exchanges will be slightly different. Even then the trades from each bot would heavily influence each other, since the trade logic is similar, especially with arbitrage. Must be something else could be done about this, but I fail to see it.

The only solution is what the do with good forex bots....they sell them for thousands of dolars.

Can you point me in which direction to search for them?

no, sorry....i'm not an expert in forex bots....you sure can find cheap bots if you google, and all of them will promise you gains, but you know ho things work in this internet world

BentleyBirch
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
August 21, 2014, 06:24:29 AM
 #53

The market seems to be very lack of trading bots
BTCjust
Sr. Member
****
Offline Offline

Activity: 241
Merit: 250


View Profile
August 21, 2014, 09:18:14 AM
 #54

More than a month has passed, it seems that no result.
Sampey
Legendary
*
Offline Offline

Activity: 2632
Merit: 1040



View Profile
August 21, 2014, 09:43:56 AM
 #55

Hi, my bot works on BtcE (and other exchanges of course)

This is the official topic : https://bitcointalk.org/index.php?topic=507103.0

This is the price list :

bounst
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile
August 22, 2014, 06:40:57 AM
 #56

Was the bot available yet?

What do you mean?

Are there any trading bots available?
bounst
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile
August 22, 2014, 06:43:26 AM
 #57

Hi, my bot works on BtcE (and other exchanges of course)

This is the official topic : https://bitcointalk.org/index.php?topic=507103.0

This is the price list :



ok, thanks, but it seem to an altcoins bot
daybyter
Legendary
*
Offline Offline

Activity: 965
Merit: 1000


View Profile
August 23, 2014, 04:21:14 PM
 #58

I did not release any code, since I don't see a viable business model.

GreenCoin22 (OP)
Hero Member
*****
Offline Offline

Activity: 547
Merit: 500



View Profile
September 03, 2014, 07:02:17 AM
 #59

Hi, my bot works on BtcE (and other exchanges of course)

This is the official topic : https://bitcointalk.org/index.php?topic=507103.0

This is the price list :


Thank you, but this is not what I want.
tradaplaya
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
September 04, 2014, 05:30:58 PM
 #60

I didnt see this suggestion, so i am adding it here.

Why dont you just use MT4 on BTC-e, there is a full library of both free and paid EA (Expert Advisors ie Bots), that you can use with source.
Pages: « 1 2 [3] 4 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!