Implements the Relative Strength Indicator (RSI), developed by J. Welles Wilder in 1978;
             which measures the relative internal strength of a market. Please note that this indicator
             is not measured against another market or index. RSI measures the relative changes between
             higher and lower closing prices.
             
            
            
            
Syntax
            Parameters
- seriesName
 
- The name of the series which will be displayed on the chart, i.e. its label.
 - s
 
- An series where the first element is the high in the last trading period, the second term is 
             the high in the previous period and so on.
 - lengthOfPeriod
 
- An integer which represents the length of the period over which the indicator 
             will be iteratively evaluated.
 
            
             
            
            
            
            
            
            
            Remarks
            
            
            
See Also