PureBytes Links
Trading Reference Links
|
This one is trivial - you should be able to do this yourself - here it is as an example - last one:
Period = Param("Period",30,1,300,1);
Choppy = 100* ((log(Sum(ATR(1),Period))/(HHV(C,Period) - LLV(C,Period)))/log(Period));
Plot(Choppy,"Choppy",colorRed,styleLine);
--- In amibroker@xxxxxxxxxxxxxxx, ram vel <rvlv@xxx> wrote:
>
> Hi droskill,
>
> kindly take a look at this info on choppiness index with a chart.
>
> http://www.linnsoft.com/tour/techind/chop.htm
>
>
>
>
>
> The Formula . . .
>
> . . .more on Formulas
>
>
> 100 * LOG10( SUM(ATR(1), x) / ( MaxHi(x) - MinLo(x) ) ) / LOG10(x)
> where x = Choppiness Period
> LOG10(x) is base-10 LOG of x
> ATR(1) is the True Range (Period of 1)
> SUM(ATR(1), x) is the Sum of the True Range over past x bars
> MaxHi(x) is the highest high over past x bars
>
> please take a look and code this formula at your convenience and oblige
>
> For some reason this formula looks better with chart based guidance.
> thanks and best regards
> rvlv
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|