Syntax
Public Function SwingIndex(chart_ID As Long,limitMoveVal As Integer) As String
Description
The Swing Index (Wilder) is a popular indicator that shows comparative price strength within a single security by comparing the current open, high, low and
close prices with previous prices.
Parameters
Key | Description |
chart_ID | Chart identifier, 0 is the current chart ,value of type Long |
limitMoveVal | Swing limit move value of type Integer. |
Return value
Returns the handles of a technical indicator, in case of failure returns an empty string.
Sample
Public Sub main()AlertMessage (SwingIndex(0,5)) 'Draws the indicator on chart and shows a message box with the indicator name.End Sub
See Also