Author

Topic: [BTC-TC] Virtual Community Exchange [CLOSED] - page 129. (Read 316669 times)

legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Hi, got an e-mail that I received dividends at BTC-TC, but no information how I can actually log in into my account. Account name is COGNITIVE-something. I was among the ones who were included in the last (full) list of shareholders Nefario sent, not in the earlier. How am I supposed to log in into my account?

Check your spam folder for an email with the account information

checked already, I didn't receive any e-mail with password to my account. Just an e-mail with dividend notification.

If you can PM me the asset in question and your email address I can re-send it.

Cheers.
sr. member
Activity: 350
Merit: 257
Trust No One
Hi, got an e-mail that I received dividends at BTC-TC, but no information how I can actually log in into my account. Account name is COGNITIVE-something. I was among the ones who were included in the last (full) list of shareholders Nefario sent, not in the earlier. How am I supposed to log in into my account?

Check your spam folder for an email with the account information

checked already, I didn't receive any e-mail with password to my account. Just an e-mail with dividend notification.
legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Bold BTC symbol has a problem. There is always a box drawn to the right of it.




Speaking of bugs, perhaps it would be a good idea to have a way to report bugs from the site.

That is pretty strange.

What browser/version OS/version are you running?  (looks good to me in FF on win7)

I am running Chrome 23.0.1271.97 m on windows 7.

Just tested using 23.0.1271.97 in win7, I don't see it in the two places I know about the bold symbol. (orders summary, portfolio.  orders summary, asset trade page)

Can you think of anything that might be different?  (Do you use any custom fonts, or zoom settings?)  Or maybe I'm looking in the wrong place? 

legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer

There's an option there to change your withdrawal address (you enter new address then click on "Update address".  IF you chose to permanently lock it then obviously you can't change it - as that would entirely defeat the objective of having an option to permanently lock it.


I cant see that option so it seems I have chosen to lock it on register...

My only option is to create a new account and transfer to it my shares Huh


Send me a PM.  We'll figure something out.

sr. member
Activity: 350
Merit: 257
Trust No One
Hi, got an e-mail that I received dividends at BTC-TC, but no information how I can actually log in into my account. Account name is COGNITIVE-something. I was among the ones who were included in the last (full) list of shareholders Nefario sent, not in the earlier. How am I supposed to log in into my account?
member
Activity: 86
Merit: 10

There's an option there to change your withdrawal address (you enter new address then click on "Update address".  IF you chose to permanently lock it then obviously you can't change it - as that would entirely defeat the objective of having an option to permanently lock it.


I cant see that option so it seems I have chosen to lock it on register...

My only option is to create a new account and transfer to it my shares Huh
full member
Activity: 249
Merit: 114
Who is John Galt?
Bold BTC symbol has a problem. There is always a box drawn to the right of it.




Speaking of bugs, perhaps it would be a good idea to have a way to report bugs from the site.

That is pretty strange.

What browser/version OS/version are you running?  (looks good to me in FF on win7)

I am running Chrome 23.0.1271.97 m on windows 7.
legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Bold BTC symbol has a problem. There is always a box drawn to the right of it.




Speaking of bugs, perhaps it would be a good idea to have a way to report bugs from the site.

That is pretty strange.

What browser/version OS/version are you running?  (looks good to me in FF on win7)

Sensitive bugs can be PM'd to me.  Not so sensitive bugs I don't mind if you post them here, or to the LTC-GLOBAL thread here: https://bitcointalksearch.org/topic/ltc-global-the-litecoin-global-virtual-stock-exchange-public-beta-101694  or here: http://forum.litecoin.net/index.php/topic,551.0.html

Cheers.

full member
Activity: 249
Merit: 114
Who is John Galt?
Bold BTC symbol has a problem. There is always a box drawn to the right of it.




Speaking of bugs, perhaps it would be a good idea to have a way to report bugs from the site.
hero member
Activity: 532
Merit: 500
Question - how do we change the deposit/withdraw addresses ? 2. Was this disabled temporarily ?


Deposit address can't be changed at present.

To change withdrawal address:

Click "Wallet" near top of screen.

There's an option there to change your withdrawal address (you enter new address then click on "Update address".  IF you chose to permanently lock it then obviously you can't change it - as that would entirely defeat the objective of having an option to permanently lock it.
member
Activity: 86
Merit: 10
Question - how do we change the deposit/withdraw addresses ? 2. Was this disabled temporarily ?
legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Is there a way to update the API so that it is possible to only return a range of trade history instead of it returning all the trade history?  The same with dividend history.

It would be simple to do, but probably not wise.  The API has to come out of cache to work at scale, and custom queries aren't going to be very cache-able.  Sad

What kind of ranges do you have in mind?

Cheers.


I am suggesting something similar to the API of bitcoincharts.com and especially what cryptostocks has.

For example, if someone writes a script that checks to see if there has been a trade for a listing on BTC-TC, then they might have it check every 15 minutes.  The information they get will be every single trade and so every 15 minutes they are getting mostly the same data each time yet they might only be checking for a few new trades.  Instead they could already have most of the past data history stored on their own database (or not need that information at all) and only need the last trades for the last 15 minutes.

GLBSE had the same kind of thing for their dividend returns.  It returned every dividend returned for that security listing.  I had a script that went through my trade data to see if it was a actively traded stock, then for those that are it would go through each listing and collect the dividend data.  Since I only needed the most recent data, it was pretty inefficient as my script took a while to run and hit the GLBSE server pretty often.  I had it programmed to wait every 10 seconds before another query was sent, but I had to go through all the listings even if there was only just one dividend by one security listing that day.

