Created
May 3, 2018 13:36
-
-
Save canwe/5b86c62697a66bb551d34c3a688e803d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Count days | |
@author: Dazhuang | |
""" | |
import requests | |
import re | |
import json | |
import pandas as pd | |
from datetime import date | |
import time | |
from pylab import * | |
def retrieve_quotes_historical(stock_code): | |
quotes = [] | |
url = 'https://finance.yahoo.com/quote/%s/history?p=%s' % (stock_code, stock_code) | |
r = requests.get(url) | |
m = re.findall('"HistoricalPriceStore":{"prices":(.*?),"isPending"', r.text) | |
if m: | |
quotes = json.loads(m[0]) | |
quotes = quotes[::-1] | |
return [item for item in quotes if not 'type' in item] | |
def create_aveg_open(stock_code): | |
quotes = retrieve_quotes_historical(stock_code) | |
list1 = [] | |
for i in range(len(quotes)): | |
x = date.fromtimestamp(quotes[i]['date']) | |
y = date.strftime(x,'%Y-%m-%d') | |
list1.append(y) | |
quotesdf_ori = pd.DataFrame(quotes, index = list1) | |
listtemp = [] | |
for i in range(len(quotesdf_ori)): | |
temp = time.strptime(quotesdf_ori.index[i],"%Y-%m-%d") | |
listtemp.append(temp.tm_mon) | |
tempdf = quotesdf_ori.copy() | |
tempdf['month'] = listtemp | |
meanopen = tempdf.groupby('month').open.mean() | |
return meanopen | |
open1 = create_aveg_open('INTC') | |
open2 = create_aveg_open('IBM') | |
subplot(211) | |
plt.plot(open1.index,open1.values,color='r',marker='o') | |
subplot(212) | |
plt.plot(open1.index,open2.values,color='green',marker='o') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment