Bitcoin Forum
June 23, 2024, 08:19:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 [975] 976 977 978 979 980 981 982 983 984 985 986 987 988 »
19481  Economy / Exchanges / Re: [ANN] Bittrex - Next generation exchange (btc/ltc/eac/ppc/rdd/ftc/and more) on: July 15, 2014, 03:54:15 AM
Yes I tried to get it modified but it wouldn't work.

The URL is slightly different from Crypsty/Poloniex and I kept getting 404 errors.

And yes, we can start a group-fund and hire a programmer to get it done.
19482  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][JPC]JackpotCoin#Unique JHA Algo#Ultra Fast Trans#1st True PoW/PoS Hybrid on: July 14, 2014, 07:34:37 PM
Real-time Jackpot Block List

http://explorer.jpcpal.com/jackpot.php

You don't need to search all block records to find out which one was the jackpot block now.





Nice feature however why is it that there is a jackpot every day or so. It prevents it from growing.
19483  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRC] | VeriCoin | POS - NSDI | VeriBit | VeriSend | VeriSMS on: July 14, 2014, 07:33:15 PM
Great to hear that it all turned out for the best.

Too bad exchanges in the past couldn't of done the same.

I am also surprised the value held up pretty well.

Seems like a great coin
19484  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRC] | VeriCoin | POS - NSDI | VeriBit | VeriSend | VeriSMS on: July 14, 2014, 10:23:43 AM
You fudding idiots, letting the hackers keep the 8m coins wouldve been much worse. It would have created a massive sell off, either from the hackers or the investors anticipating a sell off from the hackers. You guys really have nothing better to do but just keep on repeating the same nonesense for hours? Hey bobby, doesnt it kind of suck for other coins that the hackers stole VRC instead of any other coin? Obviously VRC is an established giant for that to happen. And its not going anywhere.

They took vrc because mintpal had weak security measures in place for vrc. The attackers tried to get btc and ltc but we denied as that security is beefeeer then vrc.



People only try to steal what is valuable.  that is why they went after Vericoin because they know it is a coin that will be worth more in the future.  They could have stolen cloak or some other trash coin but they went for VRC and BTC!

The thieves know a damn good coin when they see one!

No, they stole it because Mintpal forgot to put it on cold storage.

It wasn't on cold storage due to the high volume
19485  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRC] | VeriCoin | POS - NSDI | VeriBit | VeriSend | VeriSMS on: July 14, 2014, 04:31:07 AM
Every 10 minutes there is a development here.

Can someone please sum up what happened today.??
19486  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRC] | VeriCoin | POS - NSDI | VeriBit | VeriSend | VeriSMS on: July 13, 2014, 10:11:07 PM
Well this is exactly what greed and fear do to people

Just like the stock markets


Just let them rollback. Nothing will go wrong
19487  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRC] | VeriCoin | POS - NSDI | VeriBit | VeriSend | VeriSMS on: July 13, 2014, 09:15:02 PM
Anybody scared about other coins that in Mintpal wallet?

Why didnt they just withdraw BTC instead?
19488  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRC] | VeriCoin | POS - NSDI | VeriBit | VeriSend | VeriSMS on: July 13, 2014, 08:39:38 PM
So somebody stole $2,000,000 of coins and thought that he would get away with it?

Like nobody would notice.

Idiots!
19489  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] Bittrex.com (US-based, exchange) now open to the public on: July 11, 2014, 10:51:46 PM
Can somebody here please post the Python wrapper for Bittrex?

Since V1.0 is ending on July 20
19490  Economy / Service Announcements / Re: BitcoinWisdom.com - Live Bitcoin/LiteCoin Charts on: July 10, 2014, 07:14:27 AM
Can you please add URO for Bittrex and Mintpal

Thanks!
19491  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: 【BOT】 C.A.T. Cryptocurrency Automatic Trader (100+ Feedbacks) BTER Is Active! on: July 10, 2014, 01:11:34 AM
I would be VERY careful buying this Bot because all this will do is most likely get you banned from the exchanges because you are flooding the exchange with pulled orders.

If a few users have this bot running then its fine but if 100's of users are using it then every second there will be thousands of pulled orders and the exchanges will have to ban these bots.

