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 ....
Quick Check for Uptrend Stock by Sosrodiningrat @2017 for Amibroker (AFL)
Copy & Paste Friendly
Back
//Quick Check for Uptrend Stock by Sosrodiningrat @2017
SetOption("InitialEquity",Param("InitialEquity",1e6,1,1e8,1));
SetOption("AllowSameBarExit",True);
SetTradeDelays(0,0,0,0);
Candlestick=ParamToggle("Candlestick","OFF|ON",0);
BuyPrice=O;
SellPrice=C;
Buy=Sell=1;
if(Candlestick==1){Plot(C,"",colorBlack,styleCandle);}
Plot(Equity(1),"",colorGrey50,styleLine|styleThick|styleOwnScale);
printf("\nEquity= "+Equity(1));
{_N(Title = StrFormat(Name()+" - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Val(B)=%.2f Equity=%.f", O, H, L, C,SelectedValue(ROC(C,1)),SelectedValue(C*V/1e9),Equity()/1));}
//===============================================================