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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

ATR stop loss for Metastock

Copy & Paste Friendly
{Upper Band}
Prd1:=Input("ATR Period",1,20,5);
Prd2:=Input("Period for Highest High Value",1,20,10);
(HHV(LLV(L,Prd1)+ATR(Prd1),Prd2));

{Lower Band}
Prd2:=Input("Period for Lowest Low Value",1,20,10);
(LLV(HHV(H,Prd1)-ATR(Prd1),Prd2))
Back