You should just use this bot privately and not sell it.
19492  Economy / Trading Discussion / Re: Which bots are being used on Bittrex? on: July 10, 2014, 12:58:08 AM
Every bot is a private bot. Need to write code and design it yourself.
19493  Economy / Exchanges / Re: [ANN] Bittrex - Next generation exchange (btc/ltc/eac/ppc/rdd/ftc/and more) on: July 10, 2014, 12:41:38 AM
It says on July 20th API V 1.0 will be phased out. I am not good at programming and would like a similar wrapper

Anyway to modify the one that was used by Cryptsy/Poloniex to use with Bittrex?



code below
Quote
Quote
import urllib
import urllib2
import json
import time
import hmac,hashlib

def createTimeStamp(datestr, format="%Y-%m-%d %H:%M:%S"):
    return time.mktime(time.strptime(datestr, format))

class poloniex:
    def __init__(self, APIKey, Secret):
        self.APIKey = APIKey
        self.Secret = Secret

    def post_process(self, before):
        after = before

        # Add timestamps if there isnt one but is a datetime
        if('return' in after):
            if(isinstance(after['return'], list)):
                for x in xrange(0, len(after['return'])):
                    if(isinstance(after['return']
, dict)):
                        if('datetime' in after['return']
and 'timestamp' not in after['return']
):
                            after['return']
['timestamp'] = float(createTimeStamp(after['return']
['datetime']))
                           
        return after

    def api_query(self, command, req={}):

        if(command == "returnTicker" or command == "return24Volume"):
            ret = urllib2.urlopen(urllib2.Request('https://poloniex.com/public?command=' + command))
            return json.loads(ret.read())
        elif(command == "returnOrderBook"):
            ret = urllib2.urlopen(urllib2.Request('http://poloniex.com/public?command=' + command + '&currencyPair=' + str(req['currencyPair'])))
            return json.loads(ret.read())
        elif(command == "returnMarketTradeHistory"):
            ret = urllib2.urlopen(urllib2.Request('http://poloniex.com/public?command=' + "returnTradeHistory" + '&currencyPair=' + str(req['currencyPair'])))
            return json.loads(ret.read())
        else:
            req['command'] = command
            req['nonce'] = int(time.time()*1000)
            post_data = urllib.urlencode(req)

            sign = hmac.new(self.Secret, post_data, hashlib.sha512).hexdigest()
            headers = {
                'Sign': sign,
                'Key': self.APIKey
            }

            ret = urllib2.urlopen(urllib2.Request('https://poloniex.com/tradingApi', post_data, headers))
            jsonRet = json.loads(ret.read())
            return self.post_process(jsonRet)


    def returnTicker(self):
        return self.api_query("returnTicker")

    def return24Volume(self):
        return self.api_query("return24Volume")

    def returnOrderBook (self, currencyPair):
        return self.api_query("returnOrderBook", {'currencyPair': currencyPair})

    def returnMarketTradeHistory (self, currencyPair):
        return self.api_query("returnMarketTradeHistory", {'currencyPair': currencyPair})


    # Returns all of your balances.
    # Outputs:
    # {"BTC":"0.59098578","LTC":"3.31117268", ... }
    def returnBalances(self):
        return self.api_query('returnBalances')

    # Returns your open orders for a given market, specified by the "currencyPair" POST parameter, e.g. "BTC_XCP"
    # Inputs:
    # currencyPair  The currency pair e.g. "BTC_XCP"
    # Outputs:
    # orderNumber   The order number
    # type          sell or buy
    # rate          Price the order is selling or buying at
    # Amount        Quantity of order
    # total         Total value of order (price * quantity)
    def returnOpenOrders(self,currencyPair):
        return self.api_query('returnOpenOrders',{"currencyPair":currencyPair})


    # Returns your trade history for a given market, specified by the "currencyPair" POST parameter
    # Inputs:
    # currencyPair  The currency pair e.g. "BTC_XCP"
    # Outputs:
    # date          Date in the form: "2014-02-19 03:44:59"
    # rate          Price the order is selling or buying at
    # amount        Quantity of order
    # total         Total value of order (price * quantity)
    # type          sell or buy
    def returnTradeHistory(self,currencyPair):
        return self.api_query('returnTradeHistory',{"currencyPair":currencyPair})

    # Places a buy order in a given market. Required POST parameters are "currencyPair", "rate", and "amount". If successful, the method will return the order number.
    # Inputs:
    # currencyPair  The curreny pair
    # rate          price the order is buying at
    # amount        Amount of coins to buy
    # Outputs:
    # orderNumber   The order number
    def buy(self,currencyPair,rate,amount):
        return self.api_query('buy',{"currencyPair":currencyPair,"rate":rate,"amount":amount})

    # Places a sell order in a given market. Required POST parameters are "currencyPair", "rate", and "amount". If successful, the method will return the order number.
    # Inputs:
    # currencyPair  The curreny pair
    # rate          price the order is selling at
    # amount        Amount of coins to sell
    # Outputs:
    # orderNumber   The order number
    def sell(self,currencyPair,rate,amount):
        return self.api_query('sell',{"currencyPair":currencyPair,"rate":rate,"amount":amount})

    # Cancels an order you have placed in a given market. Required POST parameters are "currencyPair" and "orderNumber".
    # Inputs:
    # currencyPair  The curreny pair
    # orderNumber   The order number to cancel
    # Outputs:
    # succes        1 or 0
    def sell(self,currencyPair,orderNumber):
        return self.api_query('cancelOrder',{"currencyPair":currencyPair,"orderNumber":orderNumber})

    # Immediately places a withdrawal for a given currency, with no email confirmation. In order to use this method, the withdrawal privilege must be enabled for your API key. Required POST parameters are "currency", "amount", and "address". Sample output: {"response":"Withdrew 2398 NXT."}
    # Inputs:
    # currency      The currency to withdraw
    # amount        The amount of this coin to withdraw
    # address       The withdrawal address
    # Outputs:
    # response      Text containing message about the withdrawal
    def sell(self, currency, amount, address):
        return self.api_query('withdraw',{"currency":currency, "amount":amount, "address":address})
