This is read-only version of AFL library entry. Ability to add user formulas
and comment is only available from members-only area.
Details:
Formula name:
Market Direction
Author/Uploader:
Dimitris Tsokakis -
Date/Time added:
2002-03-24 14:03:12
Origin:
Keywords:
Level:
advanced
Flags:
indicator
DISCLAIMER: Most formulas present in AFL on-line library are submitted
by the users and are provided here on an "as is" and "as available" basis.
AmiBroker.com
makes no representations or warranties of any kind to the contents or the operation
of material presented here. We do not maintain nor provide technical support
for 3rd party formulas. Description:
Market direction is described through 3 composite tickers, based on Relative slope values. You may read on daily basis the % distribution of bullish, congestive and bearish phase of the Market.
You may increase the sensitivity of the Market Direction indicator replacing the
values16 = abs(rs)<=1;
values17=rs>1;
values18=rs<-1;
with
values16 = abs(rs)<=0.75;
values17=rs>0.75;
values18=rs<-0.75;
or even
values16 = abs(rs)<=0.5;
values17=rs>0.5;
values18=rs<-0.5;
for more expressive results.