Bitcoin Forum
July 03, 2024, 05:33:16 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 »
241  Alternate cryptocurrencies / Altcoin Discussion / Re: historical data of AltCoin prices on: March 28, 2016, 03:12:03 PM
WOW!

Grrrrreat Graham Gjhiggins

Brute force approach, just downloading all 49 pages - but hey, as long as it gets there ... very cool!

Weekly precision - fine, then just needs a preparational and a final step, to quantize the wanted dates to that grid.


Even though I had now already solved it myself (actually paying a 3rd party for the HZ data - which is fine he is providing a great website), and actually also using panda ...

... your new solution is much much appreciated. Might help a lot, in the future. Thanks!

I have just tried out your script ...

Code:
pip install html5lib pandas

then it works like a charm.

Could anyone please provide me with historical data of
* HZ / BTC
* NXT / BTC
... back to early 2015.  Daily precision is fine.

https://coinmarketcap.com/historical/

Weekly precision.

It's pages of HTML tables, so you'll need to roll your own processing which is trivially easy to do with pandas. The defaults returns prices in USD, from which BTC price can be derived by using df.iloc[0, 4] (assuming Bitcoin occupies the first row).

Code:
$ python
Python 3.4.3 (default, Jul 28 2015, 18:20:59)
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from pandas.io.html import read_html
>>> df = read_html('https://coinmarketcap.com/historical/20151101/')[0]
>>> btcusd = float(df.iloc[0, 4].split(' ')[1])
>>> for il in range(0, len(df)):
...     if df.iloc[il, 2] in ['NXT', 'HZ']:
...         print("{name} {symbol} {btcprice:02.8f}".format(
...             name=df.iloc[il, 1],
...             symbol=df.iloc[il, 2],
...             btcprice=(float(df.iloc[il, 4].split(' ')[1]) / btcusd)))
...
Nxt NXT 0.00002371
Horizon HZ 0.00000041

Close enough for government work, I'd say.

Cheers

Graham

Edit: added pandas url


Great solution.

Thank you gjhiggins - happy Easter!

242  Alternate cryptocurrencies / Altcoin Discussion / Re: historical data of (alt)coin prices on: March 28, 2016, 03:02:26 PM
Try the following site:

http://www.cryptocoincharts.info/

I think their charts go back to at least 2013

Yes, I can get current data there, but

I do not see historical data access anywhere .

Thanks anyways.

Some exchanges have graphs - you could try logging into one and seeing if they go back to 2013. Bitstamp definitely existed in 2013 so they should have the info on BTC/USD as should BTC-E.  

Thanks a lot, alyssa85. But what I meant is not manually extracting 2 times 49 datapoints for all the dates I have, but automatic extraction. So if an exchange offers a graph of past data (they all do), that is not what I am looking for.

Thanks anyways.

243  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange on: March 28, 2016, 03:44:57 AM
Happy Birthday, AAssetHZ

2015-03-28   02:29:42 UTC   (~ 1 year ago)

I issued an asset 8101260088962758269 "AAssetHZ" ....
_____________________________________________________

click

There have been 158 trades, 24 transfers, and 37 accounts are shareholding. Thx to you all!

For more infos, visit the new hzcharts, and the block explorer. And the reopened hzxchange.

Stay tuned, for big news!

Retweet, thx.
244  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [ANN][AAssetHZ/AAssetNXT] AltSheets Asset on HZ/NXT - software profits dividends on: March 28, 2016, 03:05:35 AM
Happy Birthday, AAssetHZ

2015-03-28   02:29:42 UTC   (~ 1 year ago)

I issued an asset 8101260088962758269 "AAssetHZ" ....
_____________________________________________________

click

There have been 158 trades, 24 transfers, and 37 accounts are shareholding. Thx to you all!

For more infos, visit the new hzcharts, and the block explorer. And the reopened hzxchange.

Stay tuned, for big news!

Retweet, thx.


---
EDIT: Crossposting to HZ thread is causing many beautiful reactions. I am moved. Thanks!
EDIT2: One essential step successful: price conversion for 2015
245  Alternate cryptocurrencies / Altcoin Discussion / Re: historical data of (alt)coin prices on: March 27, 2016, 05:12:01 PM
Try the following site:

http://www.cryptocoincharts.info/

I think their charts go back to at least 2013

Yes, I can get current data there, but

I do not see historical data access anywhere .

Thanks anyways.
246  Alternate cryptocurrencies / Altcoin Discussion / historical data of AltCoin prices on: March 27, 2016, 04:50:31 PM
Could anyone please provide me with historical data of

* HZ / BTC
* NXT / BTC

Plus (even thought I can probably find that elsewhere)
* USD / BTC
* EUR / USD or EUR / BTC

... back to early 2015.  Daily precision is fine.


I need to calculate 2015 income positions, to pay dividends.

And to look up tons of old prices manually ... sounds really boring.

Thanks a lot!

:-)

EDIT: Of course, to avoid the manual ordeal,  I want a table of data or an API access. Anything that I can feed a dozens of DATEs into, and get PRICEs out of.  Wink
247  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE | HACKATHON on: March 27, 2016, 09:13:31 AM
Had to restart my eth-net-intelligence-api/app.json to be seen again on http://stats.soilcoin.xyz/
I took the opportunity to update node packages, and restarted http://abee.soilcoin.xyz All good.
248  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE | HACKATHON on: March 26, 2016, 07:38:22 AM
All this eth console based stuff is getting to my head... soo many possibilities but so damn complicated...
Same here, but only in the beginning. Believe me, after a while, you get the hang of it.

And console stuff has the huge advantage (over click-orgies) that you can easily automate it. i.e. it's worth learning it.



Having said that ... I made my life much easier with some simple JSRE scripts which abbreviate, and remind of the most important commands.

Now, when I am opening soil, I simply type    loa    then press cursor up, and it fills in    loadScript("altsheets.js")
Then I press   ba   and with cursor up, it fills in   bal()   and with enter ... I get all my balances. Easy peasy. And I even made a simpler send().



JSRE commands "altsheets.js" v02 ...

to make my life easier on the commandline (... works on all systems) ...


Some explanations and how it started ... are in this post here.

And my newest script v02 you find at github. New: It now works with SOIL, EXP and with ETH.

Free to use; consider to donate, to show that you like it. Thx.

249  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange on: March 25, 2016, 09:05:12 AM
A phasing transaction was created to pay for ROKOS integration.
Up to 4M HZ (1 BTC) will be sold when holders with a total of 200M approved.

If you want to approve, search for transaction ID 17360318482821505195 in block 605487,
go to actions and click approve.

Phasing ends at block 615k

Thanks for setting that up! Make sure to vote if you are a holder!  Smiley

Reminder image (via @chaincountdown):



Some explanations about this:
https://bitcointalk.org/index.php?topic=823785.msg14125765#msg14125765 and
https://bitcointalk.org/index.php?topic=1084908.msg13895420#msg13895420

 Smiley
250  Alternate cryptocurrencies / Altcoin Discussion / Re: Horizon [HZ] Price Speculation Thread on: March 19, 2016, 01:44:06 PM
...have been pumped recently: some quite furiously.

Yes, I noticed that too.

Funny pattern when you see them all on top of each other:




Feel free to retweet.
251  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE on: March 14, 2016, 05:29:39 PM

... altsheets gave us a nice anchor solution for the op. ...


Yippieh, I like that. A TOC at the top, for all the chapters. One happy forum fraggle I am *g*

Actually ... bitcointalk tech talk: Please instead of the  .0  link ... rather use the  .msg12385424  link
using the OP#1 post number: https://bitcointalk.org/index.php?topic=1176709.msg12385424#post_funds


Because that one ... will also work for those of us .... who have found out ... that we can sort the forum posts ...
... upside down
: Show most recent posts at the top. After one -terribly confusing- day on bitcointalk and nxtforum ...
My brain has adapted now - and my life here is much better *g*   - try it.



So here is ... the new shortcut link to 'address':


We are refilling Abvhiael's SOIL dev reserve address.


 Smiley
252  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE on: March 14, 2016, 01:53:04 PM
quickstart: scroll down

Support Abvhiael
We refill his developer's funds

Read his posts "in the interests of full transparency" and "ive already sold them on bittrex, a bittersweet action to be honest." for the backgrounds of what I am suggesting:




Sorry to hear about the tragedy.
Good luck to you and your family.

