Bitcoin Forum

Economy => Service Announcements => Topic started by: exchange.blue on February 06, 2018, 04:35:22 AM



Title: 🌟 ★★★ PRE-RELEASE 🔥 CRYPTO 🔥ARBITRAGE 🔥PATHS 🔥SaaS ★★★ 🌟
Post by: exchange.blue on February 06, 2018, 04:35:22 AM
Thanks for the constructive feedback guys! I took note of it and made a decision to develop a service designed for assisting in making arbitrage trading fun and easy

As some of us may already be aware about the road bumps that arbitrage traders stumble upon. My goal is to deliver a lot of accurate data, in attempt to reduce the risk of failure. I won't get angry if you use my Free arbitrage data @https://www.arbitrage.expert/ For those looking for a bit more information, I invite you to pre register for my subscription based Arbitrage path service: https://www.arbitrage.expert/paths


What is Arbitrage paths? Think of it as complete and rewarding roadmap across the most popular cryptocurrency exchanges.

Who is it for? Anyone who can appreciate the art of trading crypto and forex markets. Arbitrage should only be considered as an addition to your existing day trading strategy. We would strongly encourage to carefully research, evaluate and understand all risks associated with trading cryptocurrency including arbitrage.

Benefits of paths? Discover multi-path arbitrage opportunities that occasionally can be difficult to focus your eye on. Arbitrage.expert* is exceptional at scanning the performance of thousands of altcoins across multiple exchanges to identify the most accurate spreads in real-time.

How does it work? While Expert continually scans the market for wider price spreads, the matching algorithm runs through millions of potential combinations in attempt to display the most accurate real-time arbitrage opportunities.

We believe that each path must be carefully validated before it can be followed. The validation process includes confirming the maintenance status of each crypto wallet and ensuring the overall trade+withdrawal fees do not exceed the profit.

Early bird discount: Preregister for 20% monthly LIMITED discount.


Price: $100 /mo


Affiliates:  Get 20% from each service subscriber.


https://www.arbitrage.expert/paths (https://www.arbitrage.expert/paths)

https://twitter.com/arb_exp/status/1035506553019936768 (https://twitter.com/arb_exp/status/1035506553019936768)


https://i.imgur.com/LvgQtIh.png








Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on February 06, 2018, 04:44:22 AM
Looks nice!

But I would definitely add the trade fees to the calculation. I know it's often tricky, since I had to write such code a couple of times. But it really helps.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 06, 2018, 04:52:58 AM
Looks nice!

But I would definitely add the trade fees to the calculation. I know it's often tricky, since I had to write such code a couple of times. But it really helps.


Thanks. Fees are still work in progress. problem is... fees are often excluded from the public api. How did you go about fetching the data?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: harrysung on February 06, 2018, 04:54:02 AM
Can you also integrate a feature that tells which exchange has it's wallet on maintenance, cos that the leading cause of  arbitrage opportunities these days :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 06, 2018, 05:04:04 AM
Can you also integrate a feature that tells which exchange has it's wallet on maintenance, cos that the leading cause of  arbitrage opportunities these days :)


That would be nice, though I don't think this type of info could be fetched.. hehe


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: chrusso on February 06, 2018, 05:05:28 AM
Hi exchange.blue, I really like what you have done there. I would like to support the project and get involved.

Do you have skype?

Kind regards;
Chris


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: Tospik on February 06, 2018, 12:31:57 PM
It could be nice, I never tried the abritrage but it's interesting. This app could help novices like me in this domain maybe.

You should explain basics, and make it easy to use and it will be much better.  ;)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 06, 2018, 02:42:26 PM
It could be nice, I never tried the abritrage but it's interesting. This app could help novices like me in this domain maybe.

You should explain basics, and make it easy to use and it will be much better.  ;)


I'm only getting started, it will get much more user friendly :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: jimcroce on February 06, 2018, 06:14:35 PM
Wow, this is very cool. Thanks for sharing, OP!


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on February 06, 2018, 08:19:06 PM
Thanks. Fees are still work in progress. problem is... fees are often excluded from the public api. How did you go about fetching the data?

