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

Additional Codes for Concencus of Common Traditional Indicators for Amibroker (AFL)

Copy & Paste Friendly
//==================================== insert code here
per=Optimize("AllIndi",172,2,200,1);
Buy=LinRegSlope(allindi,per)>0;
Sell=LinRegSlope(allindi,per)<0;
Buy=ExRem(Buy,Sell);Sell=ExRem(Sell,Buy);
//====================================

printf("\n\nAllIndicators= "+WriteIf(allindi>0,"UP",WriteIf(allindi<0,"DOWN","SIDEWAYS")));
Back