Pages:
Author

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

full member
Activity: 1274
Merit: 105
Why the DASH withdraw fee is so big?

0.05 DASH = 3.6$

It's bigger then BTC withdraw fee...
Maybe devs have put a comma in the wrong place?  Huh

Wow, that's probably the highest withdrawal fee (of DASH) among all of the coins listed at Bittrex.

Let's compare it with a few other notable exchanges:

Binance = 0.002 DASH
Bitfinex = 0.01 DASH
HitBTC = 0.03 DASH

 Roll Eyes
Yep... It's a highest withdrawal fee in Bittrex and highest withdrawal fee for Dash among all exchanges...
And it is absolutely inadequate...
So I suppose it's just because devs have put a comma or dot in the wrong place...
full member
Activity: 1274
Merit: 105
Why the DASH withdraw fee is so big?

0.05 DASH = 3.6$

It's bigger then BTC withdraw fee...
Maybe devs have put a comma in the wrong place?  Huh
jr. member
Activity: 59
Merit: 1
You should know that Bittrex can block a verified account after a long time of use. This happened to me recently and they simply ignore my appeals for support (1532649). I’m confused and don’t know what to do ... I lost a few thousand dollars and don’t know if I can get them back. It looks like a new type of fraud.
full member
Activity: 1274
Merit: 105
ESET Nod32 started swearing at socket.bittrex.com...
And there was no such thing earlier...
May be there are some new problems with security on Bittrex?
legendary
Activity: 2212
Merit: 1199
(...)

EDIT:
Basically,

The incorrect/bugged formula looks like this:

Code:
ASK_quantity = ( ASK_rate *  ASK_total_commission_included ) + ( ( ASK_rate * ASK_total_commission_included ) * (  Bittrex_commission / 100 ) )

Check: ( 1 * 0.9975 ) + ( ( 1 * 0.9975 ) * ( 0.25 / 100 ) ) = 0.99999375

The CORRECT (ASK orders) formula looks like this:
Code:
ASK_quantity = ( ASK_total_commission_included * ( 100 / ( 100 - Bittrex_commission ) ) ) * ASK_rate

Check: 0.9975 * ( 100 / 99.75 ) * 1 = 1.00000000

For the BID orders, the correct formula is:
Code:
BID_quantity = ( BID_total_commission_included * ( 100 / ( 100 + Bittrex_commission ) ) ) / BID_rate

Check: 0.9975 * ( 100 / 100.25 ) / 1 = 0.99501247


You're welcome. Roll Eyes
I will not disdain the reward for this find ;-)


Best wishes.

Hello,
The final fix: it should be divided by ASK_Rate in both cases - ASK and BID.

The CORRECT (ASK orders) formula looks like this:
Code:
ASK_quantity = ( ASK_total_commission_included * ( 100 / ( 100 - Bittrex_commission ) ) ) / ASK_rate

Check: 0.9975 * ( 100 / 99.75 ) / 1 = 1.00000000

Best wishes.
STT
legendary
Activity: 4102
Merit: 1454
I found a bug on Bittrex,
I was trying to contact with their support but after I wrote a scenario they answered completely without understanding the problem.


Seems like every support is similar because I had similar kinda responce from a mainstream bank one of the worlds largest operating in every country and their reply is just to just copy and paste a few times quickly what might fit my query.    I worked in support myself I know the cookie cutter approach is basically how its taught to them.

What I had to do with my question was reply (politely) acknowledge their answer and its correctness but also raise the fact the impossible has happened and there is an imperfection in their website/software.   It can take upto a month or more before you get past the automatic bot like replies and get someone to read your query and consider you might not be a customer trying to use the CD drive for a coffee cup holder.
   Sadly I recognise this scenario, kudos for the formula laid out for them    copy and paste that into the code maybe  Tongue

Bittrex I've found pretty good overall when I spoken to them relative to most experiences
hero member
Activity: 1067
Merit: 501
Hello,