my reserves of SOIL are less than 250 SOIL right now

I am quadrupling that. Sending you 750 SOIL, please create a new address.

Status: 1000 SOIL. Anyone else? Let's see how often we can multiply ...  Wink

I donate 1000 SOIL on the new address
would like to send some too, whats the adress?
I would like to know the address too, will send 1000 soil... Smiley
Txid: 0x291a9a9a4d1bb52956dcf7644d18980256827874f1583c34db33cbfb25f407fc 1000.01 SOIL
My sig for Abvhiael

IF profits THEN sharing THEN inspiring. Which "socially smart contracts" do we invent?
Read how we're helping someone real now: Support Abvhiael - our good soul of SOIL. Thanks.

Sent 2500.  My best to your daughter and family.  My wife and I went through the same over the summer and tears your heart out like nothing else.  Hang in there bud.
TxId: 0x0a881dfcd4a010dc389f707294c7a0dbaa2efc63810da687c319bb34230e1a1d
I just sent out 2000 Soil. You did great. Keep going SOIL!!!
TxId: 0x0234755bdb8a677936467352a9b321563b6423d62cced60aa1d70b4686262d11
just send you yesterday 2500 soil too.
great to have you and peter as hard working devs for this project and all best to you and your family.
I've supported Abvhiael with 10K SOIL of the community reserve.
0xa117f15cd76e49530428888755bc497c7277247e8e7d397592ef9a60c6e5c096
What's the address to chip into abvhiael's dev fund?
I don't have much, but would like to contribute.
Edit:
Found it.
@abvhiael
Best wishes.
 Wink ...



Abvhiael:

... and in closing, i just wanted to express my appreciation to you, the community at large, for your support today. Theres so often this atmosphere of distrust and contentiousness in the cryptocurrency world, but here in the SOILcoin community, theres such a strong spirit of cooperation and congeniality. As my teenager would say: "YOU RAWK"

... As always, if you have any questions, fire them off here and ill do my best to answer them. If you have any ideas for projects youd like to see up on the blockchain, likewise, let us know. This is one of the most incredible communities in cryptocurrency. Ive watched a LOT of different altcoins and how they interact with eachother, the negativity and belligerence, and instead here with SOILcoin we have a small but dedicated COMMUNITY. Im proud to be a part of this project, to have made such personal connections with so many of you. ...




YIEHAH.    We have been ~quadrupling twice three times.
Current balance > 4 * 4 * 4 * 250 SOIL. Wow, people you are amazing!



For an easy solution: Let us use Abvhiael's developers reserve address:

... Provable transparency ... Developers reserve ...
Wallet address (abvhiael):  0xe4673 ...
For safety & security, copy his address from the bottom third of the OP#1 post.
The old (block 370,676) balance was 4.594496427272894 SOIL (screenshot)



I have just sent already. You can buy SOIL on bittrex, and send it to Abvhiael. Support our dev and his family.


Solidarity is a building block of ecology.

 Wink





EDIT1: altsheets, m4nki, Shkembe, crypto4jan, MB2016, nhutphan, croxx, soil, sussex, you
EDIT2: included (extracts from) all your support msgs above. Hope I haven't missed one, then tell me.
253  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SOIL | ETHEREUM BASED | ENVIRONMENTAL | AGRICULTURE | SCIENCE on: March 14, 2016, 04:35:50 AM

Sorry to hear about the tragedy.
Good luck to you and your family.

my reserves of SOIL are less than 250 SOIL right now

I am quadrupling that. Sending you 750 SOIL, please create a new address.

Status: 1000 SOIL. Anyone else? Let's see how often we can multiply ...  Wink
254  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange on: March 13, 2016, 04:13:20 PM
Any news about this?

I have created an open door ... with a chance for HZ to get included into the project

~ "Crypto OS" for RaspberryPi tiny computers

... have a look:

[...] I did send an invitation to HZ team to get integrated into the system [...]

It is too cool to get ignored. I believe there is no NXT flavour coin in ROKOS yet.


P.S.: Shameless elf-promotion - I've made my AltFolio page more exciting. :-)
255  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: AltSheets software: AltFolio = AltCoin PortFolio - surprising new homepage 2016 on: March 13, 2016, 04:08:43 PM

