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 ....
Scan Harga for Amibroker (AFL)
Rating:
2 / 5 (Votes 4)
Tags:
amibroker, exploration
“Scan Harga” Automatic analysis for amibroker.
Similar Indicators / Formulas
GapUp and Bearish Close (Reversal) _Daily
Submitted
by indraji2001 almost 11 years ago
GapDn and Bullish Close (Reversal) _ Daily_Explore
Submitted
by indraji2001 almost 11 years ago
Three Day Balance Points
Submitted
by nvkha almost 11 years ago
Deel - Average Dollar Price Volatility
Submitted
by kaiji over 15 years ago
DIX50,20,10
Submitted
by morgen almost 15 years ago
4-Day-Range Switch
Submitted
by santho_sd about 15 years ago
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | _SECTION_BEGIN ( "Scan Harga" ); Rule1 = Param ( "Close" , 0, 0, 10000, 1); Rule2 = Close >= Rule1 ; //Filter= Sell= Rule1 AND Rule2 AND V>2000 ; Filter = Sell = Rule2 AND V >2000 ; V0 = Ref ( Volume ,0) ; V1 = Ref ( Volume ,- 1); V2 = Ref ( Volume ,- 2); V3 = Ref ( Volume ,- 3); VR=(V1+V2+V3) /3; VTREND = (V0 > VR); VoK = V0>V1 AND V0>VR; Vup= (V0>V1 AND V1>V2) AND (V0>Vr) AND ((V0/Vr)>1.1); AddColumn ( Ref ( C ,-1), "PrevClose" ,1.0, IIf ( Ref ( C ,-1), colorOrange , colorBlack )); AddColumn ( O , "Open" ,1.0, IIf ( O == L , colorBrightGreen , IIf ( O == Ref ( C , -1), colorOrange , IIf ( O < Ref ( C ,-1), colorRed , colorBlue ) ))); AddColumn ( Close , "Last" ,1.0, IIf ( C > Ref ( C ,-1), colorLime , colorRed )); AddColumn (Rule1, "Sell Order" , 1.0, colorDefault , IIf ( C >=Rule1 AND V >2000, colorGreen , colorWhite ) ); AddColumn (VOk, "V.Ok" ,1.0, colorDefault , IIf ( VOk, colorGreen , colorRed ) ); AddColumn ( Vup, "V.Up" , 1, IIf ( Vup, colorBrightGreen , colorRed ) ); AddColumn ( Volume , "V-Today" ,1.0, IIf ( Volume >2000, colorLime , colorRed )); AddColumn (V1, "V-Yest" ,1.0, IIf ( Vr >2000, colorLime , colorRed )); //AddColumn( Vr, "V-Avg",1.0, IIf( Vr >2000, colorLime, colorRed )); //AddColumn( V0/ Vr,"Vol Ratio",1.1, IIf( V0/Vr >1.1, colorLime,colorRed )); PlotShapes ( IIf ( Filter , shapeSmallCircle , shapeNone ), colorBlack , 0, Low , Offset=-15); AlertIf ( Sell , "SOUND C:\\Windows\ \Media\\XPhone11 .wav" , "Audioalert" , 2 ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back