A good start would be if the API could return:
assets_listed - Any asset currently traded on BTC-CO
future_ipo - Assets getting ready to IPO and the date of their IPO
dividend_last_x_time - The securities that paid dividends for a certain time period (last 24 hours, ect), dividend paid, and time of dividend paid.

Thank you for the great suggestions.

I'll have to meet you part way.  I agree that it sucks for the remote side to have to track which trades are new with each query, etc, but I have two options:

(a) I craft a custom response for each api request, costing local processing time but saving processing time for the remote side.
(b) I craft the same response for each api request, saving local processing time, but costing remote processing time.

If I think the api is going to ever get any serious traffic, I pretty much have to go with (b).

For the IPO's... I have no idea when anything will go live, that's up to the mods and the asset issuers.

I have added the following api endpoints:

https://btct.co/api/ticker (list of all assets)
https://btct.co/api/tradeHistory (all trades, last 48 hrs)
https://btct.co/api/dividendHistory (all dividends, last 48 hrs)

The complete summary is near the bottom, here: https://btct.co/faq

Hope that helps!
hero member
Activity: 532
Merit: 500
Is there a way to update the API so that it is possible to only return a range of trade history instead of it returning all the trade history?  The same with dividend history.

It would be simple to do, but probably not wise.  The API has to come out of cache to work at scale, and custom queries aren't going to be very cache-able.  Sad

What kind of ranges do you have in mind?

Cheers.


I am suggesting something similar to the API of bitcoincharts.com and especially what cryptostocks has.

For example, if someone writes a script that checks to see if there has been a trade for a listing on BTC-TC, then they might have it check every 15 minutes.  The information they get will be every single trade and so every 15 minutes they are getting mostly the same data each time yet they might only be checking for a few new trades.  Instead they could already have most of the past data history stored on their own database (or not need that information at all) and only need the last trades for the last 15 minutes.

GLBSE had the same kind of thing for their dividend returns.  It returned every dividend returned for that security listing.  I had a script that went through my trade data to see if it was a actively traded stock, then for those that are it would go through each listing and collect the dividend data.  Since I only needed the most recent data, it was pretty inefficient as my script took a while to run and hit the GLBSE server pretty often.  I had it programmed to wait every 10 seconds before another query was sent, but I had to go through all the listings even if there was only just one dividend by one security listing that day.

A good start would be if the API could return:
assets_listed - Any asset currently traded on BTC-CO
future_ipo - Assets getting ready to IPO and the date of their IPO
dividend_last_x_time - The securities that paid dividends for a certain time period (last 24 hours, ect), dividend paid, and time of dividend paid.

legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Is there a way to update the API so that it is possible to only return a range of trade history instead of it returning all the trade history?  The same with dividend history.

It would be simple to do, but probably not wise.  The API has to come out of cache to work at scale, and custom queries aren't going to be very cache-able.  Sad

What kind of ranges do you have in mind?

Cheers.
hero member
Activity: 532
Merit: 500
Is there a way to update the API so that it is possible to only return a range of trade history instead of it returning all the trade history?  The same with dividend history.
member
Activity: 69
Merit: 10
Quick PSA:

BMF, CPA, NYAN, NYAN.A, & NYAN.B have all been imported.  If you were expecting an email and did not receive it, please check your spam folder before making a customer service request.

By the request of the operator, teek and patrick have been excluded.  Our understanding is that they will be worked out manually.

Also, as previously discussed in a couple of threads, these assets are not trade-able unless they pass the moderation requirements.  Thus they exist solely such that the operator can execute buyouts and/or direct asset trades for the purposes of shutdown.

Please visit the individual asset pages and/or contact Usagi directly for details.



legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Went to send a dividend, put in the amount, clicked "now" and then scheduled it.

It went into the schedule and was queud ... for a minuite in the past.

I had to cancel that and then schedule another one for two min into the future to get it paid.

tldr; "now" on the dividend screen is broke.

idea: If I hit now, have it send instead of paste the time for a scheduling.

Anything in the past gets run in the next batch.  So "now" always works as immediately as possible.  (I think the cron job is on a 5 minute cycle.)

Cheers.

legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Quick heads up.  Things continue to progress slowly with Usagi's assets.  In addition to the usual holiday commitments there has been a death in the family.  I'll be traveling the next couple of days.

I'll work on it as I can, but wanted to make sure that everyone knows not to expect much progress for a few days.

Cheers.

Sad news indeed, you have my condolences. I'm sure everyone will understand your absence to be with your family during this difficult time.

Thank you.  It's never very fun to lose a relative.

legendary
Activity: 1106
Merit: 1006
Lead Blockchain Developer
Bug report. Just tried to register and even though it says up to 20 characters for password, it said my 20 character password was too long. 19 worked though.

It should allow up to 200 chars now.

Cheers.

Thank you for removing the arbitrary limit on passwords, at least it wasn't like my old bank with a 10 char limit.

As far as voting shares and some people's displeasure with who can vote and the relatively low bar to entry (read: cash). Would it be feasible to go to a system where downvotes detract in some way from upvotes?

Absolute plus/minus - Each downvote counteracts x upvotes
Percentage plus/minus - Must have at least y% upvotes of voting members, abstain or non-vote doesn't affect anything.
Something else - cool, awesome, silver bullet system that works perfectly.

The main problem that I see is that it's not that hard to amass 50 shares across 5 accounts and break the system :-/ Accounts are free and shares aren't that expensive.

The overall score works like this.  Upvote = +1, downvote = -2.

It is true that a person could abuse the system, but it is not particularly cheap, is fairly easily detected in most cases, and anyone who does it risks confiscation of their assets on the exchange.

Cheers.
newbie
Activity: 31
Merit: 0
PIN for imported accounts should be in the email you received which had the account name and password for the imported account.

Mail was in the spam folder. Thanks for the tip Smiley
Jump to: