Using EasyLanguage

  • Register
  • Login
  • Home
  • Store
  • Products
    • 3D Optimization
    • Adaptive Indicator Library 2016
    • Elliott Wave Counter
    • Fibonacci Plot Indicator
    • Intermarket Divergence Pro
    • Optimal F Software
    • SuperTurtle Systems Pack
    • Using EasyLanguage 9.x Book and Code
  • Free TradeStation Code
    • Intermarket Divergence Basic
    • Moving Average Crossover
    • EquityCurve
    • PatternSmasher
    • MAR Spotlight Code
    • Pivot Point Zone
    • SKSort 2D Array Code
    • Mode Decomposition Indicator
  • Concepts
    • Intermarket Analysis in TradeStation
    • TradeStation Indicators
    • TradeStation Strategies
  • Traders Resources
    • Multicharts Free Trial
    • Blog
    • Errata
    • Tutorials
  • EasyLanguage Experts
  • About Murray Ruggiero
  • Contact Us

2% Reversal System (Sidebar 4:5)

October 15, 2014 by

The book should contain a 2% reversal system located in sidebar 4:5. However, this system does not actually appear in the book. The entire code to the system is published below. Please accept my apologies for this oversight!

{ 2% Reversal System }
Vars: UpTrend(0), DnTrend(0), LoPrice(0),
HiPrice(0), Lo2(0), Hi2(0), LgEntry(0),
ShEntry(0), LPO(0), SPO(0);

If Close > Close[5] Then Begin
UpTrend = 1;
DnTrend = 0;
HiPrice = Highest(High,5);
Hi2 = HiPrice * .02;
ShEntry = HiPrice – Hi2;
End;

If Close < Close[5] Then Begin
UpTrend = 0;
DnTrend = 1;
LoPrice = Lowest(Low,5);
Lo2 = LoPrice * .02;
LgEntry = LoPrice + Lo2;
End;

If DnTrend = 1 Then Buy(“2% LE”) next bar at LgEntry Stop;
If UpTrend = 1 Then SellShort(“2% SE”) next bar at ShEntry Stop;

Free TradeStation Code

Get free, simplified versions of the the tools that the TradeStation experts use in their daily research and system building. These tools help you learn EasyLanguage as they are entirely open source and let you build complex systems without needing to know how to code.

All you need to provide is a name and e-mail address. No credit card or address required!

First Name
Last Name
E-mail Address
I'm Interested In:
Intermarket Divergence
Improved Moving Average Crossover
EquityCurve
PatternSmasher
MAR Spotlight Code
Pivot Point Zone Code
SKSort Code
Mode Decomposition Indicator
Channel Breakout
A Study In Price Action
 
By clicking 'Get My Free Code' you agree to receive occasional email offers
 
 

Featured Product

Build adaptive indicators in your TradeStation strategies. The adaptive indicator library automatically tunes its indicators to half of the current dominant cycle based on use of the Hilbert transform... Learn More

About Murray Ruggiero Jr.

Murray Photo
Murray Ruggiero is the chief systems designer, and market analyst at TTM. He is one of the world's foremost experts on the use of inter-market and trend analysis in locating and confirming developing price moves in the markets. Murray is often referred to in the industry as the Einstein of Wall Street. Read more...

Site Menu

  • Home
  • Store
  • Products
    • 3D Optimization
    • Adaptive Indicator Library 2016
    • Elliott Wave Counter
    • Fibonacci Plot Indicator
    • Intermarket Divergence Pro
    • Optimal F Software
    • SuperTurtle Systems Pack
    • Using EasyLanguage 9.x Book and Code
  • Free TradeStation Code
    • Intermarket Divergence Basic
    • Moving Average Crossover
    • EquityCurve
    • PatternSmasher
    • MAR Spotlight Code
    • Pivot Point Zone
    • SKSort 2D Array Code
    • Mode Decomposition Indicator
  • Concepts
    • Intermarket Analysis in TradeStation
    • TradeStation Indicators
    • TradeStation Strategies
  • Traders Resources
    • Multicharts Free Trial
    • Blog
    • Errata
    • Tutorials
  • EasyLanguage Experts
  • About Murray Ruggiero
  • Contact Us

Copyright © 2014 Traders Management. All rights reserved.

No portion of this site may be copied without the express permission of the author.