duncan Posted August 29, 2009 Report Share Posted August 29, 2009 (edited) Hi, ein Explorer der auf Ideen aus AB http://www.aktienboard.com/forum/f29/prore...233#post2216402 basiert: /*Explorer, der Werte findet, die in den letzten X Handelstagen Y % zugelegt haben ... f1 = max Preis f2 = min. Preis f3 = Volumen tage = Anzahl zurück liegende Tage auf die sich die prozentuale Preisveränderung bezieht. prozent = prozentuale Preisveränderung*/ tage = 5; prozent = 10; f1 = High >= 1.5; f2 = High <= 10; f3 = Volume > 500000; f4 = High >= (Ref(High,-tage) + (Ref(High,-tage) * (prozent / 100))); range=H-L; f5 = Close > High - range * 0.236; f = f1 AND f2 AND f3 AND f4 AND f5 AND Close > Open; criteria = IIf(f,((High / Ref(High,-tage) * 100) - 100),0); AddColumn( criteria , "Prozent"); Filter = criteria; Edited August 29, 2009 by duncan Quote Link to comment Share on other sites More sharing options...
Growfreak Posted July 17, 2011 Report Share Posted July 17, 2011 Interessant! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.