low ( String symbol , Any period , String priceType );    
Default values:
symbol: getSymbol()
            period: "<current period>"
            priceType: "<current type>"
    
    
Description
Returns the Low price for the specific symbol, aggregation period and price type. You can use both Aggregation Period constants and pre-defined string values (e.g. Day, 2 Days, Week, Month, etc.) as valid parameters for the aggregation period. The full list of the pre-defined string values can be found in the Referencing Secondary Aggregation article.
Valid parameters for the price type are: LAST, ASK, BID, and MARK. Alternatively, you can use the PriceType constants.
Note that for non-Forex symbols, the last three are only supported on intraday charts with time interval not greater than 15 days.
Input parameters
| Parameter | Default value | Description | 
|---|---|---|
| symbol | current symbol | Defines symbol for which the Low price is returned. | 
| period | current aggregation | Defines aggregation period for which the Low price is returned. | 
| priceType | current price type | Defines the type of price to be returned: Last, Ask, Bid, or Mark. | 
Example
plot LowDaily = low(period = AggregationPeriod.DAY);
plot LowWeekly = low(period = AggregationPeriod.WEEK);
plot LowMonthly = low(period = AggregationPeriod.MONTH);
This example script draws daily, weekly, and monthly Low price plots for the current symbol.