Author

Topic: [ANN] Bittrex - Next generation exchange (btc/ltc/eac/ppc/rdd/ftc/and more) - page 145. (Read 168069 times)

sr. member
Activity: 483
Merit: 250
Not Sr or hero, but suppot ADN, it has a nice hero member dev. Never run away like CNL/VAST!
legendary
Activity: 1148
Merit: 1018
It's about time -- All merrit accepted !!!
hero member
Activity: 742
Merit: 500
* KeyserSozeMC Buys a shitload of UNO.
hero member
Activity: 559
Merit: 500
UNO on Bittrex would rock! If you add any of those three coins make it UNO.

I wouldn't mind seeing all three coins on Bittrex to be honest, ADN and DGB are solid coins with ambitions and good devs. That means a lot these days!
legendary
Activity: 1260
Merit: 1001
UNO is an excellent community and coin. It will become the premier crypto store of value.  Please add!
legendary
Activity: 1652
Merit: 1057
bigtimespaghetti.com
Interested in trading UNO on Bittrex myself. Not a massive fan of cryptsy.
member
Activity: 89
Merit: 10
I have traded at Bittrex for a month now and have made a good amount of btc. The only problem is I have to send my profits to cryptsy or mintpal to buy UNO! I would love to eliminate this step! Please add UNO!
hero member
Activity: 574
Merit: 523
UNO has a very strong community and deserves to be listed at Bittrex IMO. So I vote for it.
hero member
Activity: 742
Merit: 500
legendary
Activity: 1197
Merit: 1000
I vote for UNO @ bittrex!
hero member
Activity: 742
Merit: 500
sr. member
Activity: 298
Merit: 250
not senior or hero, but thought i'd stop by anyway to voice my support for UNO
 Wink

Me, too. I am not Senior member, and a I am only a Hero to my children. But I strongly support UNO on Bittrex as it is one of my favorite coins.  I stopped trading on mintpal and removed my coins because they want too many confirms for UNO deposits. I trade on Bittrex now and I hope soon I can move my UNO to Bittrex too.
It is difficult to keep up with so many new coins but UNO is familiar and trusted and I know this one is in it for the long haul. Definitely belongs on Bittrex.
sr. member
Activity: 240
Merit: 250
not senior or hero, but thought i'd stop by anyway to voice my support for UNO
 Wink
hero member
Activity: 602
Merit: 500
+1
give us Uno at bittrex. I'll be trading there.
sr. member
Activity: 350
Merit: 250
I've never endorsed stuff in my life, but I can endorse this Shocked
legendary
Activity: 2450
Merit: 1076
keybase.io/fallingknife/


I endorse UNO on Bittrex.  Actually, I would be glad to see all of these coins on Bittrex.
hero member
Activity: 551
Merit: 500
I Heartily Endorse This Event Or Product #FlappyCoin
sr. member
Activity: 392
Merit: 250
Bittrex is great!  Happy to see you thriving!

I suggest a feature request - but it would need some serious work on your frontend engine.
I know it's tough, but you would make many users happy. Especially the one with smaller machines.


The reason behind it is that we actually have to close all bittrex windows if we want to do anything else with our machines.
I can keep poloniex and mintpal tabs open - but bittrex is so hungry for RAM, that two or three bittrex coins are already too much, to leave open when not absolutely necessary.  I don't know about everyone else, but myself, I cannot afford yet to trade on a 64GB RAM, SSID, watercooled supercomputer :-)


You can see the drama I am in ... easily when you go to the task manager inside Chrome (menu ... tools ... task manager), and sort decreasing by the 'memory' column. Compare mintpal (crappy charts, but less RAM), poloniex (good charts, less RAM), bitcoinwisdom (amazing charts, less RAM), cryptrader (amazing charts, less RAM) - and bittrex (good charts, and soon less RAM  Wink )

As soon as I close the bittrex tabs, my computer inhales, exhales - and starts smiling, and is happy again :-)

I am not sure what makes the bittrex frontend so memory heavy, but in my experience with programming, it could even be a little thing. Some basic architecture decision taken differently, and suddenly *whew* much less RAM usage.  Depending on the language you used, a bit of profiling might not be difficult even, but will tell you which subfunctions are eating all that RAM.


What do you think?

Tip me for my work: 19ff2KsUxD7B3EumxhrKRJ5qDP7yc8YQfD


Me,too.Do you find a solution.Right now I install an extension to hibernate all bittrex tabs.But it is not convenient and I can's see the real-time price from tabs.
legendary
Activity: 3808
Merit: 1723
https://github.com/T...ples/bittrex.go
 
work example:
package main
 
import (
    "fmt"
    "github.com/toorop/go-bittrex"
)
 
const (
    API_KEY = ""
    API_SECRET = ""
)
 
func main() {
    // Bittrex client
    bittrex := bittrex.New(API_KEY, API_SECRET)
 
     // Get Ticker (BTC-VTC)
    /*
        ticker, err := bittrex.GetTicker("BTC-DRK")
        fmt.Println(err, ticker)
    */
}
 
keys - https://bittrex.com/Home/Api
Programming language, I so understood, GO.
 
It is request for receipt of initial information on a rate:
Judging by documentation the answer in a type shall come:
/public/getticker
Used to get the current tick values for a market.
Parameters parameter required description market required a string literal for the market (ex: BTC-LTC)
Request:https://bittrex.com/...ublic/getticker
Response{
    "success" : true,
    "message" : "",
    "result" : {
        "Bid" : 2.05670368,
        "Ask" : 3.35579531,
        "Last" : 3.35579531
    }
}
Here and the question how to give a rate and to appropriate it to any variable or it already in ticker,err  , and here err is a type shows on a data file and ticker, bid will issue me result about a purchase price?

Yes but we would prefer Python because we used that wrapper for Crypsty/Poloniex and its easier for us to use.
sr. member
Activity: 411
Merit: 250
https://github.com/T...ples/bittrex.go
 
work example:
package main
 
import (
    "fmt"
    "github.com/toorop/go-bittrex"
)
 
const (
    API_KEY = ""
    API_SECRET = ""
)
 
func main() {
    // Bittrex client
    bittrex := bittrex.New(API_KEY, API_SECRET)
 
     // Get Ticker (BTC-VTC)
    /*
        ticker, err := bittrex.GetTicker("BTC-DRK")
        fmt.Println(err, ticker)
    */
}
 
keys - https://bittrex.com/Home/Api
Programming language, I so understood, GO.
 
It is request for receipt of initial information on a rate:
Judging by documentation the answer in a type shall come:
/public/getticker
Used to get the current tick values for a market.
Parameters parameter required description market required a string literal for the market (ex: BTC-LTC)
Request:https://bittrex.com/...ublic/getticker
Response{
    "success" : true,
    "message" : "",
    "result" : {
        "Bid" : 2.05670368,
        "Ask" : 3.35579531,
        "Last" : 3.35579531
    }
}
Here and the question how to give a rate and to appropriate it to any variable or it already in ticker,err  , and here err is a type shows on a data file and ticker, bid will issue me result about a purchase price?
Jump to: