Screener Elliott Wave Indicator
Forums › ProRealTime English forum › ProScreener support › Screener Elliott Wave Indicator
- This topic has 33 replies, 9 voices, and was last updated 5 years ago by Hasardeur.
-
-
10/12/2016 at 3:27 PM #14772
Hallo all,
the attached indicator is showing the Elliott waves in an horizontal layout.
The indicator is working well.
I would like to change the indicator into a Screener, showing the crossing over results for the last x (5) trading days backwards from the actual date.
I have tried but the results are not matching.
Could someone give me assistance?
Many thanks in advanced.
Best regards
Hasardeur
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647------------------------------------------// Elliott Wave Trend Indicator// ------------------------------------------pr= 2pr2= 10EWpk2= HIGHEST[1](High) > (High)*(1-pr2)/100EWtr2= LOWEST[1](Low) < (Low)*(1-pr2)/100// Intermediate Elliot Wave stuff//zz= ZigZag[pr](close)zzHi2=ZigZag[pr2](High)zzLo2=ZigZag[pr2](Low)avg2=(zzHi2+zzLo2)/2If EWpk2 ThenRetroSuccessSecret2= zzHi2ELSIF EWtr2 ThenRetroSuccessSecret2= zzLo2ELSIF (avg2>avg2[1]) THENRetroSuccessSecret2= highELSERetroSuccessSecret2= LowENDIFEW2=ZigZag[pr2](RetroSuccessSecret2)LRZZEW2= LinearRegressionSlope[pr](EW2)// --------------------------------// START SCREENER BG_MV-EW Trend// --------------------------------c111= LRZZEW2[1] crosses over 0 AND LRZZEW2[0] > 0.0//c211= LRZZEW2[1] crosses under 0 AND LRZZEW2[0] < 0.0ckauf= c111//cverk= c211LBday = 4 // look back daysif ckauf thenevent = 1eventindex = barindexendifif barindex - eventindex < LBday thenevent = 1elsif barindex - eventindex > LBday thenevent = 0endifSCREENER[event]1 user thanked author for this post.
10/13/2016 at 10:04 AM #14814Hey this looks very interesting, thank you for sharing!
Sorry … can’t offer anything to refine the screener (not yet anyway) but what ‘settings’ are you using to show the Indicator same as in the your .pdf?
Please could you put up a screen shot of your indicator settings?
I have played with various settings / colour zones.
Attached is what I see … nothing below the zero line … maybe I’m just not thnking straight (I need more coffee ;)??
Thank You
GraHal
10/13/2016 at 10:18 AM #1481710/13/2016 at 10:28 AM #1481810/13/2016 at 10:49 AM #14822Please post images when you can, better than PDF! Thanks.
If I understand correctly your request, you want to test as a screener is a cross over (not under?) of your Eliot Wave oscillator occurred in the last 5 bars? (or do I need more coffee too?!) ahaha
10/13/2016 at 12:38 PM #14835Nicolas … is it to do with file size why you don’t want .pdf attachments?
I find it very difficult to read most folks .jpgs they post on here as even when zoomed in they are blurry and unreadable. Often I give up trying to see the info (instrument, timeframe, dates along the x axis etc) I want to read on images / jpgs posted here by users and I have to make do with a ‘general impression. Is this just me?? (I am using a 28 inch monitor).
Whereas I found the .pdf attachments above loads easier to read and don’t go blurry when I zoom in.
10/13/2016 at 1:31 PM #14840Hallo Nicolas,
thanks for taking care.
Yes you understood right. i would like to have the corssing over at the last 5 days backwards form the actual date.
with the attached code it seems to be ok, but i have still some wrong results.
1234567LBday = 4 // look back daysif ckauf theneventindex = barindexendifif barindex - eventindex < LBday thenSCREENER[ckauf] (BGRSLVaR AS "RSL/VaR")endif10/13/2016 at 1:42 PM #1484210/13/2016 at 1:49 PM #14846Hallo Grahal,
here is the indicator code. Have fun and good trades.
1234567891011121314151617181920pr= 2pr2= 10EWpk2= HIGHEST[1](High) > (High)*(1-pr2)/100EWtr2= LOWEST[1](Low) < (Low)*(1-pr2)/100zzHi2=ZigZag[pr2](High)zzLo2=ZigZag[pr2](Low)avg2=(zzHi2+zzLo2)/2If EWpk2 ThenRetroSuccessSecret2= zzHi2ELSIF EWtr2 ThenRetroSuccessSecret2= zzLo2ELSIF (avg2>avg2[1]) THENRetroSuccessSecret2= highELSERetroSuccessSecret2= LowENDIFEW2=ZigZag[pr2](RetroSuccessSecret2)LRZZEW2= LinearRegressionSlope[pr](EW2)RETURN LRZZEW2 coloured(0,0,200) AS "LRZZ EW[10]"1 user thanked author for this post.
10/13/2016 at 1:51 PM #14847@GraHal
Strange, even if images are compressed when upload, they are lossless and readable .. for me! 20% of visitors/users are browsing the site with mobile each day, better have clickable pictures than download PDF file in that case!
10/13/2016 at 2:10 PM #14851Hallo Niclas,
for this screener it is not important, but generally i try to get only the first buy signal after a sell signal has occured.
The following buy signals (after the first buy signal has occured) are not interesting for me.
The screener should filter the above signals only occured in the last 5 trading days backwards from the actual date.
Many thanks in advanced and
best regards from Germany.
Hasardeur
12/13/2016 at 1:28 AM #1842502/20/2017 at 8:18 PM #25810Indeed. The indicator works perfectly! Thanks.
Now I’m checking to make it working as a screener. Even not taking into account to detect the change of signal last 5 days.
Just to detect the signal goes over 0.It seems already challenging to detect the change the last day.
Here is the piece of the code.123C111 = LRZZEW2 CROSSES OVER 0SCREENER[C111]Have you found something since as it is a subject with post long time ago?
Still looking ….
02/21/2017 at 10:50 AM #25844I keep trying but seems that I’m struggling with simple thing 🙁
So I created the indicator (Elliot Wave Oscillator 4) which is working fine (You can see it in screenshot).
I transformed the indicator to be a binary oscillator to identify Impulse Wave (=1) and Corrective Wave (=0)I just want to have a screener which is identifying all shares in the Impulse Wave, so nothing too complicated here.
1234TIMEFRAME(daily)myElliottWaveOscillator4 = CALL "Elliott Wave Oscillator 4"C1 = (myElliottWaveOscillator4 = 1)SCREENER [C1](Elliott Wave Oscillator 4 is my indicator)
When I run the screener, it gives me a lot of shares in the list, but even a lot which my indicator shows me 0 (Corrective Wave).
So I’m confuse now.Something obvious that I did wrong? Any help?
02/21/2017 at 10:54 AM #25849 -
AuthorPosts
Find exclusive trading pro-tools on