2017-03-27 15 views
0

Quantopian에서 데이터를 가져오고 싶습니다.데이터 분석에 퀀토 피안 사용하기

NYSE 이외의 주식 시장에 대한 분석을 원한다면 데이터를 얻을 수 있습니까? 그렇지 않은 경우 알고리즘을 실행할 수 있도록 데이터를 수동으로 업로드 할 수 있습니까?

답변

1

1.) Quantopian은 여러 곳에서 데이터를 가져오고 일부는 프리미엄이고 가입이 필요하지만 대부분 online을 제공합니다.

2) 예. 표준 주식 시장 데이터를 얻을 수 있지만 블룸버그, 다른 구독 또는 내가 작성한 것을 가져 와서 가져오고 싶다면 fetcher를 사용할 수 있습니다.

기본 코드는 다음과 같습니다

fetch_csv(url, pre_func=None, post_func=None, date_column='date', 
      date_format='%m/%d/%y', timezone='UTC', symbol=None, **kwargs) 

가 보관 같은에 대한 예입니다

def initialize(context): 
    # fetch data from a CSV file somewhere on the web. 
    # Note that one of the columns must be named 'symbol' for 
    # the data to be matched to the stock symbol 
    fetch_csv('https://dl.dropboxusercontent.com/u/169032081/fetcher_sample_file.csv', 
      date_column = 'Settlement Date', 
      date_format = '%m/%d/%y') 
    context.stock = symbol('NFLX') 

def handle_data(context, data):  
    record(Short_Interest = data.current(context.stock, 'Days To Cover')) 
+0

나는 지프 모듈에서 사용하기 위해 어떻게해야합니까 내 컴퓨터에 로컬로 저장 데이터가있는 경우 . –