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

lower buy for Amibroker (AFL)

Copy & Paste Friendly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
_SECTION_BEGIN("My Low buy");
 
/* email: captcha2000@gmail.com
 
this afl will show you the low, close value for better understanding
*/
 
Plot(Low,"Low", colorYellow);
Plot(Close,"Close", colorBlue);
Plot(High,"High", colorWhite);
 
Title = " {{NAME}} {{DATE}} {{INTERVAL}} "+_DEFAULT_NAME()+" Chart values :
{{VALUES}} ";
 
 
_SECTION_END();
Back