필터 지우기
필터 지우기

Quandl Matlab, can someone give me an example of a Quandl API get call for a stock with fundamental data

조회 수: 1 (최근 30일)
ie
get(ticker, startDate, endDate, price to earning, cash flow)
Can't find a suitable example, and this would save me a lot of time
Many Thanks

채택된 답변

Harry Smith
Harry Smith 2017년 12월 13일
I'll answer my own question as no help forthcoming If anyone knows of multiple indicator call, this would be useful
startDate = {'2013-12-20'}; % initial date
endDate = {'2017-10-21'}; % final date
source = 'SF1/'; % SHARADAR
ticker = 'WMT_'; % Walmart ticker
Indicator = 'DPS_' ; % Indicator = Dividends per Basic Common Share
Freq = 'MRQ'; % Quaterly
code = [source ticker Indicator Freq];
data = Quandl.get(code, 'trim_start', startDate, 'trim_end', endDate);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Application Deployment에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by