Data-Analysis icon indicating copy to clipboard operation
Data-Analysis copied to clipboard

Only Load Partial data

Open yekai426 opened this issue 6 years ago • 5 comments

When I initial the Stocker instance, I can only load stock data up to 3/27/2018. I tried other ticker, same problem. Please help.

microsoft = Stocker(ticker='MSFT') MSFT Stocker Initialized. Data covers 1986-03-13 to 2018-03-27.

Thanks.

yekai426 avatar Aug 17 '18 22:08 yekai426

The "WIKI exchange" is dead. This is due to them not being able to find any free alternatives (I think this one was community based)

arshiyasolei avatar Aug 27 '18 05:08 arshiyasolei

It might be possible to address this using iexfinance. It provides real-time data from the Investors Exchange: https://pypi.org/project/iexfinance/0.2/

WillKoehrsen avatar Aug 27 '18 18:08 WillKoehrsen

Have a look at this code. It uses public data from the private robinhood api

#Graphs AMDs stock live
import numpy as np
import matplotlib.pyplot as plt
import Robinhood

Broker = Robinhood()
y = []
i =1 
while (True):
    Myl = broker.last_trade_price("AMD") 
    y.append(Myl[0][0])
    #plt.scatter(i, y)
    x = range(len(y))
    plt.plot(x, y, '-o')
    plt.pause(0.05)
    i = i+1
    
plt.show()

arshiyasolei avatar Aug 27 '18 19:08 arshiyasolei

@WillKoehrsen I think it is a good idea to dump quandl and use the robinhood api.

arshiyasolei avatar Aug 27 '18 19:08 arshiyasolei

I would like to know when you have thought to include the robinhood api or other api to solve Load Partial data. Thankyou!!

jirisarri10 avatar Nov 01 '18 20:11 jirisarri10