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

Re: trened strength



PureBytes Links

Trading Reference Links

--- In amibroker@xxxx, "David Holzgrefe" <dtholz@xxxx> wrote:
> Hi I am looking for a way to detect the strength of an indicator,
linregslope doesn't seem to do it for me ! ( or i dont know how to use
it correctly ) :) 

David,

This seems to work well

// Explore Rate of Change of ADX

ROCadx = ROC( ADX(10), 3);
Filter = C>0;
AddColumn( ROCadx, "ROCadx", format = 1.2);

Regards,

Jim