Jump to content
Tom Next - Daytrading Community

Explorer für prozentuale Veränderung in x Handelstagen


duncan

Recommended Posts

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 by duncan
Link to comment
Share on other sites

  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...