Skip This Ad >>
 
Register
Forgotten your password?
The Facebook Platform
Forex-TSD - Powered by vBulletin
Loading search...
Advanced search
  • Home
  • Forums
    Free sections Exclusive sections All sections
  • Register
    Create new account
  • More Recent
    Latest Threads Today's Posts
  • Rankings
    Most popular threads this month Most popular threads created this month Most linked threads this month Most active users Most reputed users
  • Calendar
  • Advertising
  • Others
    Blogs Toolbar
  • Help
    Contact Us FAQ
  • Premium Forum
  • Home
  • Forum
  • Discussion Areas
  • Setup Questions
  • RSI indicator

Like Tree48Likes
  • Top
  • All

Thread: RSI indicator



  • LinkBack
    • LinkBack URL LinkBack URL
    • About LinkBacks About LinkBacks
    •  
    • Bookmark & Share
    • Digg this Thread!
    • Add Thread to del.icio.us
    • Bookmark in Technorati
    • Tweet this thread
  • Thread Tools
    • Show Printable Version
    • Email this Page…
    • Subscribe to this Thread…
  • Display
    • Switch to Hybrid Mode
    • Switch to Threaded Mode
Results 1 to 10 of 263
Page 1 of 27 12311 ... Next LastLast
199 199 Attachment(s)

  1. 07-06-2008 06:46 AM #1
    newdigital
    newdigital is online now Administrator
    Join Date
    Sep 2005
    Posts
    29,219
    Achievements:
    Three FriendsRecommendation First Class
    Blog Entries
    1347

    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.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  2. 07-06-2008 06:47 AM #2
    newdigital
    newdigital is online now Administrator
    Join Date
    Sep 2005
    Posts
    29,219
    Achievements:
    Three FriendsRecommendation First Class
    Blog Entries
    1347
    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:

    100
    RSI = 100 - --------
    1 + RS
    RS = Average Gain / Average Loss

    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
    Attached Files
    • File Type: zip RSI.zip (2.7 KB, 1082 views)
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  3. 07-06-2008 06:48 AM #3
    newdigital
    newdigital is online now Administrator
    Join Date
    Sep 2005
    Posts
    29,219
    Achievements:
    Three FriendsRecommendation First Class
    Blog Entries
    1347
    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)
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  4. 07-06-2008 06:49 AM #4
    newdigital
    newdigital is online now Administrator
    Join Date
    Sep 2005
    Posts
    29,219
    Achievements:
    Three FriendsRecommendation First Class
    Blog Entries
    1347
    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.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  5. 07-06-2008 12:31 PM #5
    onetarmizi's Avatar
    onetarmizi
    onetarmizi is offline Senior Member
    Points: 72,929, Level: 39
    Level completed: 67%, Points required for next Level: 1,371
    Overall activity: 0%
    Join Date
    Apr 2007
    Posts
    180
    Points
    72,929
    Level
    39
    Achievements:
    Veteran500 Experience Points
    Hi ND,

    What happen with this thread? Looks like the old thread was disappeared & the link doesn't work.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  6. 07-06-2008 01:06 PM #6
    newdigital
    newdigital is online now Administrator
    Join Date
    Sep 2005
    Posts
    29,219
    Achievements:
    Three FriendsRecommendation First Class
    Blog Entries
    1347
    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.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  7. 07-09-2008 02:31 PM #7
    Linuxser's Avatar
    Linuxser
    Linuxser is offline Forum Staff
    Join Date
    May 2006
    Location
    Helliconia (Summer)
    Posts
    4,732
    Achievements:
    Three FriendsYour first GroupRecommendation First Class
    Blog Entries
    64
    Quote Originally Posted by newdigital View Post
    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.
    Yes. It was my problem when I was moderating the first post. Removing one posts ended in a thread deletion. One of many things that vbulletin needs to fix or warn .

    I made this RSI pack zip file with the 45 RSI based indicators I have (with the exception of Elite ones).
    Attached Files
    • File Type: zip RSI pack.zip (57.6 KB, 1709 views)
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    My Blog on TSD! | subscribe Exclusive Elite | subscribe Advanced Elite section.
    Reply With Quote Reply With Quote

  8. 07-09-2008 03:57 PM #8
    newdigital
    newdigital is online now Administrator
    Join Date
    Sep 2005
    Posts
    29,219
    Achievements:
    Three FriendsRecommendation First Class
    Blog Entries
    1347
    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 ...
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  9. 07-09-2008 07:27 PM #9
    lodol2
    lodol2 is offline Senior Member
    Points: 103,614, Level: 46
    Level completed: 55%, Points required for next Level: 2,186
    Overall activity: 9.0%
    Join Date
    Mar 2007
    Posts
    182
    Points
    103,614
    Level
    46
    Achievements:
    Veteran500 Experience Points

    hi

    hi newdigital

    I dont like that some indicators suddenly dissapear like mladens rsi band or channels...
    i think in the elite section

    regards

    lodol2
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  10. 07-09-2008 07:31 PM #10
    newdigital
    newdigital is online now Administrator
    Join Date
    Sep 2005
    Posts
    29,219
    Achievements:
    Three FriendsRecommendation First Class
    Blog Entries
    1347
    No,
    It was explained.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

Page 1 of 27 12311 ... Next LastLast
199 199 Attachment(s)

