Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
+ve &-ve Stoch Divergence for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | _SECTION_BEGIN ( "+ve &" ); /*STOCHDIV*/ ST33= StochD (14); TR1= LLVBars (ST33,4); TR2= IIf (ST33<30 AND TR1>0 AND Ref (TR1,-1)==0, Ref (ST33,-1),0); TRC= IIf (TR2>0, C ,0); vs= ValueWhen (tr2, Ref (st33,-1), 1); dvs=vs- Ref (vs,-1); vc= ValueWhen (trc, LLV ( C ,3), 1); dvc=vc- Ref (vc,-1); diver= IIf (dvs>0 AND dvc<0,30,0); DAS= BarsSince ( Ref (TR2,-1)>0); dd= IIf (DAS<20 AND C >= Ref ( C ,-1),DIVER,0); HTR1= HHVBars (ST33,4); HTR2= IIf (ST33>70 AND HTR1>0 AND Ref (HTR1,-1)==0, Ref (ST33,-1),0); HTRC= IIf (HTR2>0, C ,0); Hvs= ValueWhen (Htr2, Ref (st33,-1), 1); Hdvs=Hvs- Ref (Hvs,-1); Hvc= ValueWhen (Htrc, HHV ( H ,3), 1); Hdvc=Hvc- Ref (Hvc,-1); Hdiver= IIf (Hdvs<0 AND Hdvc>0,90,0); HDAS= BarsSince ( Ref (HTR2,-1)>0); hdd= IIf (HDAS<20 AND C < Ref ( C ,-1),HDIVER,0); values3 = dd>0; values4=hdd>0; AddToComposite (Values3, "~posstochdiv" , "V" ); AddToComposite (Values4, "~negstochdiv" , "V" ); Buy =0; _SECTION_END (); |