AltFolio.ddns.net

surprising new homepage



Please retweet - thx!
tweet with image             or       only text

Please email this your friends too. When buyers had mentioned you as 'referral code', you'll earn money.

 Smiley
256  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [HZ] [ANN] The "Open Auditing" 2016 US Election Prediction Market Project on: March 07, 2016, 08:27:34 PM
Just noticed a small copy paste error ...

The winner will be a Democrat PrzDemoYES  3564868636547103274
The winner will NOT be a Democrat PrzDemoNO 13462758571964497836
The winner will be a Republican PrzRepuYES  3564868636547103274
The winner will NOT be a Republican PrzRepuNO 13462758571964497836

... but actually, when I bought the assets last week,
my internal error correction unit ... didn't notice.

Wink
257  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange on: March 07, 2016, 08:14:43 PM
I have created an open door ... with a chance for HZ to get included into the project
Hey, thanks a lot. Just dropped your message link on Slack.
Thx a lot to you too.


And by the way: Kudos for that immense heap of work with
your prediction market. Fascinating. Hasn't gone unnoticed.

But I didn't know how to react, as I really don't believe in the
multibilliondollarscam of selling democracy to the highest bidders.

So in your game, I decided to symbolically buy an outcome 50 : 50 ...
For me best is to actively try out things that I want to understand.


Now I am owning 0.5 shares of both assets ( bluewins : redwins )

;-)
258  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: AltSheets software: AltFolio - price-updated ALTcoin PortFOLIO Overview, new v51 on: March 07, 2016, 06:21:14 PM
Nice one. Keep it up.
Yes, I know - I am on to something there.

Data driven trading is helping my own trading much,
to avoid bad trades,
to react faster
to not to overlook and miss opportunities,
to keep an overview of my portfolio,
etc.

- and AltFolio is the publicly available part. To share parts of
my creations with other users - is making that product better.

Keep updating it and you won't go wrong.
Help me to sell it more often ;-)  then I can afford the time to upgrade it more.
Next thing I am trying out right now is a daily history function, so that
I can later see how it actually happened when I got to my first million  ;-D


Looks like the start of something very good Smiley

Very nice -
thank you

for the
flowers.
      :-)

Please you spend some time with it. Feedback is much appreciated.
259  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][HZ] Horizon Long + Fair Distribution|Decentralized Asset Exchange on: March 07, 2016, 03:43:32 PM
I have created an open door ... with a chance for HZ to get included into the project

~ "Crypto OS" for RaspberryPi tiny computers

... have a look:

[...]

Quote
Is one of the packages actually bringing in money?
E.g. until the distribution ended, it would have perhaps paid off, to run HZ Horizon on it.

Since the ROKOS v1 creation since more than half a year ago, POS from OK Cryptocurrency on the device
has been bringing money to the users that does stake with the device.

The coming ROKOS flavors version includes more than 7 new currencies with unique features, some will incentive their use/adoption with incentives,
other have the incentive integrated in the technology (POS coins) as you can stake and directly earn from them.

I did send an invitation to HZ team to get integrated into the system, but seems they did not get the message or are not interested
in providing the option for the ROKOS pi users, I am glad to say that the included coming currencies teams work hard to provide all of
their users with most options for use, and they can share the vision of Cryptocurrencies and IoT Collaboration for the user empowerment.

Any real and dedicated cryptocurrency team can contact me to claim an integration spot for future ROKOS releases as well.

[...]

I think that is well worth it. Please get back to them.

(-:    I herewith submit a "budget proposal" ... to have some time spent on HZ-ROKOS integration    :-)

Why is that interesting? IMHO: Running your own node (and even 24/7 because it lives on an
electricity optimized superminicomputer), completely separated from a www-browsing machine
(which is always prone to attacks) ... can help a lot to provide better security for your precious.

 Cheesy

260  Alternate cryptocurrencies / Altcoin Discussion / Re: ■ Things just got a bit spicier!!! Shapeshift + NXT Integration Plugin.... ■ on: March 07, 2016, 02:48:31 PM
Yes, but what is the difference between shift and send amount?

Two different ways at shapeshift:


Great memories of that weekend, when lyaffe started this plugin, during the nxthacks2015.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!