Quick Navigation Setup Questions Top
  • Site Areas
  • Settings
  • Private Messages
  • Subscriptions
  • Who's Online
  • Search Forums
  • Forums Home
  • Forums
  • Announcements
    1. Announcements Blog
  • Exclusive Forum
    1. Elite Section
  • Forex Press
    1. Analytics
    2. Articles
    3. Success Stories
  • Discussion Areas
    1. General Discussion
    2. Metatrader 4
      1. Metatrader 3
    3. Metatrader 5
    4. Post and compare Trades
    5. Setup Questions
    6. Suggestions for Trading Systems
    7. Documentation
    8. Strategy Trader
  • Non Related Discussions
  • Downloads
    1. Indicators - Metatrader 4
      1. Indicators - Metatrader 3
      2. Indicators - Metatrader 5
    2. Manual trading systems
    3. Expert Advisors - Metatrader 4
      1. TSD Expert Advisors
      2. Expert Advisors - Metatrader 5
      3. Expert Advisors - Metatrader 3
    4. Tools and utilities
    5. Tools and utilities - Strategy Trader
  • Trading systems
    1. CatFx50
    2. Brain Systems
    3. Ema Cross
    4. Harmonic trading
    5. The "XO"-Method
    6. Phoenix
    7. Dolly
    8. Digital Filters
    9. Martingale/Average Cost and Hedging
  • Automated Trading
    1. News/Signal Trading
    2. FX Signals Marketplaces
  • Commercial systems
    1. Commercial Trading Systems and indicators
    2. Raw Commercial Ideas
    3. Evaluate Commercial Ideas
  • Brokers
    1. Metatrader brokers
  • Programming
    1. MetaTrader Programming
    2. TradeStation Programming
  • Training
    1. Metatrader
      1. Metatrader 4 mql 4 - Development course
        1. Questions
        2. Lessons
    2. TradeStation

» Popular Tags

analysis best broker best ea BrainTrading broker camarilla chart charts code custom EA day trading ea coding ea zig zag elliot EQUITY EUR/USD eurusd expert adviser expert advisor

» Rankings

Hottest Threads

1  Eurusd/gbpusd
2  CatFx50
3  10points 3.mq4
4  FxOpen
5  Multi Timeframe Indicators

view more
 

Most Popular Threads

1  Multi Timeframe In...
2  CatFx50
3  Something interesting pl...
4  The Murrey Math Trading System
5  Show Us Your Best

view more

» FEATURED BROKERS



« Previous Thread | Next Thread »

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

  • alert,
  • bikini,
  • custom indicator,
  • dynamic zone rsi,
  • eating,
  • forex,
  • girls,
  • how to calculate rsi indicator,
  • icecream,
  • indicator,
  • laguerre rsi,
  • Ma rsi,
  • ma rsi indicator,
  • mladen,
  • MTF RSI,
  • MTF Rsi alert,
  • mtf rsi indicator,
  • rsi,
  • rsi alert,
  • rsi band,
  • RSI Channel,
  • RSI Cross,
  • RSI divergence indicator,
  • rsi ea,
  • rsi filter,
  • RSI FILTER INDICATOR,
  • rsi indicator,
  • rsi indicator forex,
  • rsi indicator with alert,
  • RSI indicators,
  • rsi ma,
  • rsi mtf,
  • rsi system,
  • sexy,
  • sma,
  • step rsi,
  • stochastic rsi,
  • T3 RSI,
  • T3 RSI indicator,
  • T3_RSI,
  • trendrsi,
  • mtf rsi,
  • Laguerre RSI,
  • t3 rsi,
  • rsi divergence indicator,
  • rsi indicator alarm,
  • RSI cross,
  • trendRSI,
  • forex rsi calculation,
  • forex rsi indicator

View Tag Cloud

Bookmarks

Bookmarks
  • Submit to Digg Digg
  • Submit to del.icio.us del.icio.us
  • Submit to Technorati Technorati
  • Submit to Furl Furl
  • Submit to StumbleUpon StumbleUpon
  • Submit to Reddit Reddit
  • Submit to Facebook Facebook
  • Submit to Blink List Blink List
  • Submit to Google Google
  • Submit to Yahoo My Web Yahoo My Web
  • Submit to Twitter Twitter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  • BB code is On
  • Smilies are On
  • [IMG] code is On
  • [VIDEO] code is On
  • HTML code is Off
  • Trackbacks are On
  • Pingbacks are On
  • Refbacks are On

Forum Rules

Forums
  • Free sections
  • Exclusive sections
  • All sections
Calendar Social Networking
Premium Forum
  • Elite Membership
  • Advanced Membership
All times are GMT. The time now is 08:07 AM.
Terms and Conditions
PRIVACY POLICY
Powered by vBulletin® Version 4.1.11
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
Search Engine Friendly URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.
Digital Point modules: Sphinx-based search

Subscribe today and get...

Elite Membership
  • Elite Trading Systems
  • Propietary Indicators
  • Private Performance Reports
  • Elite EAs Source Code
  • 24/5 Trading Support!
Advanced Membership
  • Elite benefits, plus:
  • - MT4 & MT5 cutting-edge indicators.
  • - Advanced propieatry indicators and its source codes.
  • - Free conversion of MT4 indicatiors to MT5.
View our best offer!