Bitcoin Forum
September 06, 2024, 10:28:59 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] 🔥 CrossFire 🔥 Powerful Altcoin Arbitrage [+5800 Pairs] [Telegram] on: February 19, 2018, 12:29:10 AM
Hey there! It is indeed a bit silent here! We are in the process of hiring a social media manager to keep track with the forum thread.

We have released a lot of powerful day trading tools since this post. Check them out on xypher.io. CrossFire keeps being free Smiley

As well, if you wish to keep track of developtment, join us on our telegram chatroom https://t.me/XypherTalk
2  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [Coinscalendar.com] Crypto Calendar with Altcoins Events on: September 28, 2017, 10:41:28 PM
API will be available in 1-2 Months

Alright, will keep tuned to it. Thanks.
3  Bitcoin / Project Development / Re: Need help making my first volume monitor bot on: September 28, 2017, 10:02:03 PM
You won't find an specific tutorial for this anywhere.

I personally have been working on something like this lately for Bittrex. Here is some code to get you started (Python) it listens to the Bittrex Socket and pushes updates from the SubscribeToExchangeDeltas. This one listens only to the OMG pairs on Bittrex (BTC-OMG, ETH-OMG, USDT-OMG) but it works, from there you have to do your logic  Cheesy. This prints the market with the amount of the base currency that has been bought/sold live


Code:

from requests import Session
from signalr import Connection
import time, json

markets = ['BTC-OMG', 'ETH-OMG', 'USDT-OMG']

def orderPrinter(update):
    orderUnparsed = json.dumps(update)
    JSONOrder = json.loads(orderUnparsed)

    try:
        MarketName = JSONOrder[0]['MarketName']
        Fills = JSONOrder[0]['Fills']
        for order in Fills:
            OrderType = order['OrderType']
            Rate = order['Rate']
            Quantity = order['Quantity']
            Total = Rate * Quantity

            print MarketName, OrderType, Total
    except Exception as e:
        print e
        pass



with Session() as session:
connection = Connection('http://socket.bittrex.com/signalr', session)

corehub = connection.register_hub('coreHub')

#create error handler
def print_error(error):
print('error: ', error)


# debug information, show all data
def print_raw_data(*args, **kwargs):
print (args, kwargs)

def ticker_data(*args, **kwargs):
print "ticker", (args, kwargs)
def market_data(*args, **kwargs):
#print "ticker", (args, kwargs)
            orderPrinter(args)

connection.error += print_error

connection.start()
print "sending subscription request"
for market in markets:
corehub.server.invoke('SubscribeToExchangeDeltas', market)

#corehub.client.on('updateSummaryState', ticker_data)
corehub.client.on('updateExchangeState', market_data)

connection.wait(150000)

4  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [Coinscalendar.com] Crypto Calendar with Altcoins Events on: September 28, 2017, 09:12:52 PM
We have been looking for a calendar site with an API to integrate it in one of our telegram bots. Do you have an ETA for this feature? If so we are looking for it  Grin
5  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [FREE] CrossFire: Powerful Altcoin Arbitrage [+5800 Pairs] [Telegram Available] on: September 28, 2017, 03:58:32 PM
May have found a bug when adding a coin to my FAV

https://xypher.io/CrossFire/AddFavs.asp
Thanks for the heads up. We have solved the bug, small typo on our end Smiley
6  Alternate cryptocurrencies / Service Announcements (Altcoins) / [ANN] 🔥 CrossFire 🔥 Powerful Altcoin Arbitrage [+5800 Pairs] [Telegram] on: September 28, 2017, 03:19:44 PM


Xypher.IO, a website developing trading tools, is proud to present you CrossFire: the only altcoin arbitrage tool you will ever need. It's a 100% free tool and it will remain as such forever. You only need to register on the website (for free) to use it.

Features:
Built-in wallet status checker for the following exchanges:
YoBit
Cryptopia
Bittrex
Poloniex
NovaExchange
LiveCoin

More than 5800 Trading Pairs. Base markets included:
BTC
LTC
ETH
USDT
USD
XMR
MOON
ESP2
PIGGY
HTML5
NZDT
EUR
WUSD
WAVES
RUR
HKD

Current Exchanges Supported:
Bittrex
Poloniex
Bitfinex
Liqui
NovaExchange
Cryptopia
YoBit
BleuTrade
CoinGather
CoinGate
LiveCoin
HitBTC
C-CEX
CoinExchange.IO
TuxExchange
Tidex

Search methods:
By pair (default method)
By exchange (to arbitrage from the exchanges you have already funded)
By coin (search all the trading pairs a single asset has)

Additional features:
Favs: create a list with the pairs  you want to arbitrage from
Naming conventions: we are constantly removing lower market cap altcoins that interfere with higher cap assets with the same ticker. Note that some of them may slip up, but rest assured we are working on having a 100% accurate list.
Telegram bot: ping @CrossFireBot to get arbitrage opportunities straight from your phone.
All you have to do is write /p {Base} {Coin} and you will get a list with the 4 lowest asks and 4 highest bids across exchanges, with the potential profit included.
For example:
/p BTC NEO -> This will retrieve a list of arbitrage opportunities of NEO on BTC markets.
/p ETH NEO -> This will retrieve a list of arbitrage opportunities of NEO on ETH markets.
/p NEO -> If a base market is not specified, the bot will retrieve the BTC markets available.

Screenshots:
Index
Search by coin (ETH)
Search by trading pair (BTC)
Search by exchange (Bittrex)

Make sure to join our group chat on @XypherTalk too Wink
We will be announcing another tool soon, it is currently available on a free beta stage on the website, called CoinSniper: a powerful Bittrex signaller based on TA. Check it out before anyone else Wink

We have a lot of updates coming out for CrossFire soon. Stay tuned Smiley!
7  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: Which exchange has the largest number of altcoins available? on: September 26, 2017, 08:01:21 PM
Cryptopia and NovaExchange are the most crowded exchanges. Nova alone was more than 3000 trading pairs.
8  Alternate cryptocurrencies / Altcoin Discussion / Re: Is the China FUD over ? on: September 22, 2017, 03:11:19 AM
Regulation isn't bad. It's actually a good thing, means we are on the right path.
9  Bitcoin / Bitcoin Discussion / Re: JP Morgan is a cheat. on: September 17, 2017, 06:01:46 PM
This is why we need regulations. If bitcoin was regulated, do you imagine the amount of laws JP just broke?
10  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Coin Calendar - Never Miss Important Altcoin Fundamental Events Ever Again! on: September 17, 2017, 03:50:40 PM
This looks like a pretty nice service, can come quite useful.

Do you offer an API or plan to? I can see this could come in handy for a Telegram bot; I can create one free of charge for everyone to use if you are interested Smiley
11  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: Dont Use YoBit !! on: September 17, 2017, 02:13:22 AM
Check this out, I calculated some time ago the amount of wallets Yobit has disabled.


Just did the math.

There are around 917 wallets in YoBit.

From those:
20 are in "Delayed" status. That's around a 2%
573 are "In Mainteinance" status. That's around a 62%
324 are online. That's a around 35%. However this number is even smaller as some of those online wallets are running a "YoBit Fork" (yeah, that's even a thing now) and some others appear to be online but they throw a last time warning, not allowing users to withdraw coins.

More than 50% of wallets disabled on a exchange. It's ridiculous.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AMP - The Currency That Powers Your Attention On Synereo on: September 15, 2017, 02:12:55 PM
Someone must have got tired of holding. Price dumped to 3200 as someone literally sold 20 BTC worth of AMP at once.

That's probably a good thing. I haven't heard of any one talking about using wild spark or that it even exists online. What's the marketing plan here

