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 ....
Rakesh's Best Pick OB OSoled 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 | _SECTION_BEGIN ( "OsSetting" ); HaClose = EMA (( O + H + L + C )/4,3); HaOpen = AMA ( Ref ( HaClose, -1 ), 0.5 ); HaHigh = Max ( H , Max ( HaClose, HaOpen ) ); HaLow = Min ( L , Min ( HaClose, HaOpen ) ); Temp = Max ( High , HaOpen); Temp = Min ( Low ,HaOpen); Ovos = ParamToggle ( "Display_OVOS" , "No|Yes" , 1); OBSetting= 40; Bline = StochD (OBSetting); Oversold=Bline<=30; Overbought=Bline>=85; if (Ovos) { PlotShapes ( IIf (Oversold, shapeSmallCircle , shapeNone ) , colorWhite , layer = 0, yposition = haLow, offset = -8 ); PlotShapes ( IIf (Overbought, shapeSmallCircle , shapeNone ) , colorRed , layer = 0, yposition = haHigh, offset = 7 ); } _SECTION_END (); |