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 ....
Buy on Rebound BEI JAKARTA for Amibroker (AFL)
Rating:
3 / 5 (Votes 4)
Tags:
trading system, amibroker
Buy stock on rebound.
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ////////////////////////////////////////////////////////// _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
Leave Comment
Please login here to leave a comment.
Back
ONLY BUY SCAN ?
NOT IN SELL SCAN ?
Yes only buy scan
its not work
For indonesia stock only
Halo, saya uda coba kok gak ada rumus/tampilan ya? alias blank
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 ) );