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 ....
Arrow Sars for Amibroker (AFL)
Rating:
3 / 5 (Votes 3)
Tags:
trading system, amibroker
This is a clear way to identify Buy&Sell signals.
Similar Indicators / Formulas
All in One
Submitted
by Nahid almost 14 years ago
Kase Peak Osc. V2 batu
Submitted
by batu1453 over 10 years ago
Kase CD V2batu
Submitted
by batu1453 over 10 years ago
Ichimoku
Submitted
by prashantrdx over 10 years ago
Arvind' System
Submitted
by akdabc over 14 years ago
Miftha remix for dse
Submitted
by coolpace over 14 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("_SARS"); acc = Param("Acceleration", 0.02, 0, 1, 0.001 ); accm = Param("Max. acceleration", 0.2, 0, 1, 0.001 ); dynamic_color = IIf( SAR() > H, colorRed, colorGreen ); Plot( SAR( acc, accm ), "_SARS", dynamic_color,styleDots | styleNoLine); Plot( Close, "Price", colorBlue, styleBar ); Buy=Ref( High , -1 ) < Ref( SAR() , -1 ) AND Low>SAR(); Sell= Ref( Low , -1 )> Ref(SAR() , -1) AND High <SAR(); PlotShapes( Buy * shapeUpArrow + Sell * shapeDownArrow, IIf( Buy, colorGreen, colorRed ),0,IIf( Buy, L, H ),-10 ); _SECTION_END();
0 comments
Leave Comment
Please login here to leave a comment.
Back