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 ....
Supertrend for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 | Factor:=Input( "Factor" ,1.00,10.00,3.00); Pd:=Input( "ATR Periods" ,1,100,10); Up:=MP()+(Factor* ATR (Pd)); Dn:=MP()-(Factor* ATR (Pd)); Td:= If ( Cross ( C , LLV (Up,13)),1, If ( Cross ( HHV (Dn,13), C ),-1,PREV)); Dnx:= If (Dn= HighestSince (1, Cross (Td,0),Dn),Dn,PREV) ; Upx:= If (Up= LowestSince (1, Cross (0,Td),Up),Up,PREV); ST:= If (Td=1,Dnx, If (Td=-1,Upx,PREV)); ST |