What I'm wondering is why. Clearly the same person on Bittrex who is selling a ton of AMP at once. First was 20 BTC, it got eaten, then 11 BTC, and now there's the another person selling 8 BTC worth of AMP, at 3200, at once. Must be some big AMP supporter...
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AMP - The Currency That Powers Your Attention On Synereo on: September 15, 2017, 04:05:09 AM
Someone must have got tired of holding. Price dumped to 3200 as someone literally sold 20 BTC worth of AMP at once.
14  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: Wallets in maintenance on Yobit on: September 14, 2017, 04:02:48 PM
Just did the math.

There are around 917 wallets in YoBit.

From those:
20 are in "Delayed" status. That's around a 2%
573 are "In Mainteinance" status. That's around a 62%
324 are online. That's a around 35%. However this number is even smaller as some of those online wallets are running a "YoBit Fork" (yeah, that's even a thing now) and some others appear to be online but they throw a last time warning, not allowing users to withdraw coins.

More than 50% of wallets disabled on a exchange. It's ridiculous.
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] Authorship - Making the Internet More Free and Accessible For Authors on: September 14, 2017, 03:40:05 PM
Finally, an ICO with real life application (it's been a while!) Wish you guys the best.
16  Other / Off-topic / Re: Bitcoin is a good investment now, because... on: September 14, 2017, 05:21:43 AM
It is a good investment as it will no only increase in value over time, it also gave birth to the other beautiful technologies that have come up after it. Bitcoin will always be the father.
17  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: YoBit.Net - CRYPTOCURRENCY EXCHANGE & MultiCoin DICE - Free Coins every 1-24 hrs on: September 13, 2017, 04:56:02 PM
Guys pay attention!
Yobit is a big scam, i deposit 997.9 RMS coin since 2016 and i still have not received anything, i sent them 100000 messages and no reply, they didn't care if i lose my money.
bad support bad website everything is sucks.
see the prove in pictures
regards
Almost all people already aware with yobit. They have very bad supports which very annoying while we have got some problem.
Sorry, your deposit didn't appear since 2016 and you have mesaaged them 100,000 times?
yes my deposit still in process since 17.04.2016, i sent them many messages but no reply. my deposit as you can see in pictures just gone!!
That's the longest unsolved problem ever i heard until now. It has been more than a year.

I just had my deposit credited back to me. Took 1.5-weeks, but since I put my funds through Capitalist.net I was in contact with their support staff and they kept on bugging the YoBit lone worker. (Yes, the service there is horrible because it's one guy answering to all of your complains and concerns). YoBit.net has ONE-worker, it's founder.  Grin

Its this true? That's a bit surprising considering the huge amount of money he must be making.
18  Other / Off-topic / Re: Are bitcoins only for the educated and knowledgeable people only? on: September 13, 2017, 02:53:00 PM
Bitcoins are for everyone, that was the vision of Satoshi. However it is kind of complicated to use for the average John and Jane Doe. No doubt about that.
19  Bitcoin / Bitcoin Discussion / Re: Criminals Thought Bitcoin Was the Perfect Hiding Place, but They Thought Wrong on: September 13, 2017, 02:50:28 PM
They are (finally) realizing bitcoin isn't anonymous. Nothing new here, any old school knows about this. There are many other alts to solve this issue anyway like Monero, PIVX, etc.
20  Economy / Economics / Re: The panic seller irony on: September 13, 2017, 04:43:59 AM
Many people do not know that trading is a game of skills and most times jump into it without thinking that it takes them time to make money from their day job. Some even involved in hard labour and most times lose those money with a fantasy that there are going to make serious profit from buy coins at the wrong time. You should buy when bitcoin is low and sell when it is high but most traders do the opposite and lose their hard earned money.

The root of this is the same BTC users. LOTS of them just promote the technology as a "get quick rich scheme". And since it can actually be profitable, newbies only get because of the financial benefit, without understanding the true power that is behind the technology.
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!