Financial Time Series Toolbox    
fints

Construct financial time series object

Syntax

Arguments

dates_and_data
Column-oriented matrix containing one column of dates and a single column for each series of data. In this format, dates must be entered in serial date number format. If the input serial date numbers encode time-of-day information, the output object contains a column labeled 'dates' containing the date information and another labeled 'times' containing the time information.

You can use the function today to enter date information or the function now to enter date with time information.
dates
Column vector of dates. Dates may be date strings or serial date numbers and may include time of day information. When entering time-of-day information as serial date numbers, the entry must be a column-oriented matrix when multiple entries are present. If the time-of-day information is in string format, the entry must be a column-oriented cell array of dates and times when multiple entries are present.
Valid date and time string formats are
  • 'ddmmmyy hh:mm' or 'ddmmmyyyy hh:mm'
  • 'mm/dd/yy hh:mm' or 'mm/dd/yyyy hh:mm'
  • 'dd-mmm-yy hh:mm' or 'dd-mmm-yyyy hh:mm'
  • 'mmm.dd,yy hh:mm' or 'mmm.dd,yyyy hh:mm'
Dates and times may initially be separate column-oriented vectors, but they must be concatenated into a single column-oriented matrix before being passed to fints.

You can use the MATLAB functions today and now to assist in entering date and time information.
data
Column-oriented matrix containing a column for each series of data. The number of values in each data series must match the number of dates. If a mismatch occurs, MATLAB will not generate the financial time series object, and you will receive an error message.
datanames
Cell array of data series names. Overrides the default data series names. Default data series names are series1, series2, ... .
freq
Frequency indicator. Allowed values are
UNKNOWN, Unknown, unknown, U, u,0
DAILY, Daily, daily, D, d,1
WEEKLY, Weekly, weekly, W, w,2
MONTHLY, Monthly, monthly, M, m, 3
QUARTERLY, Quarterly, quarterly, Q, q,4
SEMIANNUAL, Semiannual, semiannual, S, s,5
ANNUAL, Annual, annual, A, a, 6
Default = Unknown.
desc
String providing descriptive name for financial time series object. Default = '' .

Description

fints constructs a financial time series object. A financial time series object is a MATLAB object that contains a series of dates and one or more series of data. Before you perform an operation on the data, you must set the frequency indicator (freq). You can optionally provide a description (desc) for the time series.

tsobj = fints(dates_and_data) creates a financial time series object containing the dates and data from the matrix dates_and_data. If the dates contain time-of-day information, the object contains an additional series of times. The date series and each data series must each be a column in the input matrix. The names of the data series default to series1, ..., seriesn. The desc and freq fields are set to their defaults.

tsobj = fints(dates, data) generates a financial time series object containing dates from the dates column vector of dates and data from the matrix data. If the dates contain time-of-day information, the object contains an additional series of times. The data matrix must be column-oriented, that is, each column in the matrix is a data series. The names of the series default to series1, ..., seriesn, where n is the total number of columns in data. The desc and freq fields are set to their defaults.

tsobj = fints(dates, data, datanames) additionally allows you to rename the data series. The names are specified in the datanames cell array. The number of strings in datanames must correspond to the number of columns in data. The desc and freq fields are set to their defaults.

tsobj = fints(dates, data, datanames, freq) additionally sets the frequency when you create the object. The desc field is set to its default ''.

tsobj = fints(dates, data, datanames, freq, desc) provides a description string for the financial time series object.

Examples

Example 1: Create a financial time series containing days and data only:

Example 2. Expand the above example to include time-of-day information:

Example 3. Create a financial time series object when dates and times are located in separate vectors.

Step 1. Create a column vector of times in date number format:

Step 2. Create a column vector of dates:

Step 3. Concatenate dates and times into a single matrix:

Step 4. Create column vector of data:

Step 5. Create financial time series object:

See Also

datenum, datestr in the Financial Toolbox documentation


  filter fintsver