I found a bug on Bittrex,
I was trying to contact with their support but after I wrote a scenario they answered completely without understanding the problem.

So let me show to all of you, the Bittrex calculator bug:

Quote from: 'Bittrex bug spotted by roslinpl'


The math formula is incorrect.
I know the correct formulas for all of the inputs (check my recent post history).

I can share the solution if someone will ask me nicely.


EDIT:
Basically,

The incorrect/bugged formula looks like this:

Code:
ASK_quantity = ( ASK_rate *  ASK_total_commission_included ) + ( ( ASK_rate * ASK_total_commission_included ) * (  Bittrex_commission / 100 ) )

Check: ( 1 * 0.9975 ) + ( ( 1 * 0.9975 ) * ( 0.25 / 100 ) ) = 0.99999375

The CORRECT (ASK orders) formula looks like this:
Code:
ASK_quantity = ( ASK_total_commission_included * ( 100 / ( 100 - Bittrex_commission ) ) ) * ASK_rate

Check: 0.9975 * ( 100 / 99.75 ) * 1 = 1.00000000

For the BID orders, the correct formula is:
Code:
BID_quantity = ( BID_total_commission_included * ( 100 / ( 100 + Bittrex_commission ) ) ) / BID_rate

Check: 0.9975 * ( 100 / 100.25 ) / 1 = 0.99501247


You're welcome. Roll Eyes
I will not disdain the reward for this find ;-)


Best wishes.

I hope this bug is only in calculator not in the main transaction dashboard..  Shocked  Wink

Bittrex should definitely reward you not only for finding this bug but also for correcting it!

Good job roslinpl!
newbie
Activity: 42
Merit: 0
Bittrex is criminal!!!  Angry

Burn in hell you suckers.

They officially stole my BTG! Ask them yourself.

It is best to avoid this criminal exchange called Bittrex.
legendary
Activity: 2212
Merit: 1199
Hello,

I found a bug on Bittrex,
I was trying to contact with their support but after I wrote a scenario they answered completely without understanding the problem.

So let me show to all of you, the Bittrex calculator bug:

Quote from: 'Bittrex bug spotted by roslinpl'


The math formula is incorrect.
I know the correct formulas for all of the inputs (check my recent post history).

I can share the solution if someone will ask me nicely.


EDIT:
Basically,

The incorrect/bugged formula looks like this:

Code:
ASK_quantity = ( ASK_rate *  ASK_total_commission_included ) + ( ( ASK_rate * ASK_total_commission_included ) * (  Bittrex_commission / 100 ) )

Check: ( 1 * 0.9975 ) + ( ( 1 * 0.9975 ) * ( 0.25 / 100 ) ) = 0.99999375

The CORRECT (ASK orders) formula looks like this:
Code:
ASK_quantity = ( ASK_total_commission_included * ( 100 / ( 100 - Bittrex_commission ) ) ) / ASK_rate

Check: 0.9975 * ( 100 / 99.75 ) * 1 = 1.00000000

For the BID orders, the correct formula is:
Code:
BID_quantity = ( BID_total_commission_included * ( 100 / ( 100 + Bittrex_commission ) ) ) / BID_rate

Check: 0.9975 * ( 100 / 100.25 ) / 1 = 0.99501247


You're welcome. Roll Eyes
I will not disdain the reward for this find ;-)


Best wishes.
sr. member
Activity: 1372
Merit: 259
Two questions regarding Bittrex international.

How do they validate if a user comes outside the US or not?

Will there be a KYC necessary to trade? I stopped trading there when they requested KYC from one day to another and I would be happy if trading would be possible again without any verification.

it is not possible to trade without KYC verification and if it were you can no longer trust this exchange because they have proven to be untrustworthy. they can change their rules without warning at any moment and block your account with the money in it and there will be nothing you could do about it. they did it to thousands of users last year and made millions of it.