When I wrote my first trade lib, my concept was simple to create an order and then call a method that returns the fee for this order. Since most exchanges don't have an API method for this, the exchange interface module usually calculated the amount.

Today, I realized that speed is the key to most arb strategies, so this method is simply too slow. So I usually just use a worst-case guestimation, so the trade will result in profit in any case.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 07, 2018, 02:17:36 AM
Thanks. Fees are still work in progress. problem is... fees are often excluded from the public api. How did you go about fetching the data?

When I wrote my first trade lib, my concept was simple to create an order and then call a method that returns the fee for this order. Since most exchanges don't have an API method for this, the exchange interface module usually calculated the amount.

Today, I realized that speed is the key to most arb strategies, so this method is simply too slow. So I usually just use a worst-case guestimation, so the trade will result in profit in any case.


I don't think trade fees are important part of the equation, since 0.50 % is highest i've seen them go. The average is .25.. so we can speculate :)

On the other hand.. deposit and withdrawal options and fees can be very decisive factor


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 07, 2018, 02:19:26 AM
it also seems like some exchanges don't update tickers frequently enough :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on February 07, 2018, 05:21:08 AM
The problem is, that most exchanges have a request limit (only x requests per second, or so). When I started, it was even like 1 request per 15s, or so.

With sometimes hundreds of pairs on an exchange, it takes forever to get all prices. That is why I focus on FIX or at least websocket connections these days.

https://github.com/aviau/cryptocoin-tradelib/blob/master/core/src/de/andreas_rueckert/trade/site/TradeSite.java

These are old sources for REST API's . Haven't updates them in ages, but maybe they help you somehow.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: eternalgloom on February 07, 2018, 10:19:47 AM
Thanks. Fees are still work in progress. problem is... fees are often excluded from the public api. How did you go about fetching the data?

When I wrote my first trade lib, my concept was simple to create an order and then call a method that returns the fee for this order. Since most exchanges don't have an API method for this, the exchange interface module usually calculated the amount.

Today, I realized that speed is the key to most arb strategies, so this method is simply too slow. So I usually just use a worst-case guestimation, so the trade will result in profit in any case.


I don't think trade fees are important part of the equation, since 0.50 % is highest i've seen them go. The average is .25.. so we can speculate :)

On the other hand.. deposit and withdrawal options and fees can be very decisive factor

I agree with this, it's very little trouble to go and check that out for yourself before you try to do arbitrage with the info presented on your website.
That said, I really think this is very valuable information and I really commend you for listing it on your website for free.

Arbitrage seems to be pretty profitable again with these enormous price swings, depending on wwhat exchanges you choose.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 07, 2018, 06:26:42 PM
The problem is, that most exchanges have a request limit (only x requests per second, or so). When I started, it was even like 1 request per 15s, or so.

With sometimes hundreds of pairs on an exchange, it takes forever to get all prices. That is why I focus on FIX or at least websocket connections these days.

https://github.com/aviau/cryptocoin-tradelib/blob/master/core/src/de/andreas_rueckert/trade/site/TradeSite.java

These are old sources for REST API's . Haven't updates them in ages, but maybe they help you somehow.


Thanks, I'll take a look. Most exchanges allow up to 60 requests per minute nowdays. I guess I can utilize more ips when the traffic count increases.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 07, 2018, 06:29:13 PM
Thanks. Fees are still work in progress. problem is... fees are often excluded from the public api. How did you go about fetching the data?

When I wrote my first trade lib, my concept was simple to create an order and then call a method that returns the fee for this order. Since most exchanges don't have an API method for this, the exchange interface module usually calculated the amount.

Today, I realized that speed is the key to most arb strategies, so this method is simply too slow. So I usually just use a worst-case guestimation, so the trade will result in profit in any case.


I don't think trade fees are important part of the equation, since 0.50 % is highest i've seen them go. The average is .25.. so we can speculate :)

On the other hand.. deposit and withdrawal options and fees can be very decisive factor

I agree with this, it's very little trouble to go and check that out for yourself before you try to do arbitrage with the info presented on your website.
That said, I really think this is very valuable information and I really commend you for listing it on your website for free.

Arbitrage seems to be pretty profitable again with these enormous price swings, depending on wwhat exchanges you choose.


I'm glad you guys finding use for it :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: fxstrike on February 08, 2018, 04:35:17 AM
bleutrade uses different symbol for bitcoin cash which is BCC, where other broker use BCH that causes huge number because its compare bitconnect price with bitcoin cash, this is good way to find arbitrage opportunity very quickly


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: marozpraz on February 08, 2018, 05:27:32 AM
I would like to try it As soon as possible! Seems like this app will help me to grow my money as well. Please add the Pending delay time for everycoin, like from Bitfinex to HITBtc. Keep it up!


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 08, 2018, 02:26:21 PM
bleutrade uses different symbol for bitcoin cash which is BCC, where other broker use BCH that causes huge number because its compare bitconnect price with bitcoin cash, this is good way to find arbitrage opportunity very quickly


Thanks for the tip :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: IndieRepublic on February 09, 2018, 03:15:11 AM
Looks really good. For someone like myself with an Economics background, the amount of a arbitrage in the markets that still exists is staggering to me.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on February 09, 2018, 04:18:40 AM
Do you want to add automatic trading?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: Jekbolt on February 09, 2018, 11:36:01 AM
Good project! Unfortunately without accounting of related transaction costs the information is quite useless.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 09, 2018, 01:42:47 PM
Good project! Unfortunately without accounting of related transaction costs the information is quite useless.

it'll be added soon...stay tuned :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 09, 2018, 01:49:30 PM
Do you want to add automatic trading?

I probably wouldn't consider it... thats equivalent to sending an official invitation to hack :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: Gvvidon on February 09, 2018, 09:42:06 PM
Can you also integrate a feature that tells which exchange has it's wallet on maintenance, cos that the leading cause of  arbitrage opportunities these days :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 10, 2018, 03:37:02 AM
Can you also integrate a feature that tells which exchange has it's wallet on maintenance, cos that the leading cause of  arbitrage opportunities these days :)


its not an easy task to accomplish... the wallet status info isn't a part of API. If anyone has any suggestions in regards to implementation...I'm all ears :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on February 10, 2018, 06:17:37 AM
Some exchanges have a market status, that you can check if it is active?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: yuraayura on February 10, 2018, 10:21:41 AM
thanks, post very helpful. I have always wanted arbit but do not know where the right one.
how much is the fee? :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 10, 2018, 01:28:29 PM
Some exchanges have a market status, that you can check if it is active?

I wasn't able to find this info in the API. If anyone has any information in regards to this.. please share


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 10, 2018, 01:28:57 PM
thanks, post very helpful. I have always wanted arbit but do not know where the right one.
how much is the fee? :)


There is no fee, its free my friend:)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 11, 2018, 03:09:05 PM
Happy sunday everyone!

Update:

-  Added: Exmo (46 new pairs)
-  Added: Kucoin (54 new pairs)


Coming up:

- Extended view
- Easy filters for viewing multiple arbitrage opportunities within select exchanges.
- Trading, withdrawal deposit fees.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: yuraayura on February 11, 2018, 03:57:44 PM
Best ever , im interested . But trusty?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 11, 2018, 04:23:48 PM
Best ever , im interested . But trusty?


Trusty??


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 11, 2018, 08:12:47 PM
Update:

- Adopted new extended view, where opportunities between multiple pairs from select exchanges could be viewed simultaneously.
- Slight changes to desing
- Filters (Select between exchanges, pairs).


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: sarijaya4444 on February 12, 2018, 06:12:21 AM
Too many scam accusations on lakebtc, yobit, cex.io, exmo, livecoin, wex. https://bitcointalk.org/index.php?board=83.0. Conclusion: You can sell btc at higher rate on those exchanges but u can't make withdrawal... :(


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 12, 2018, 01:49:16 PM
Too many scam accusations on lakebtc, yobit, cex.io, exmo, livecoin, wex. https://bitcointalk.org/index.php?board=83.0. Conclusion: You can sell btc at higher rate on those exchanges but u can't make withdrawal... :(


I could tell you from multiple personal experience that I never had any issues with any of the exchanges you mentioned. In fact, i regularly use livecoin, wex and lakebtc to make withdraws of a coin as well as fiat.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 13, 2018, 01:39:46 PM
Update:

- Koinim (2 new pairs) and BTCTurk (3 new pairs) had been added to the arbitrage list.




Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 14, 2018, 04:23:36 PM
Update:

- Sort by:
    -  Arbitrage Percentage %
    -  By exchange (alphabetically)
    -  By pair (alphabetically)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 15, 2018, 02:16:23 PM
Guys I'm not familiar with the names of some of your local exchanges. If your favorite exchange isn't being listed , please contact me and I will get it resolved.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: sarijaya4444 on February 15, 2018, 03:53:02 PM
yes my local exchange is https://www.bitcoin.co.id/


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 15, 2018, 04:46:54 PM
yes my local exchange is https://www.bitcoin.co.id/


Your local exchange is part of the list.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 17, 2018, 02:24:05 PM
- Taking orders for new and exciting features...

I like innovative ideas and I love even more bringing them to life :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on February 17, 2018, 08:30:30 PM
What programming language are you using?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 21, 2018, 02:25:03 AM
Update:

-Added Deposit/Withdrawal/Taker/Maker Fees


https://s3.eu-west-2.amazonaws.com/exchange.blue/fees.gif


Enjoy :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 23, 2018, 07:41:08 AM
Buy on GDAX sell on YOBIT :)


https://s3.eu-west-2.amazonaws.com/exchange.blue/btc_usdt.gif


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 23, 2018, 10:24:13 AM
Update:


 - Users are now welcome to edit fees (wikipedia style), incase discrepancy in actual data is found...

 - The link next to the fee selector will lead to the exchange's fee page.

https://s3.eu-west-2.amazonaws.com/exchange.blue/edit_fee.gif


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: wnj4 on February 25, 2018, 05:13:41 PM
Looks very useful project, but seems this project still under development. thanks for sharing


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on February 25, 2018, 05:47:53 PM
Looks very useful project, but seems this project still under development. thanks for sharing


what exactly is under developed?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 05, 2018, 07:49:47 AM
Blog section has been added.

I will gladly accept contributions in form of quality content.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 07, 2018, 01:36:38 PM
Webmasters can now embed the basic version of the arbitrage app.

Code:
<iframe style="width: 800px; height: 400px;" src='https://www.arbitrage.expert/arbitrage?view_frame=1'></iframe>


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: adecryptokoin on March 08, 2018, 07:18:20 AM
Lokks nice but is there any explanation on how to use it?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 08, 2018, 09:57:46 AM
Lokks nice but is there any explanation on how to use it?


check this thread...
https://bitcointalk.org/index.php?topic=2795920.msg31838715#msg31838715 (https://bitcointalk.org/index.php?topic=2795920.msg31838715#msg31838715)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 12, 2018, 01:12:31 PM
Quadrigacx exchange has been added to the list!


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 14, 2018, 08:42:23 AM
*****UPDATE*****

- Volume filter has been added: now we can easily filter out the low 24. hr volume pairs.
- Select all pairs: - viewing and sorting through 9000 is easy like never before.
- Select popular pairs: now we have an option to browse trough only the most popular pairs like LTC/USD; BTC/EUR; XRP/USD, LTC/BTC etc...



Title: Re: Cryptocurrency Arbitrage App - beta
Post by: Beefcake on March 16, 2018, 05:39:12 AM
IDK if it does this, I didnt get a chance to look yet, but is it possible to calculate 3 way arbitrage on a single exchange?  For example compare btc-eth-ltc, and see if any profits can be earned?  Has the advantage that you dont need to send to other exchange ever, but might be more processor heavy and difficult to compute?  IDK just an idea.  Gonna get this app and if I make money definitely gonna donate :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 16, 2018, 11:08:06 AM
IDK if it does this, I didnt get a chance to look yet, but is it possible to calculate 3 way arbitrage on a single exchange?  For example compare btc-eth-ltc, and see if any profits can be earned?  Has the advantage that you dont need to send to other exchange ever, but might be more processor heavy and difficult to compute?  IDK just an idea.  Gonna get this app and if I make money definitely gonna donate :)


