cazador Posted July 17, 2010 Report Share Posted July 17, 2010 I am searching a good divergence indicator.. if you can help me.. please!:-? Regards caza. Quote Link to comment Share on other sites More sharing options...
Guest strmec Posted July 17, 2010 Report Share Posted July 17, 2010 I use this, it's better then Stohastic or MACD http://www.4shared.com/file/ItqRK3d0/RSI_Divergence.html Quote Link to comment Share on other sites More sharing options...
cazador Posted July 17, 2010 Author Report Share Posted July 17, 2010 I use this, it's better then Stohastic or MACD http://www.4shared.com/file/ItqRK3d0/RSI_Divergence.html Thanks.. I'll try.. Regards Quote Link to comment Share on other sites More sharing options...
starger Posted July 18, 2010 Report Share Posted July 18, 2010 That is all my stuff about divergences, maybe some more... http://[email protected]/?d=BF3940LA radicaltour and cazador 2 Quote Link to comment Share on other sites More sharing options...
Lost Marble Posted July 18, 2010 Report Share Posted July 18, 2010 I use this, it's better then Stohastic or MACD http://www.4shared.com/file/ItqRK3d0/RSI_Divergence.html It works surprisingly well. Thanks! Quote Link to comment Share on other sites More sharing options...
THANKS Posted July 18, 2010 Report Share Posted July 18, 2010 Have you seen this scanner by Andy skinner. MACD divergence for FOREX ,Stock,ETF etc. http://www.rt-alerts.com/ cazador 1 Quote Link to comment Share on other sites More sharing options...
RogueTrader Posted July 18, 2010 Report Share Posted July 18, 2010 I am searching a good divergence indicator.. if you can help me.. please!:-? Regards caza. I just posted this iticks stoch divergence indi in another thread...I think you may like it http://www.4shared.com/file/paQycbVl/i-sto-div-sig.html pauli79 1 Quote Link to comment Share on other sites More sharing options...
cazador Posted July 18, 2010 Author Report Share Posted July 18, 2010 Have you seen this scanner by Andy skinner. MACD divergence for FOREX ,Stock,ETF etc. http://www.rt-alerts.com/ interesting... Quote Link to comment Share on other sites More sharing options...
cazador Posted July 18, 2010 Author Report Share Posted July 18, 2010 I just posted this iticks stoch divergence indi in another thread...I think you may like it http://www.4shared.com/file/paQycbVl/i-sto-div-sig.html This is good! Quote Link to comment Share on other sites More sharing options...
pauli79 Posted July 18, 2010 Report Share Posted July 18, 2010 I just posted this iticks stoch divergence indi in another thread...I think you may like it http://www.4shared.com/file/paQycbVl/i-sto-div-sig.html Thanks for posting the indi.Do you recommend any particular settings for it on particular time frames.Ive just had a play around with it and it does vary depending on settings. i e On my m15 chart I have the Stoc MTF div indi set at 8,3,3 and also another normal stoc set at 13.2,1 which of course give different signals.The signal given by the Stoc MTF indi is always too late to get in early on any divergence trade. Cazador...have you tried it yet and if so what settings? Quote Link to comment Share on other sites More sharing options...
john225 Posted July 18, 2010 Report Share Posted July 18, 2010 (edited) Here is a MACD histogramm http://codebase.mql4.com/1115 Starger the file is down could you upload it again please? ;-) Edited July 18, 2010 by john225 Quote Link to comment Share on other sites More sharing options...
starger Posted July 19, 2010 Report Share Posted July 19, 2010 (edited) here you go: http://[email protected]/?d=JJH80IOU or http://[email protected]/P2HB7U5PRK btw The best divergence signals i get are shown on 2 (or sometimes more) indicators. example: 1. wait for a signal on FX5 divergence indicator 2. confirm it with RSI divergence or THV Trix Edited July 19, 2010 by starger taipan and cazador 2 Quote Link to comment Share on other sites More sharing options...
THANKS Posted July 19, 2010 Report Share Posted July 19, 2010 I just posted this iticks stoch divergence indi in another thread...I think you may like it http://www.4shared.com/file/paQycbVl/i-sto-div-sig.html best stochastics divergence indicator I have seen so far Quote Link to comment Share on other sites More sharing options...
starger Posted July 19, 2010 Report Share Posted July 19, 2010 (edited) I tried to make an ea with it. That would have been my first time doing anything with mql. The problem i have is to get the indicator calling. So could some1 please tell me where my mistake is in calling the indicator??? // indicator calling double green=iCustom(NULL,0,"i-STO-DIV-SIG",0,2); double red=iCustom(NULL,0,"i-STO-DIV-SIG",1,2); int signal=0; if(green!=EMPTY_VALUE)signal=1; if(red!=EMPTY_VALUE)signal=2; Edited July 19, 2010 by starger Quote Link to comment Share on other sites More sharing options...
soundfx Posted July 19, 2010 Report Share Posted July 19, 2010 Hi starger, Without setting up an EA myself I can't tell exactly what's wrong. However, the indicator has buffers 0 and 1 allocated the arrows from the Wingdings font as: SetIndexArrow(0, 218); SetIndexArrow(1, 217); 218 is the Down arrow and 217 is the Up arrow, so for starters it looks as though you have your green and red the wrong way round. I've not watched the indicator in action - does it always plot the arrow on the open of the candle 2 bars back from the current candle ? To see what's going on, I'd define different indicator values as: double red2=iCustom(NULL,0,"i-STO-DIV-SIG",0,2); double green2=iCustom(NULL,0,"i-STO-DIV-SIG",1,2); double red1=iCustom(NULL,0,"i-STO-DIV-SIG",0,1); double green1=iCustom(NULL,0,"i-STO-DIV-SIG",1,1); double red0=iCustom(NULL,0,"i-STO-DIV-SIG",0,0); double green0=iCustom(NULL,0,"i-STO-DIV-SIG",1,0); and then show them on the screen when the EA is running via a Comment statement: Comment("red2 = ", red2,"\n", "green2 = ", green2, "\n", "red1 = ", red1,"\n", "green1 = ", green1, "\n", "red0 = ", red0,"\n", "green0 = ", green0); starger 1 Quote Link to comment Share on other sites More sharing options...
camisa Posted July 20, 2010 Report Share Posted July 20, 2010 I use this, it's better then Stohastic or MACD http://www.4shared.com/file/ItqRK3d0/RSI_Divergence.html can someone code audio alerts for this one? Quote Link to comment Share on other sites More sharing options...
starger Posted July 20, 2010 Report Share Posted July 20, 2010 It runs with shift 3. The EA gives bad results anyways.:-( Quote Link to comment Share on other sites More sharing options...
THANKS Posted November 23, 2011 Report Share Posted November 23, 2011 can someone code audio alerts for this one? Repeating request..... can someone code audio ,pop up and email alerts on this one.? THanks Quote Link to comment Share on other sites More sharing options...
dipakvkotak Posted November 23, 2011 Report Share Posted November 23, 2011 here you go: http://[email protected]/?d=JJH80IOU or http://[email protected]/P2HB7U5PRK btw The best divergence signals i get are shown on 2 (or sometimes more) indicators. example: 1. wait for a signal on FX5 divergence indicator 2. confirm it with RSI divergence or THV Trix Please upload fresh link Skygod and Sesshoumaru 2 Quote Link to comment Share on other sites More sharing options...
Sesshoumaru Posted November 24, 2011 Report Share Posted November 24, 2011 i'm sorry, but both links don't work, could you please re-upload? Thanks! Quote Link to comment Share on other sites More sharing options...
Skygod Posted November 24, 2011 Report Share Posted November 24, 2011 Mirrored: http://mir.cr/NKKWCMMU tyt1, zzziii and Sesshoumaru 3 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.