Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

itrader

Members
  • Content Count

    3
  • Joined

  • Last visited

Everything posted by itrader

  1. Tams,You 're the EXPERT and VERY HELPFUL.I don't have any word to say,except THANK YOU VERY MUCH.This is all i need. Have a good trade itrader.
  2. Firstly,thank you,Sir for your quick reply. Here is the RSI code inputs: Price( Close ), Length( 14 ), OverSold( 30 ), OverBought( 70 ), OverSColor( Cyan ), OverBColor( Red ) ; variables: MyRSI( 0 ) ; MyRSI = RSI( Price, Length ) ; Plot1( MyRSI, "RSI" ) ; Plot2( OverBought, "OverBot" ) ; Plot3( OverSold, "OverSld" ) ; { Color criteria } if MyRSI > OverBought then SetPlotColor( 1, OverBColor ) else if MyRSI < OverSold then SetPlotColor( 1, OverSColor ) ; { Alert criteria } if MyRSI crosses over OverSold then Alert( "Indicator exiting oversold zone" ) else if MyRSI crosses under OverBought then Alert( "Indicator exiting overbought zone" ) ; { ** Copyright (c) 1991-2003 TradeStation Technologies, Inc. All rights reserved. ** ** TradeStation reserves the right to modify or overwrite this analysis technique with each release. ** } You 're very helpful,Thanks agin. itrader.
  3. Hi All, I am using TradeStation 8.2 ,I need to add simple , Exp and Weihgted MA to original RSI, or other word,I need to have RSI with MA of its.since TS just have RSI one line only. any expert pls kindly suggest me about this,thanks so much in advance. Kindest regards, itrader.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.