Syntax
Public Function ComparativeRSI(chart_ID As Long, applyTo1 As ENUM_APPLIED_PRICE, applyTo2 As ENUM_APPLIED_PRICE) As String
Description
The Comparative Relative Strength index divides one price field by another price field.
The base security is outperforming the other security when the Comparative RSI is trending upwards.
Parameters
Key | Description |
chart_id | Chart identifier, 0 is the current chart ,value of type Long |
applyTo1 | First applied price , can be one of the ENUM_APPLIED_PRICE. |
applyTo2 | Second applied price , can be one of the ENUM_APPLIED_PRICE. |
Return value
Returns the handles of a technical indicator, in case of failure returns an empty string.
Sample
Public Sub main()AlertMessage (ComparativeRSI (0,Price_close,price_open))'Draws the indicator on chart and shows a message box with the indicator name.End Sub
See Also