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 ....
Volatility Stop Usage Example for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #include <vstop_proc.afl> SetBarsRequired (-2,-2); per = 20; mult = 2; tr = mult * ATR (14); vstop_proc(tr,per); GraphXSpace = 5; SetChartOptions (0, chartShowDates ); Plot (trailLong, "trailLong" , colorBrightGreen , styleStaircase ); Plot (trailShort, "trailShort" , colorOrange , styleStaircase ); Plot ( C , "Price" , colorWhite , styleCandle ); |