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

Buy on Rebound BEI JAKARTA for Amibroker (AFL)
roni
over 7 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
trading system, amibroker

Buy stock on rebound.

Indicator / Formula

Copy & Paste Friendly
//////////////////////////////////////////////////////////
_SECTION_BEGIN("IntradaySuRe");
period = 13; // 13 bars 
C1=LLV( Low, period );
C=Close;
V=Volume;
V1=Ref(Volume, -1);
V2=Ref(Volume, -2);
V3=Ref(Volume, -3);
V4=Ref(Volume, -4);
V5=Ref(Volume, -5);
C0=Ref(Close, -1);
C2=Ref(Close, -2);
C3=Ref(Close, -3);
C4=Ref(Close, -4);
C5=Ref(Close, -5);
VR=(V1+V2+V3+V4)/4;
CHANGE=100*(C0-C1)/C1;//Change Percentage
Buy = 	C0 < C2 AND CHANGE<2 AND V>18000000 AND C>C0 AND V>VR AND C>C0;

Sell = 0;
 
Short = 0;

Cover = 0;

6 comments

1. tkskamlesh

ONLY BUY SCAN ?
NOT IN SELL SCAN ?

2. roni

Yes only buy scan

3. Christianizer

its not work

4. roni

For indonesia stock only

5. YohanHardy

Halo, saya uda coba kok gak ada rumus/tampilan ya? alias blank

6. sakhapradnya

karena memang tidak ada fungsi plotnya. rumusnya untuk scan saja. kalau mau tambah simbol belinya bisa ditambah script berikut. terimakasih

PlotShapes( Buy * shapeSmallUpTriangle + Sell * shapeSmallDownTriangle, IIf( Buy, colorBlue, colorRed ) );

Leave Comment

Please login here to leave a comment.

Back