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 ....
Pick detection for Amibroker (AFL)
Copy & Paste Friendly
Back
DayH = TimeFrameGetPrice("H", inDaily, -1);// yesterdays high
DayL = TimeFrameGetPrice("L", inDaily, -1);//low
DayC = TimeFrameGetPrice("C", inDaily, -1);//close
DayO = TimeFrameGetPrice("O", inDaily);// current day open
HiDay = TimeFrameGetPrice("H", inDaily);
LoDay = TimeFrameGetPrice("L", inDaily);
H3 = ( ( (DayH / DayL) + 2.66) / 3.66) * DayC;
L3 = (2-(( DayH / DayL) + 2.66) / 3.66) * DayC;
O0 = Ref(O,0);
O1 = Ref(O,-1);
L0 = Ref(L,0);
HH0 = Ref(H,0);
O2 = Ref(O,-2);
C0 = Ref(C,0);
C1 = Ref(C,-1);
C2 = Ref(C,-2);
downday = IIf(O1>H3-3 AND (O1-C1)<0 AND (O0-C0)>=0,True, False);
PlotShapes(downDay*shapeDownArrow,colorRed,0,H);
ll = ( LLV( L, 20 ) + 2 * ATR( 10 ) );
hh = ( HHV( H, 20 ) - 2 * ATR( 10 ) );
stop = IIf((C<ll), hh, ll);
Plot( C, "Price", colorBlack, styleCandle);