| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack (6) | Thread Tools | Display Modes |
|
|||
|
RSI indicator
RSI indicator
We are continuing discussion about the indicators. We have the following thread: Parabolic SAR indicator Momentum indicator Stochastic Oscillator Divergence Indicator Now we are talking about RSI. "Technical Analysis from A to Z": Code:
Overview
The Relative Strength Index ("RSI") is
a popular oscillator.
It was first introduced by
Welles Wilder in an article
in Commodities (now known as Futures)
Magazine in June, 1978.
Step-by-step instructions on calculating
and interpreting
the RSI are also provided in
Mr. Wilder's book,
New Concepts in Technical
Trading Systems.
The name "Relative Strength Index"
is slightly misleading
as the RSI does not compare
the relative strength of two securities,
but rather the internal strength of
a single security.
A more appropriate name might
be "Internal Strength Index."
Relative strength charts that compare
two market indices,
which are often referred to as
Comparative Relative Strength.
Wilder, J. Welles. New Concepts
in Technical Trading Systems. Greensboro, NC: Trend Research, 1978.
Code:
Interpretation When Wilder introduced the RSI, he recommended using a 14-day RSI. Since then, the 9-day and 25-day RSIs have also gained popularity. Because you can vary the number of time periods in the RSI calculation, I suggest that you experiment to find the period that works best for you. (The fewer days used to calculate the RSI, the more volatile the indicator.) The RSI is a price-following oscillator that ranges between 0 and 100. A popular method of analyzing the RSI is to look for a divergence in which the security is making a new high, but the RSI is failing to surpass its previous high. This divergence is an indication of an impending reversal. When the RSI then turns down and falls below its most recent trough, it is said to have completed a "failure swing." The failure swing is considered a confirmation of the impending reversal. In Mr. Wilder's book, he discusses five uses of the RSI in analyzing commodity charts. These methods can be applied to other security types as well. Code:
Tops and Bottoms.
The RSI usually tops above 70 and bottoms below 30.
It usually forms these tops and bottoms before
the underlying price chart.
Chart Formations.
The RSI often forms chart patterns such
as head and shoulders (page 215) or triangles (page 216)
that may or may not be visible on the price chart.
Failure Swings.
also known as support or resistance penetrations or breakouts).
This is where the RSI surpasses a previous high (peak) or
falls below a recent low (trough).
Support and Resistance.
The RSI shows, sometimes more clearly than price themselves,
levels of support and resistance.
Divergences.
As discussed above, divergences occur when the price makes
a new high (or low) that is not confirmed by a new high (or low) i
n the RSI. Prices usually correct and move in the direction
of the RSI.
For additional information on the RSI, refer
to Mr. Wilder's book:
on amazon com
for example.
Calculation
The RSI is a fairly simple formula, but is difficult
to explain without pages of examples. Refer to Wilder's book
for additional calculation information.
|
|
|||
|
Calculation
The RSI is a fairly simple formula, but is difficult to explain without pages of examples. Refer to Wilder's book for additional calculation information. The basic formula is: RS = Average Gain / Average LossRSI = 100 - --------100 Average Gain = [(previous Average Gain) x 13 + current Gain] / 14 First Average Gain = Total of Gains during past 14 periods / 14 Average Loss = [(previous Average Loss) x 13 + current Loss] / 14 First Average Loss = Total of Losses during past 14 periods / 14 Note: "Losses" are reported as positive values. Below you can find an spreadsheet to calculate RSI manually |
|
|||
|
Trading systems:
RSI of Moving Average trading system: original thread is here. MAofRSI trading system: elite section thread. Some example of using RSI on D1 chart: this page. Signal-generator to show MAs crossing when overlayed on RSI: thread with trading sstem with new indicators coded. RSI_mode_system is here. Ideas: RSI ADX Stochastic: trading system development thread. Simple MA Cross w RSI and Stochastic filter: just an idea with rules. RSI EA: the other idea to create EA. NewTrend Oscillator vs RSI-14: good evaluation thread. Laguerre RSI with Filter: some evaluation. Indicators: Dynamic Zone RSI: good public thread with some indicators and trading systems examples. SMA_RSI indicator with many versions: indicators and explanation. RSI in Histogram: good thread with some indicators. MTF RSI Bar Indicators: original thread. RSICross_Signal_v1 and RSI_X2_alarm indicators: elite section post. RSI with alert is here and here. RSI MA Signal and T3_RSI indicators: original thread. RSI indicators: thread with many RSI indicators posted - SelfAdjustRSI_v1; KRSI (good indicator); #RSI-3TF; D_RSI,; DT-RSI-Sig; Dynamic Zone RSI; Fisher RSI Oscillator; F-RSI; Laguerre RSI; RSI trader v0.10; RSI (as a custom indicator); RSI-3TF; RSIFilter_v1; SMARSI_v1, v2 and v3; StepRSI_v2; StepRSI_v5.2; T3_RSI; TrendRSI_v1. Inverse Fisher Transform of RSI: small thread with 2 versions of the indicator. RSIFilter indicators: thread with original article as an idea and indicator based on it with simple and MTF versions. RSI in 3 Time Frames in one window by one indicator: original thread. Bollinger Band of RSI: indicator. Trend RSI Indicator: elite section post with indicator and settings; and public thread with indicator. RSI & Momentum Color+Alarm: small thread with very good indicators. Moving Average Cross with RSI Confirmation: thread with few indicators combined in one indicator with the rules. RSIvar_v1 indicator: thread with indicator using any kind of ma indiocator with the settings: Code: Price = 0; // Applied Price(0-Close;1-Open;2-High;3-Low;4-Median;5-Typical;6-Weighted) Length = 27; // Period of evaluation MA_Mode = 1; //Mode of MA (0-SMA;1-EMA;2-SMMA;3-LWMA) |
|
|||
|
Rapid RSI: small thread article with indicator.
Self-adjusting RSI: small thread with good indicator and explanation about how to use it. Colored and arows RSI with alert is on this thread. On Chart RSI: indicator on the main window. Many MTF RSI indicators: - MTF_RSI_4PerX4TF_Dots_[cw], RSI_DynamicZone_RSI_[Bz](FLBLmtf), RSI_DynZ_TDI_(mtf) and RSI_SelfAdjustRSI_v1.0[FX5](mtf) indicators are here. - RSI_Filter_mtf (together with Stochastic_Filter_mtf and WPR_Filter_mtf) and RSI_Del_WA_mtf indicators are on this page. - RSI_onMA_2X2_mtf.mq4 2RSIs on 2MAs - like 2 little Rsiomas in one: this post. Smoothed Stochastic of an RSI is here. Stochastic RSI Indicator Corrected is on this post. Laguerre RSI with some additional options and alerts: this post. RSI Bands by mladen on this post RSI Channel by mladen on this post EAs: FiboPivotandRSI: elite section thread and public thread. RSI_EA_v1 EA coded by fussionjammerz with the help of Igorad is here (elite section thread). RSI expert: public thread with Ea and settings. EA is based on 4 RSI's and two EMA's. RSI_Expert_v1.3 with some new indicators: original thread. RSI EA based on one RSI indicator only: the thread is here. RSI crossover EA: the thread with many versions with explanation and settings. RSI_Trader EA: original thread. MA_Cross_RSI_Stoch_Filter EA is on this thread. Last edited by Linuxser; 10-08-2008 at 11:11 PM. |
|
|||
|
It was bug or something: when moderating the first post of the thread so the whole thread may be disappeared sometimes (i did not delete the thread and did not moderate the forum in that time). It is possible to restore using forum database backup but the whole forum only and not a particular thread.
Thus, it is the new thread instead of old one. Last edited by newdigital; 07-06-2008 at 01:15 PM. |
|
||||
|
Quote:
.I made this RSI pack zip file with the 45 RSI based indicators I have (with the exception of Elite ones).
__________________
|
|
|||
|
RSI alerts:
Post: http://www.forex-tsd.com/137631-post679.html Post: http://www.forex-tsd.com/167004-post1015.html Post: http://www.forex-tsd.com/157971-post840.html Thread: RSI-Alert-Indicator: Need help from coders! RSI in Histogram Alert indicator: this post. RSI in Histogram Alert next version: this post. RSI in Histogram Alert next version: has selectable signal and main lines to help visualize rsi position. This post. Last edited by newdigital; 07-29-2008 at 06:34 PM. Reason: has selectable signal and main ... |
![]() |
| Bookmarks |
| Tags |
| mtf rsi, MTF Rsi alert, RSI Channel, rsi filter, rsi indicator, rsi alert, RSI indicators |
|
|
LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/setup-questions/14880-rsi-indicator.html
|
||||
| Posted By | For | Type | Date | |
| Ciekawe wska?niki do MT4 | This thread | Refback | 09-01-2008 10:10 AM | |
| Ciekawe wska?niki do MT4 | This thread | Refback | 09-01-2008 07:23 AM | |
| Ciekawe wskaźniki do MT4 | This thread | Refback | 07-30-2008 06:03 AM | |
| Ciekawe wskaźniki do MT4 | This thread | Refback | 07-27-2008 09:59 PM | |
| Ciekawe wskaźniki do MT4 | This thread | Refback | 07-27-2008 09:47 PM | |
| Ciekawe wskaźniki do MT4 | This thread | Refback | 07-27-2008 08:28 PM | |