PureBytes Links
Trading Reference Links
|
At 08:32 AM 7/9/2005, you wrote:
>The below is a faster adx. Could someone fill in the blanks to make it work
>in 2000i??
>
>absvalue(100*(average(close,5)-average(close,65))/average(close,65))
Not real clear what doesn't work but here is the code for a function and an indicator.
Bob Fulks
----
{Function: ADX_Fast}
ADX_Fast = absvalue(100*(average(close,5)-average(close,65))/average(close,65));
----
{Indicator: ADX_Fast}
Plot1(ADX_Fast, "Adx_Fast");
Plot4(0, "zero");
----
|