Yes, it is possible... in fact, I'm currently working on it....


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 17, 2018, 12:37:48 PM
- Update:

https://idex.market/ (https://idex.market/) has been added to the exchange list.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: smau36 on March 23, 2018, 11:01:44 AM
good but still needs to be perfected


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on March 25, 2018, 01:55:48 PM
For those of you running your own Wordpress based crypto blogs, an arbitrage plugin is now available:

wordpress.org/plugins/arbitrage-expert (http://wordpress.org/plugins/arbitrage-expert)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on April 27, 2018, 08:57:00 AM
UPDATE:

 - The Arbitrage % spread is now being determined by the lowest ask and the highest bid price, instead of "last price". Some less liquid exchanges display wider gap
    between bids and asks, making the "last price" inaccurate indicator for the arbitrage spread calculation.

https://i.imgur.com/ktNbEbk.gif

 -  Some exchanges has been guilty for flipping pair symbols, ultimately displaying prices in reverse. As result, when searching for arbitrage between ETH/BTC, the
    BTC/ETH pairs would not become a part of the arbitrage table. This issue now been addressed!  Pair symbols  "ETH/BTC  /  BTC/ETH can now be easily looked up
    by typing either form of variation into the search box and displayed under single table.

https://i.imgur.com/dnqWdWC.gif

 -  The 24 hour Volume had been converted and symbolized for easy viewing experience.

 - Removed low volume pairs and illiquid exchanges.

 - We're now collecting market books {all bids and asks} in real time for each of the listed exchanges.


COMING SOON:

 - Extended view will soon present an option to display up to 25 last bids and asks in real time.

Happy arbing :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: bobobi on May 05, 2018, 02:03:50 PM
Any plans to add exchanges such as HitBTC, KuCoin, Gate.io etc etc?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on May 06, 2018, 07:11:55 AM
Any plans to add exchanges such as HitBTC, KuCoin, Gate.io etc etc?


Hitbtc and KuCoin are part of the list. Gate.io will be added soon.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on May 08, 2018, 10:21:12 AM
- Gate.io has been added to the arbitrage list.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on May 08, 2018, 06:47:39 PM
Great ZEC / BTC opportunity, don't miss it!!!


https://i.imgur.com/FzX8R0B.png



BUY ZEC ON YOBIT WITH USD   |   SELL ZEC ON WEX FOR USD.


https://i.imgur.com/BRuVjGm.png


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on May 22, 2018, 08:24:26 AM
ZEC / BTC opportunity BOOK


https://i.imgur.com/PqMTEmT.png

https://i.imgur.com/EcDvrhq.png


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on May 26, 2018, 06:29:14 AM
3% Arbitrage anyone?


BUY on Bitfinex [BTC/USD] for $7432      |     SELL  on WEX [BTC/USD] for $7720.  - .40% trade fees.    |   EARN  3%


https://i.imgur.com/OfgAlyW.png

https://i.imgur.com/Te7Uuc8.png https://i.imgur.com/lotYPdT.png


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: shaw1 on May 28, 2018, 01:49:36 PM
I've gotta say, this looks amazing!

I've been developing little things with exchange APIs, with the idea of working up to trading bots, and such.

If you don't mind too terribly, how do you standardize the individual APIs for the different exchanges?
Because that has always been the most difficult part of developing multi platform trading programs for me.

Basically, Bittrex doesn't return data the way poloniex does, etc. etc...

Does it basically boil down to just having to manually loop through all the data, and create a new "uniform" set, or do you use a library or somesuch that does that all for you?

Thanks in advance. Really cool app. That definitely deserves bookmarking. :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on May 28, 2018, 07:01:14 PM
@shaw1: I worked on standard interfaces for exchange REST APIs. The sources are old, but maybe they will help you:

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


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: shaw1 on May 28, 2018, 08:16:17 PM
@arunka71, thanks mate!

My Java may be a little rusty, but I'll get back into the swing of it. :D
22 exchanges? Wow. You were busy.

Appreciate the repo, and definitely worth a merit. :)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: arunka71 on May 28, 2018, 08:57:30 PM
Most implementations are not complete. Just enough to get some market data.

