PureBytes Links
Trading Reference Links
|
Look in the .chm archives under "Weinstein". Here's a Weinstein uptrend
scan example:
OBVa=OBV();
OBVsequp60to30=EMA( OBVa,30)>EMA( OBVa,40) AND EMA( OBVa,40)>EMA(
OBVa,50) AND EMA( OBVa,50)>EMA( OBVa,60) ;
k=StochK(14);
d=StochD(14);
kdCross=Cross(k,d) AND StochK(14)<60;
OBVcross=Cross(OBV(),EMA(OBV(),3));
exremarray=Cross(k,d) AND StochK(14)<60;
exremlimit=ExRem(exremarray,exremarray);
higherlow2=ValueWhen(kdCross,C,2);
higherlow3=ValueWhen(kdCross,C,3);
twohigherlows=C>higherlow2 AND higherlow2>higherlow3;
Buy=MA(V,50)>100000 AND OBVcross AND twohigherlows AND exremlimit AND
OBVsequp60to30;
dom
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
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:
http://docs.yahoo.com/info/terms/
|