| LLV(Name, Begin, End) as Number |
This function has three parameters:
| Name | This parameter can be of two different types. It can be the name of an indicator or an array. |
| Begin | The begin place. It's an integer. |
| End | The end place. It's an integer. |
Example:
|
' This example shows the Name parameter as an indicator name ' This is a report Sub Main() TakeThisStock Header 1, "Lowest" vLow = LLV("Close", Last - 10, Last) PutInGrid 1, vLow End Sub ' This example shows the Name parameter as an array (arrRSI) ' This is a report Sub Main() TakeThisStock Header 1, "Lowest RSI" arrRSI = GetIndic("RSI") vLowestRSI = LLV(arrRSI, Last - 10, Last) PutInGrid 1, vLowestRSI End Sub |