Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only Load Partial data #17

Open
yekai426 opened this issue Aug 17, 2018 · 5 comments
Open

Only Load Partial data #17

yekai426 opened this issue Aug 17, 2018 · 5 comments

Comments

@yekai426
Copy link

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.

@arshiyasolei
Copy link

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)

@WillKoehrsen
Copy link
Owner

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/

@arshiyasolei
Copy link

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
Copy link

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

@jirisarri10
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants