Welcome to the Traders Laboratory Forums.
Automated Trading Black box systems, strategy automation, algorithmic trading, etc...

Reply
Old 08-16-2008, 03:55 PM   #1

Join Date: Aug 2008
Posts: 2
Ignore this user

Thanks: 1
Thanked 1 Time in 1 Post

Newbie Here...any Knowledge of a JE Leguere Strategy

thxs. neil
neilzep is offline  
Reply With Quote
Old 08-16-2008, 06:39 PM   #2
forsearch

Status: Guest
Posts: n/a
Ignore this user


Re: Newbie Here...any Knowledge of a JE Leguere Strategy

Never heard of it.

But then again your spelling might be off too.

Try google and let us know what you find.

-fs
 
Reply With Quote
The Following User Says Thank You to For This Useful Post:
neilzep (08-16-2008)
Old 08-16-2008, 07:44 PM   #3

Join Date: Aug 2008
Posts: 2
Ignore this user

Thanks: 1
Thanked 1 Time in 1 Post

Re: Newbie Here...any Knowledge of a JE Leguere Strategy

Inputs:{Laguerre RSI Inputs}
LagPrice(wc),
gamm(.62), {damping factor, adjust to best suit your data, 0.50 - 0.85 }
{Schaff Inputs}
Factor(1),
Period(0),
Fast(5),
Slow(34),
Type(7),
Length(3);

Vars: {Laguerre RSI Variables}
L0(0),L1(0),L2(0),L3(0),C U(0),CD(0),LgRSI(0);

{Schaff Code}
If MTF(Factor) Then Begin
If Length < 1 Then
Value1 = Natural(Hilbert(Factor, Value2) * Factor)
Else
Value1 = Length;

Value2 = TypeAverageMTF(Factor,Sch aff(Factor,Period,Fast,Sl ow),Value1,Type,0);

End;

{Laguerre RSI Code}
L0 = (1 - gamm)*LagPrice + gamm*L0[1];
L1 = - gamm *L0 + L0[1] + gamm *L1[1];
L2 = - gamm *L1 + L1[1] + gamm *L2[1];
L3 = - gamm *L2 + L2[1] + gamm *L3[1];

CU = 0;
CD = 0;

If L0 >= L1 then CU = L0 - L1 else CD = L1 - L0;
If L1 >= L2 then CU = CU + L1 - L2 else CD = CD + L2 - L1;
If L2 >= L3 then CU = CU + L2 - L3 else CD = CD + L3 - L2;
If CU + CD <> 0 then LgRSI = 100*CU / (CU + CD);

Value3 = LgRSI;

{Calculating and Plotting New Indicator}

Value4 = (Value2 + Value3) / 2;


Plot1(Value4,"Lag/Sch Avg");
Plot2(80,"80");
Plot3(20,"20");

here is the indicator EL from TS. Wanting to create a futures(ES or ER2) strategy that buys at 20(oversold) and sells at 80(overbought) or if it stays up there to continue to hold it and vice versa on the sell short end.
The Leg is just a oscillator so I presume any oscillator settins would suffice.
neilzep is offline  
Reply With Quote
The Following User Says Thank You to neilzep For This Useful Post:
phim9hi3n (12-09-2008)
Old 08-16-2008, 07:49 PM   #4

Kiwi's Avatar

Join Date: Oct 2006
Location: the zone
Posts: 986
Ignore this user

Thanks: 248
Thanked 844 Times in 391 Posts

Lrsi

Its a variation on rsi and probably some "rules" for trading it. Like all variations the author promotes it as better and perhaps it is. Certainly it gives the author a few moments of fame.
Kiwi is offline  
Reply With Quote
Old 08-17-2008, 12:17 AM   #5

Join Date: Feb 2007
Location: US
Posts: 314
Ignore this user

Thanks: 86
Thanked 206 Times in 89 Posts

Re: Newbie Here...any Knowledge of a JE Leguere Strategy

Probably need to read 'Time Warp Without Space Travel' by JE again.
It is always good to attribute code you copy and post. In this case, JE in the title of this thread is John Ehlers.
thrunner is offline  
Reply With Quote

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Newbie Questions..... MPBigley Beginners Forum 16 08-31-2010 05:30 AM
Newbie: ICustom Help (MT4) not.likely Coding Forum 2 06-27-2008 03:48 AM
My reaction to new knowledge walterw Trading Psychology 11 07-28-2007 12:15 PM
What do you buy on ER2 ... newbie Question kakakidan Beginners Forum 2 07-04-2007 10:15 AM

All times are GMT -4. The time now is 05:36 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.