Damm... I though they changed politics... I left this exchange in last year after this issue and when they starting require KYC. But as they started listing good tokens again I wanted come back  Undecided
legendary
Activity: 1524
Merit: 1001
NOBT - WNOBT your saving bank◕◡◕
Two questions regarding Bittrex international.

How do they validate if a user comes outside the US or not?

Will there be a KYC necessary to trade? I stopped trading there when they requested KYC from one day to another and I would be happy if trading would be possible again without any verification.

it is not possible to trade without KYC verification and if it were you can no longer trust this exchange because they have proven to be untrustworthy. they can change their rules without warning at any moment and block your account with the money in it and there will be nothing you could do about it. they did it to thousands of users last year and made millions of it.
Agree with your thought, they can change their rules without warning at any moment and block users accounts with the money in it. as for me not longer trust this exchange anymore.
legendary
Activity: 3472
Merit: 10611
Two questions regarding Bittrex international.

How do they validate if a user comes outside the US or not?

Will there be a KYC necessary to trade? I stopped trading there when they requested KYC from one day to another and I would be happy if trading would be possible again without any verification.

it is not possible to trade without KYC verification and if it were you can no longer trust this exchange because they have proven to be untrustworthy. they can change their rules without warning at any moment and block your account with the money in it and there will be nothing you could do about it. they did it to thousands of users last year and made millions of it.
hero member
Activity: 924
Merit: 556
Two questions regarding Bittrex international.

How do they validate if a user comes outside the US or not?

Will there be a KYC necessary to trade? I stopped trading there when they requested KYC from one day to another and I would be happy if trading would be possible again without any verification.
sr. member
Activity: 1372
Merit: 259
Does they need KYC for trading and withdraw now? I was trading there one year ago, but last time dont using Bittrex. But they listed one of my favourite and promising coins: PAL. And I want to come back to Bittrex  Roll Eyes
full member
Activity: 602
Merit: 107
full member
Activity: 602
Merit: 107
Coins pump really hard after they get listed on Bittrex, PumaPay did 500% jump after it got listed on Bittrex :O

legendary
Activity: 1806
Merit: 1520
I recently applied for Fiat-Crypto trading and deposits/withdrawals at Bittrex and the application got approved. It's awesome to have buy/sell option for *real* fiat (as I don't trust Tether and TrueUSD).

I'm going to request a bank-wire withdrawal soon and will let you guys know how my experience goes with that deposit/withdraw option. Wink

My couple of bank wires:

> First bank wire: Requested on Monday, received on Tuesday.
> Second bank wire: Requested on Wednesday, received within a few hours.

Bittrex is definitely doing a very good job. Smiley
hero member
Activity: 1050
Merit: 508
BITTREX IS SCAMMER DO NOT TRADE ON BITTREX, THEY WILL DELISTING ALL COINS AFTER THEY MAKE PROFIT

Sorry, de-listing doesn't make Bittrex scammer. If the certain coins aren't getting enough volume, then they deserve to get de-listed.


We cannot really blame Bittrex on delisting low volume coins. And I think they are always giving ample of time and notice on its clients. One thing I am disappointed on Bittrex were Bitcoin  forks that aren't given like Diamond and many more which are valued with good prices on other exchanges.


copper member
Activity: 154
Merit: 2
BITTREX IS SCAMMER DO NOT TRADE ON BITTREX, THEY WILL DELISTING ALL COINS AFTER THEY MAKE PROFIT
full member
Activity: 518
Merit: 101
On October 3 we’re launching a US dollar (USD) market for Bitcoin Cash (BCH).

Eligible Bittrex accounts created before September 4 are already enabled for USD trading. New user or want to deposit/withdraw USD?

Request here: https://support.bittrex.com/hc/en-us/requests/new?ticket_form_id=360000047992

https://twitter.com/BittrexExchange/status/1045325954418118661
Pages:
Jump to: