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

Highest high in last 20 period for Amibroker (AFL)

Copy & Paste Friendly
_SECTION_BEGIN("lowest in 20");

LL_20 = LLV ( c , 20 ) ;
 
Plot(LL_20,"lowest",12,1);

_SECTION_END();
Copy & Paste Friendly
_SECTION_BEGIN("highest in 20");
hh_20 = HHV ( c , 20 ) ;
 
Plot(hh_20,"highest ",12,1);

_SECTION_END();
Back