PureBytes Links
Trading Reference Links
|
Here is the Quotes Plus exploration code for a reversal after a new high or
new low. It looks simple enough to do in Metastock.
output="pivotPoint.lst";
Exchange = NYSE , AMEX , NASDAQ;
integer day;
integer numdays; // how many trading days back to look for a new high
// Set to 250 for a year
// Set it to 30 for a shorter term high
// Look for 300,000 shares average volume each day
numdays :=125;
day := -0;
if close(day - 3) > Max(day - 4 ,day -numdays,cl) and
close(day - 2) < close(day - 3) and
close(day - 1) < close(day - 2) and
close(day ) < close(day - 1) and
AvgVol(0,-29) > 300000
then
println symbol , ",Pullback from high";
endif;
if close(day - 3) < Min(day - 4 ,day -numdays,cl) and
close(day - 2) > close(day - 3) and
close(day - 1) > close(day - 2) and
close(day ) > close(day - 1) and
AvgVol(0,-29) > 300000
then
println symbol , ",Bounce from low";
endif;
-----Original Message-----
From: Lionel Issen [mailto:lissen@xxxxxxxxxxxxx]
Sent: Wednesday, August 25, 2004 4:12 PM
To: 'Metastockusers@xxxxxxxxxxxxxxx'
Subject: RE: [Metastockusers] candelstick detection of pattern
I think it might be done in Metastock.
Who/what is cours de PRISTINE? Can you post their website address?
Lionel
-----Original Message-----
From: suntzu13fr [mailto:jacques-marc@xxxxxxxxxx]
Sent: Wednesday, August 25, 2004 11:49 AM
To: Metastockusers@xxxxxxxxxxxxxxx
Subject: [Metastockusers] candelstick detection of pattern
j' ai lu sur des cours de PRISTINE qu'une des figures annoncant un
retournement de tendance consiste en :
3 barres en escalier (montee ou descente) dont la longueur va en
diminuant..
comment programmer ça sur METSATOCK ?
cette figure a l'air "interessante" mais fautdrait tester ..
pS / L'EXPLORARTION a partir des indicateurs "candelstick":
3 croows ou 3 soldiers ne donne rien..(pas de rejet , pas de signal
=1)
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|