Pages:
Author

Topic: BitcoinWisdom.com - Live Bitcoin/LiteCoin Charts - page 90. (Read 502630 times)

legendary
Activity: 938
Merit: 1000
LIR DEV
hmm certificate revocation on chrome, and cant figure out how to fix
I'm sorry, I tested the site and works well for a while, then switch the whole site to https. I should wait for more time before switching. It is caused by CloudFlare's node is cached and return old certificate. It should be fix when the node refreshed, it will not take long time.
Still not working in chrome, but I got it to work in ie by going into internet options, and disabling certificate auth.
hero member
Activity: 602
Merit: 505
hmm certificate revocation on chrome, and cant figure out how to fix
I'm sorry, I tested the site and works well for a while, then switch the whole site to https. I should wait for more time before switching. It is caused by CloudFlare's node is cached and return old certificate. It should be fix when the node refreshed, it will not take long time.
hero member
Activity: 602
Merit: 505
can you return https support?

https://bitcoinwisdom.com/ won't open (but even some days/week ago it worked fine)

my chrome-extension (btc-e terminator) uses https bitcoinwisdom for integration it with btc-e terminal...
and there is no way to inject http content into https document-frame((

link to ext with pretty ((past-)screenshot: fhlkghhkmn

tnx!!
The whole site is now moved to https. the issue should be fixed.
legendary
Activity: 938
Merit: 1000
LIR DEV
hmm certificate revocation on chrome, and cant figure out how to fix
hero member
Activity: 910
Merit: 1003
Any chance you could implement two small buttons, "+" and "-" to zoom in exactly 1 step, and zoom out 1 step, respectively? Or maybe just map the same function to the + and - keyboard keys, without visible buttons?

Along the same lines, for the same reason: make the Left and Right arrow keys and/or buttons move the cross cursor by one candle. 

Even with a mouse it is sometimes difficult to select one specific candle. (Is it my impression, or is the mouse scale set so that when the mouse moves by 1 step, the cursor moves by 1 candle?)
hero member
Activity: 910
Merit: 1003
Thank you, I review the code again, found the number conversion which is out of date processing. now the bug should be fixed.
Great! My apologies again for not being more efficient at reporting the bug.
newbie
Activity: 13
Merit: 0


Hi there,

thanks for this great tool!!  Cheesy

Do you have any plans to implement Auroracoin on cryptsy soon?

best regards
tom

Love your charting service!

Any chance of adding Auroracoin soon? Airdrop to 320,000 people in Iceland is scheduled for March 25th. Exciting times.

+1 AUR to Cryptsy!

The top 3 volumes on Cryptsy clearly above the rest:

DOGE/BTC    440 BTC
LTC/BTC    296 BTC
AUR/BTC    254 BTC

According to Coinmarketcap, Auroracoin is 3rd largest crypto, and 2nd largest altcoin based on market cap ignoring Ripple.
At the moment it is twice as large as DOGE!

Also Crypsy has 86.04% of the AUR trade at the moment of writing, so adding it as a third pair to Cryptsy would be quite well justified considering the Air Drop is only 8 days away.

Sources:
http://coinmarketcap.com/
http://coinmarketcap.com/volume.html#aur
https://www.cryptsy.com/markets/view/160

PS. Thank you so much for allowing graphs to go 1px!!!
I love using your service, been staring into the blackness for so many hours  Cheesy
legendary
Activity: 1064
Merit: 1000
There seems to be a problem with the Bitfinex orderbook display at the moment which is showing totals in K, so currently a bunch of 0K, 0K, 0K, 1K, 2K all the way up and down.
Because Bitfinex's max amount is 11k more than 10k so it is converted. now I've increased the threshold to 20k.

Thanks, that's much better. I think BTC-e NMC/BTC pair needs a tweak too as it has the same problem now.
hero member
Activity: 602
Merit: 505
Hey, btcwisdom... quick question.

Any chance you could implement two small buttons, "+" and "-" to zoom in exactly 1 step, and zoom out 1 step, respectively? Or maybe just map the same function to the + and - keyboard keys, without visible buttons?

The reason: on most of my devices (phone, Macbook) I use a trackpad, and when zooming in and out it can be really tricky to get the zoom level you want like that... I spend usually a minute or so until I get the right level.

It's not such a huge deal.. if it's too much effort to get it to work, forget it. Just would make usability a tiny bit better, in my opinion.

EDIT: I should maybe add: I'm sure I'm not the only one with a trackpad only device (smart phone or small notebook), so I suspect others might have a similar experience.
The feature is requsted by another member too.
I've considered the way to implement for a while, but still have not decided yet.
hero member
Activity: 602
Merit: 505
How are we supposed to place bids when most of the depth is missing like this?
Can u fix it please?

The orderbook is extended, but the precision is decreased.
hero member
Activity: 602
Merit: 505
There seems to be a problem with the Bitfinex orderbook display at the moment which is showing totals in K, so currently a bunch of 0K, 0K, 0K, 1K, 2K all the way up and down.
Because Bitfinex's max amount is 11k more than 10k so it is converted. now I've increased the threshold to 20k.
legendary
Activity: 1064
Merit: 1000
There seems to be a problem with the Bitfinex orderbook display at the moment which is showing totals in K, so currently a bunch of 0K, 0K, 0K, 1K, 2K all the way up and down.
hero member
Activity: 602
Merit: 505
The currency in orderbook should be the same as exchange. And avoid ambiguities, Switch between base and quote currency will not be supported.
Instead of it, I improve the 'estimate trading' tool, click the order will quick fill the amount to estimate trading.
Actually the Volume Currency can be switch to Base(DOGE) or Quote(BTC).
Maybe do the same, optionally, to turn the "Orderbook Currency" to Base(DOGE) or Quote(BTC) ?
No, I've implemented by this way local before. but after using, user would confuse the currency of orderbook. It must be some where shows currency obviously. and I tried highlight such Bitstamp BTC/USD or add extra text '(USD)', neither of them is good enough.
Now I set the volume currency affect the orderbook and trades.
legendary
Activity: 938
Merit: 1000
LIR DEV
How are we supposed to place bids when most of the depth is missing like this?
Can u fix it please?

hero member
Activity: 602
Merit: 505
Can anyone explain how the KDJ indicator is calculated on BitcoinWisdom? I'm trying to figure out the  math of the K, D, and J lines but none of the explainations from google are matching the outcome of the BitcoinWisdom one.

I'd like to be able to duplicate the KDJ indicator from BitcoinWisdom for use in a trade bot if I can figure out how it is calculated.
The formula is

RSV = (CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100;
K = SMA(RSV,3,1);
D = SMA(K,3,1);
J = 3*K-2*D;

LLV means lowest value in period
HHV means highest value in period
SMA is Simple Moving Average

What does the 1 in SMA(RSV,3,1); mean? I took the SMA of RSV over 3 periods and get a similar result to yours but it's still not quite right. For my SMA calc I just did a simple SMA = (day1 + day2 + day3) / 3
Sorry for misleading. I fogot SMA is not Simple Moving Average in this formula.
The formula I used is
Y=SMA(RSV,n,m)=(m*RSV+(n-m)*Y')/n
Y' means previous Y
when n = 3 and m = 1
Y=SMA(RSV,3,1)=(RSV+2*Y')/3
when m = 2, it close to EMA

hi, I want to calculate KDJ for data analyze, I am using the formula you use, but the result are not the same with the one in your website.
Does the default parameter in your site are KDJ(9,3,3) , K = SMA(RSV,3,1)?

another question is when calcuate RSV = (CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100, if the HHV equals LLV, what the value of RSV should be? 0 or 50?

Yes. No care what the value is, CLOSE-LLV(LOW,9) always 0 if HHV equals LLV
newbie
Activity: 1
Merit: 0
can you return https support?

https://bitcoinwisdom.com/ won't open (but even some days/week ago it worked fine)

my chrome-extension (btc-e terminator) uses https bitcoinwisdom for integration it with btc-e terminal...
and there is no way to inject http content into https document-frame((

link to ext with pretty ((past-)screenshot: https://chrome.google.com/webstore/detail/btc-e-terminator/jlfdbhddibhoilgnobkdcefhlkghhkmn

tnx!!
legendary
Activity: 1470
Merit: 1007
Hey, btcwisdom... quick question.

Any chance you could implement two small buttons, "+" and "-" to zoom in exactly 1 step, and zoom out 1 step, respectively? Or maybe just map the same function to the + and - keyboard keys, without visible buttons?

The reason: on most of my devices (phone, Macbook) I use a trackpad, and when zooming in and out it can be really tricky to get the zoom level you want like that... I spend usually a minute or so until I get the right level.

It's not such a huge deal.. if it's too much effort to get it to work, forget it. Just would make usability a tiny bit better, in my opinion.

EDIT: I should maybe add: I'm sure I'm not the only one with a trackpad only device (smart phone or small notebook), so I suspect others might have a similar experience.
newbie
Activity: 4
Merit: 0
Can anyone explain how the KDJ indicator is calculated on BitcoinWisdom? I'm trying to figure out the  math of the K, D, and J lines but none of the explainations from google are matching the outcome of the BitcoinWisdom one.

I'd like to be able to duplicate the KDJ indicator from BitcoinWisdom for use in a trade bot if I can figure out how it is calculated.
The formula is

RSV = (CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100;
K = SMA(RSV,3,1);
D = SMA(K,3,1);
J = 3*K-2*D;

LLV means lowest value in period
HHV means highest value in period
SMA is Simple Moving Average

What does the 1 in SMA(RSV,3,1); mean? I took the SMA of RSV over 3 periods and get a similar result to yours but it's still not quite right. For my SMA calc I just did a simple SMA = (day1 + day2 + day3) / 3
Sorry for misleading. I fogot SMA is not Simple Moving Average in this formula.
The formula I used is
Y=SMA(RSV,n,m)=(m*RSV+(n-m)*Y')/n
Y' means previous Y
when n = 3 and m = 1
Y=SMA(RSV,3,1)=(RSV+2*Y')/3
when m = 2, it close to EMA

hi, I want to calculate KDJ for data analyze, I am using the formula you use, but the result are not the same with the one in your website.
Does the default parameter in your site are KDJ(9,3,3) , K = SMA(RSV,3,1)?

another question is when calcuate RSV = (CLOSE-LLV(LOW,9))/(HHV(HIGH,9)-LLV(LOW,9))*100, if the HHV equals LLV, what the value of RSV should be? 0 or 50?
hero member
Activity: 602
Merit: 505
The currency in orderbook should be the same as exchange. And avoid ambiguities, Switch between base and quote currency will not be supported.
Instead of it, I improve the 'estimate trading' tool, click the order will quick fill the amount to estimate trading.
Actually the Volume Currency can be switch to Base(DOGE) or Quote(BTC).
Maybe do the same, optionally, to turn the "Orderbook Currency" to Base(DOGE) or Quote(BTC) ?
No, I've implemented by this way local before. but after using, user would confuse the currency of orderbook. It must be some where shows currency obviously. and I tried highlight such Bitstamp BTC/USD or add extra text '(USD)', neither of them is good enough.
newbie
Activity: 25
Merit: 0
The currency in orderbook should be the same as exchange. And avoid ambiguities, Switch between base and quote currency will not be supported.
Instead of it, I improve the 'estimate trading' tool, click the order will quick fill the amount to estimate trading.
Actually the Volume Currency can be switch to Base(DOGE) or Quote(BTC).
Maybe do the same, optionally, to turn the "Orderbook Currency" to Base(DOGE) or Quote(BTC) ?
Pages:
Jump to: