PureBytes Links
Trading Reference Links
|
In a message dated 1/6/00 8:30:24 AM Pacific Standard Time, VBatla@xxxxxxx
writes:
> '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?
>
> Thanks in advance,
>
> Vince
Vince:
You are comparing a 1 period ADX to a 20 period (not to 20 bars ago). Try
this for a 14 period ADX:
adx(14) > adx(14)[20]
Bill Wynne
SmartTrades.com
|