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 ....
raj-adx for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("RajAdx");
// Formula for adx 21 between 20-25 & price above/below 21 ema
Buy = ADX(21) >= 20 AND ADX(21) <= 25 AND Cross(C, EMA(C,21)) ;
Sell = ADX(21) >= 20 AND ADX(21) <= 25 AND Cross(EMA(C,21), C) ;
Filter = Buy OR Sell ;
AddColumn( C , "Close") ;
AddColumn(StochK(), "Stochastic") ;
AddColumn(RSI(), "RSI") ;
AddColumn(MACD(), "MACD") ;
AddColumn(ADX(21), "ADX - 21");
AddColumn(EMA(C,21), "EMA - 21") ;
_SECTION_END();