Main Content

llow

llowhas been partially removed and will no longer accept a弗林特object (tsobj) argument. Use a matrix,timetable, ortableinstead for financial time series.

Usefts2timetableto convert a弗林特object to atimetableobject.

Description

example

values= llow(Data)generates a vector of lowest low values from the series of low prices for the pastnperiods.

example

values= llow(___,Name,Value)adds optional name-value pair arguments.

Examples

collapse all

Load the fileSimulatedStock.mat, which provides a timetable (TMW) for financial data for TMW stock.

loadSimulatedStock.matvalues = llow(TMW); plot(values.Time,values.LowestLow) title('Lowest Low for TMW')

Input Arguments

collapse all

Data for low prices, specified as a matrix, table, or timetable. Timetables and tables withMrows must contain a variable named'Low'(case insensitive).

Data Types:double|table|timetable

Name-Value Pair Arguments

Specify optional comma-separated pairs ofName,Valuearguments.Nameis the argument name andValueis the corresponding value.Namemust appear inside quotes. You can specify several name and value pair arguments in any order asName1,Value1,...,NameN,ValueN.

Example:values = llow(TMW_LOW,'NumPeriods',10)

Moving window for the lowest low calculation, specified as the comma-separated pair consisting of'NumPeriods'and a scalar positive integer.

Data Types:double

Output Arguments

collapse all

Lowest low series, returned with the same number of rows (M) and the same type (matrix, table, or timetable) as the inputData.

References

[1] Achelis, S. B.Technical Analysis from A to Z.Second Edition. McGraw-Hill, 1995.

Introduced before R2006a