Code covered by the BSD License
-
builduniverse(y,s,d1,d2,p)
BUILDUNIVERSE Portfolio matrix with total return price data from Yahoo.
-
close(c)
CLOSE Close connection to Yahoo.
-
display(c)
DISPLAY Yahoo connection object display method.
-
get(c,p)
GET Get YahooRT connection properties.
-
isconnection(c)
ISCONNECTION True if valid YahooRT connection.
-
subsref(a,s)
SUBSREF Subscripted reference for Datafeed Toolbox object.
-
trpdata(y,s,d1,d2,p)
TRPDATA Data needed to generate total return price series.
-
yahooRT(varargin)
YAHOORT Extends the YAHOO datafeed to allow real-time access for Yahoo Premium
-
Contents.m
-
yahooRTdemo.m
-
View all files
from
Real-Time Datafeed from Yahoo!
by Eric Johnson
Extension of Datafeed Toolbox's Yahoo object, allowing real-time data to be fetched
|
| display(c) |
function display(c)
%DISPLAY Yahoo connection object display method.
% Adapted for YAHOORT by Eric C. Johnson, 29-Jun-2008
% Author(s): C.F.Garvin, 02-25-00
% Copyright 1999-2002 The MathWorks, Inc.
% $Revision: 1.3 $ $Date: 2002/04/14 16:23:26 $
tmp = struct(c) ; %Extract the structure for display
yahoo = tmp.yahoo;
if isequal(get(0,'FormatSpacing'),'compact') %Display based on formatting
disp([inputname(1) ' =']);
disp(tmp)
else
disp(' ')
disp([inputname(1) ' =']);
disp(' ')
disp(tmp)
end
display(yahoo);
|
|
Contact us at files@mathworks.com