[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: EL question



PureBytes Links

Trading Reference Links

At 11:29 AM -0500 1/6/00, VBatla@xxxxxxx wrote:
>I'm trying to add a condition. 
>
> I want to add the ADX indicator to an existing system and want it to be 
>higher than 20 bars ago to trigger a setup.  
>
>Here's what I have:
>
>Condition7 = ADX(1) > ADX(20);
>
>It doesn't seem to be working.  
>
>Any ideas?



You probably want:

Condition7 = ADX(14) > ADX(14)[20];

where 14 is the length of the ADX look back length.

Bob Fulks