19494  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][JPC]JackpotCoin#Unique JHA Algo#Ultra Fast Trans#1st True PoW/PoS Hybrid on: July 09, 2014, 07:52:58 AM
What happend with price?
So great coin with fast transaction and lot of features :-/
There's only 8 BTC on buy orders at all exchanges. Most miners keep the coin instead of dumping it and take the advantage of staking it. I even see that the "top" is buying at this low price.

I see 16 BTC buy orders on mintpal and bittrex alone.  What is more important is the lower price gets people to panic sell, so I'm hoping it goes down even more.  The order depth is looking better and better the longer we stay at a lower price.  I hope the price scares more people into selling so they will remove their large sell orders and sell them for cheap.

Yes but those orders were cancelled when the price came close. Need to becareful when you see this happening.

19495  Alternate cryptocurrencies / Mining (Altcoins) / Re: Selling my GPUs. How to test GPU for any damage? on: July 08, 2014, 03:00:22 AM
Furmark and OCCT from what I read doesn't show any artifacts. It might work fine without errors during the test but when playing a game it might start artifacting.
19496  Alternate cryptocurrencies / Mining (Altcoins) / Selling my GPUs. How to test GPU for any damage? on: July 07, 2014, 08:13:32 PM
I am offloading and selling some of my GPUs on eBay.

I don't want negative feedback so I want to test these GPUs prior to selling them.

I don't have any issues with hardware error but I want to make sure I don't get any artifcats.

What would be the best way to test these cards out?


I am thinking about downloading a game such as BF4 and running some timedemo for an hour and seeing if it artifacts.



19497  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][JPC]JackpotCoin#Unique JHA Algo#Ultra Fast Trans#1st True PoW/PoS Hybrid on: July 07, 2014, 08:41:03 AM
I moved my miners to wafflepool x11.

No longer is mining JPC worth it.

Same difficulty when price was 0.000000045

Makes no sense if you ask me
19498  Alternate cryptocurrencies / Mining (Altcoins) / Re: R7 260X - Stuck on 150Mhz unless 2 monitors are plugged in? on: July 07, 2014, 12:15:59 AM
I upgraded the drivers and it fixed the problem in Windows actually but not linux

Any suggestions?


Works fine with Scrypy and N-Scrypt
19499  Alternate cryptocurrencies / Mining (Altcoins) / Re: New sgminer support x11, x13, x14 and x15 (with source) on: July 07, 2014, 12:14:04 AM
I tried just about everything but can't get X15 to work properly.

It works fine on my R9 270X but not on my older 6990 cards.


19500  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][RZR] Razor - Cutting Edge of Technology ☆[TOR Anon]☆ [No Premine] [Scrypt] on: July 06, 2014, 04:57:57 PM
Problem is there are too many coins out there. So if a coin doesn't pump in a day or two, it gets forgotten and dumped.
Pages: « 1 ... 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 [975] 976 977 978 979 980 981 982 983 984 985 986 987 988 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!