Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
RI - Auto Trading System for Amibroker (AFL)
Check this auto-trading system developed using SAR. Most useful in trending market. Optimised for 1 hour time frame but works with any time frame in trending market. Also generates sound alerts along with Buy / Sell (arrow) signals. Try this out & any suggestions/ comments most welcome.
By Lalit Burhade – rohini.investments [at] yahoo.in
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | _SECTION_BEGIN ( "RI Auto Trading System" ); acc = Param ( "Acceleration" , 0.1, 0, 1, 0.001 ); accm = Param ( "Max. acceleration" , 0.06, 0, 1, 0.001 ); Plot ( SAR ( acc, accm ), _DEFAULT_NAME (), ParamColor ( "Color" , colorYellow ), ParamStyle ( "Style" , styleLine | styleLine , maskDefault | styleLine | styleLine ) ); Buy = Cross ( Open , SAR (acc,accm)); Sell = Cross ( SAR (acc,accm), Open ); PlotShapes ( IIf ( Buy , shapeUpArrow , shapeNone ), colorYellow , 0, Low , Offset=-15); PlotShapes ( IIf ( Sell , shapeDownArrow , shapeNone ), colorBlue , 0, High , Offset=-15); AlertIf ( Buy , "SOUND C:\\Windows\\Media\\Chord.wav" , "Audio alert" , 2 ); AlertIf ( Sell , "SOUND C:\\Windows\\Media\\Ding.wav" , "Audio alert" , 2 ); _SECTION_END (); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Gd System