PureBytes Links
Trading Reference Links
|
John Bollingers book is not a good example of how to present things in a clear and concise manner, especiallyon how indicators are calculated and what he means by 'normalizing' them.Intraday Intensity is referred to in at least four versions:
open form (cumulative sum):
II1=Cum( Nz( (2*C-H-L)/(H-L) )*V );
closed form (n-period moving sum):II2=Sum( Nz( (2*C-H-L)/(H-L) )*V ,n);
normalized by total volume - II% :II3=II2/Sum(V,n);
normalized with bollinger-bands - %b(II) :top=BBandTop(II1,40,2);bot=BBandBot(II1,40,2);II4=(II1-bot)/(top-bot);
At least this is my understanding of it after some pondering.Which version to use? I have no idea - a matter of taste i suppose.
Attached is a gif of II% and %b(II) applied to the same stock.
and a link if you don't recieve e-mails:http://tinypic.com/cubk
Regards,
Johan
Höstrusk och grċ moln - köp en resa till solen pċ Yahoo! Resor
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Attachment:
Description: ""
|