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 ....
stochastic for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN(" Indicator");
High35=HHV(H,35);
Low35=LLV(L,35);
perHK= ((C-Low35)/(High35-Low35))*100;
AvgHK= MA(perHK,3);
EMAHK=WMA(EMA(AvgHK,9),9);
Plot(EMAHK,"EMAHK",colorRed);
Plot(AvgHK,"AvgHK",colorBlue);
Buy = Cross(AvgHK,200);
Sell =Cross(70,AvgHK);
Short=Sell;
Cover=Buy;
_SECTION_END();