Syntax
Public Function PrimeNumberOscillator(chart_id As Long, applyTo As ENUM_APPLIED_PRICE) As String
Description
The Prime Number Oscillatorindicator finds the nearest prime number from either the top or bottom of the series,and outlines the difference between that prime number and the respective series.
Parameters
Key | Description |
chart_id | Chart identifier, 0 is the current chart ,value of type Long |
applyTo | Applied price , can be one of theENUM_APPLIED_PRICE. |
Return value
Returns the handles of a technical indicator, in case of failure returns an empty string.
Sample
Public Sub main()AlertMessage (PrimeNumberOscillator(0,price_close))'Draws the indicator on chart and shows a message box with the indicator name.End Sub
See Also