Syntax
Public Function UltimateOscillator(Cycle1 As Integer, Cycle2 As Integer, Cycle3 As Integer) As String
Description
The Ultimate Oscillator is used to measure momentum across three varying timeframes.
Parameters
Key | Description |
Cycle1 | The first time frame. Value of type is Integer |
Cycle2 | The second time frame. Value of type is Integer |
Cycle3 | The third time frame. Value of type is Integer |
Return value
Returns the handles of a technical indicator. In case of failure, it returns an empty string.
Sample
Public Sub main() AlertMessage (UltimateOscillator (7, 14, 28)) 'Draws the indicator on chart and shows a message box with the indicator name. End Sub
See Also