PureBytes Links
Trading Reference Links
|
thank you all as it is much appreciated
I have the following code but there are a few things missing:
Cond1 = LinearReg(Close,3) > Ref(LinearReg(Close,3),-1) AND
LinRegSlope(Close,23) >= 0;
Cond2 = LinearReg(Close,3) < Ref(LinearReg(Close,3),-1) AND
LinRegSlope(Close,23) <= 0;
Filter = Close > 10 AND V >= 1000000 AND EMA (V, 30) >= 500000 AND ATR
(15) >= 1.2 AND Cond1;
ATR15 = ATR (15);
EMA30 = EMA (V, 30);
AddColumn (C, "Close");
AddColumn (V, "Volume");
AddColumn (ATR15, "Average True Range");
AddColumn (EMA30, "30 Day Average Volume");
I can't seem to be able to scan for the Short side given the below
conditions.
Filter = Close > 10 AND V >= 1000000 AND EMA (V, 30) >= 500000 AND ATR
(15) >= 1.2 AND Cond1 OR Cond2;
Also, i'm having difficulty trying to figure out how to tell AB to
scan for stocks where the difference between close and the +1 s.d
(with a 23 period based on close) is >=1.5
The opposite for shorts:
Difference of Close and -1 s.d >=1.5
I would appreciate your help
thanks in advance
tony
qitrader
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/DldnlA/9M2KAA/U1CZAA/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/
|