ScratchModStocksAPI / Stocks-Mod

Makeing a stock mod for Scratch as per:
https://scratch.mit.edu/discuss/topic/200401/
MIT License
1 stars 1 forks source link

This will be helpful #2

Open BKFighter opened 8 years ago

BKFighter commented 8 years ago

Found here: http://stackoverflow.com/questions/754593/source-of-historical-stock-data

up vote 73 down vote Using Yahoo's CSV approach above you can also get historical data! You can reverse engineer the following example:

http://ichart.finance.yahoo.com/table.csv?s=YHOO&d=0&e=28&f=2010&g=d&a=3&b=12&c=1996&ignore=.csv

Essentially:

sn = TICKER a = fromMonth-1 b = fromDay (two digits) c = fromYear d = toMonth-1 e = toDay (two digits) f = toYear g = d for day, m for month, y for yearly

BKFighter commented 8 years ago

There were more options in the article.