I gave up on the projekt long ago, because there were not enough contributors. These days, I gave up on those REST APIs and only want to focus on streaming APIs.



Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on May 28, 2018, 10:08:15 PM
I've gotta say, this looks amazing!

I've been developing little things with exchange APIs, with the idea of working up to trading bots, and such.

If you don't mind too terribly, how do you standardize the individual APIs for the different exchanges?
Because that has always been the most difficult part of developing multi platform trading programs for me.

Basically, Bittrex doesn't return data the way poloniex does, etc. etc...

Does it basically boil down to just having to manually loop through all the data, and create a new "uniform" set, or do you use a library or somesuch that does that all for you?

Thanks in advance. Really cool app. That definitely deserves bookmarking. :)

Getting the data straightened out wasn't an easy task at all. Besides having to make it uniform, we had to go through each exchange and pair manually and compare it with the data on the actual UI. In most cases API feed is different from what is being displayed on the exchange. In many cases prices had to be inverted, currency symbols swapped, volume flipped etc.. Small to medium size exchanges are particularly sensitive..  Its a wild wild west out there :)

I appreciate the compliment, glad you guys find the app useful.



Title: Re: Cryptocurrency Arbitrage App - beta
Post by: shdvb on May 29, 2018, 03:46:20 AM
what language did you use? Java?


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on May 29, 2018, 03:34:35 PM
what language did you use? Java?

php


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on June 07, 2018, 02:52:48 PM
NEW PREMIUM ARBITRAGE FEATURE WILL BECOME AVAILABLE SOON.

The early subscribers will receive permanent 20% discount


Sign up for updates @ https://www.arbitrage.expert (https://www.arbitrage.expert)




Title: Re: Cryptocurrency Arbitrage App - beta
Post by: IgniHash on June 08, 2018, 06:45:35 AM
Great, This is what I need. Thanks to building this app. Any plan to build this on mobile?
It will good if you can do that. Thank you.


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on June 08, 2018, 02:27:16 PM
Great, This is what I need. Thanks to building this app. Any plan to build this on mobile?
It will good if you can do that. Thank you.

Its a web based app, you can run it from any mobile device..


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on June 10, 2018, 07:39:03 PM
ITS THE BEST ARB DAY..HURRY!

https://i.imgur.com/WpGqFIa.png


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on June 23, 2018, 03:22:08 AM
When the market continues to sink, we continue taking advantage of arbitrage

Confirmed 2.43% from 10,966.32

BUY on #Kraken : #ETH /usd   ==>   SELL on @YobitExchange : eth/usd

https://i.imgur.com/6jI08OH.png


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on June 27, 2018, 04:32:18 PM
GET UNLIMITED REAL-TIME #ARBITRAGE MULTI-PATHS ACROSS 30 MOST POPULAR EXCHANGES.
*We carefully analyze books to deliver the most accurate quotes.


BTCBTC SUBSCRIPTIONS STARTING FROM 100/mo BTCBTC

https://i.imgur.com/1Fqiecc.png

https://twitter.com/arb_exp/status/1011948724128448512 (https://twitter.com/arb_exp/status/1011948724128448512)


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on June 28, 2018, 12:48:24 AM
https://i.imgur.com/oEd2ugX.gif


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on June 29, 2018, 12:04:29 AM
A Sample of a round trip path.


https://i.imgur.com/TdWMSmT.png


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on July 20, 2018, 01:09:26 AM
INTRODUCING ARBITRAGE PATHS!

WHAT IS PATHS?

-Think of it as complete and rewarding roadmap across the most popular cryptocurrency exchanges.

HOW DOES IT WOPK?
While Expert continually scans the market for wider price spreads, the matching algorithm runs through millions of potential combinations in attempt to display the most accurate real-time arbitrage opportunities.

We believe that each path must be carefully validated before it can be followed. The validation process includes confirming the maintenance status of each crypto wallet and ensuring the overall trade+withdrawal fees do not exceed the profit.

We consider Arbitrage.expert* a tool* made for identifying arbitrage opportunities in real time across most popular crypto exchanges. It should be used as an addition to an existing trading strategy.

Please be aware: We DO NOT guarantee profits! While some arbitrage opportunities may appear very lucrative at first sight, sometimes there is a good reason behind it. Always do your own research.

Arbitrage Paths is not an arbitrage trading bot. We will never ask for your API keys.

According to Google a “tool” is “a device, used to carry out a particular function”.

SUBSCRIBE FOR 20% DISCOUNTNT


https://www.arbitrage.expert/paths (https://www.arbitrage.expert/paths)

https://i.imgur.com/8bSqcDZ.png


Title: Re: Cryptocurrency Arbitrage App - beta
Post by: exchange.blue on August 31, 2018, 07:33:51 AM
Work in progress, guys. ETA 10 more days.



Alpha version will include the following functionality:

- Arbitrage Paths
- Historic spread charts
- Arbitrage backtesting


The Beta version will include:

- Wallet maintenance status
- Various Buy / Sell Arbitrage alerts
- Forum (upon demand).


https://i.imgur.com/NzZiHSF.png


Title: Re: Cryptocurrency Arbitrage Paths SaaS
Post by: exchange.blue on August 31, 2018, 12:43:51 PM
Here is quick video preview: https://twitter.com/arb_exp/status/1035506553019936768 (https://twitter.com/arb_exp/status/1035506553019936768)


Title: Re: 🌟 ★★★ PRE-RELEASE 🔥 CRYPTO 🔥ARBITRAGE 🔥PATHS 🔥SaaS ★★★ 🌟
Post by: Caulon on September 02, 2018, 06:40:30 PM
Thats not how threads work you created youre own thread for your platform and out of respect a competitor should not even want to post on another persons thread telling them how they should build their system if you do not even understand what it is meant to do. You are not the only mind in the universe everyone should listen to. You crossed the line when you posted server error picture on my thread. I already informed members my site was getting an upgrade but your intention was to make me look bad. No ones an idiot dude. Like I said leave me alone I had no interest in doing what I did I still feel bad. Humans need to learn to co-exist like I said.


Title: Re: 🌟 ★★★ PRE-RELEASE 🔥 CRYPTO 🔥ARBITRAGE 🔥PATHS 🔥SaaS ★★★ 🌟
Post by: exchange.blue on September 06, 2018, 10:32:48 AM
The ETA is taking a bit longer than I had initially anticipated.

https://twitter.com/arb_exp/status/1037267725691887616 (https://twitter.com/arb_exp/status/1037267725691887616)



Title: Re: 🌟 ★★★ PRE-RELEASE 🔥 CRYPTO 🔥ARBITRAGE 🔥PATHS 🔥SaaS ★★★ 🌟
Post by: exchange.blue on September 22, 2018, 02:42:41 PM
Sorry for the extended delay... the alerts feature is taking longer than we've initially anticipated. Here is whats coming..

**CUSTOM ALERTS**

 - Set up custom arbitrage, drops and shots alerts sent directly to your telegram.

https://i.imgur.com/lHKceEn.png

https://i.imgur.com/A0WNqE8.png



Title: Re: 🌟 ★★★ PRE-RELEASE 🔥 CRYPTO 🔥ARBITRAGE 🔥PATHS 🔥SaaS ★★★ 🌟
Post by: sky^walker on September 27, 2018, 08:31:00 AM
Your tool looks great!

Did I understand correctly that your tool accounts for wallets which are offline due to maintenance? Where does it show the status? Thanks!


Title: Re: 🌟 ★★★ PRE-RELEASE 🔥 CRYPTO 🔥ARBITRAGE 🔥PATHS 🔥SaaS ★★★ 🌟
Post by: exchange.blue on September 27, 2018, 12:41:01 PM
Your tool looks great!

Did I understand correctly that your tool accounts for wallets which are offline due to maintenance? Where does it show the status? Thanks!

Thanks for the feedback. Yes, it will account for wallet maintenance status, however it will only be released in the proceeding version. ETA 1-2 months.