Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Sini Macd for Amibroker (AFL)
I received this from my friend and make some modification.This indicator provides a sure buy point ie- a bottom of market. To take profit please use TSL.
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN("SINI"); r = Param( "SINI period 'R':", 12, 1, 100, 1 ); s = Param( "SINI period 'S':", 26, 1, 100, 1 ); u = Param( "SINI period 'U':", 10, 1, 100, 1 ); sig = Param( "Signal period:", 9, 1, 100, 1 ); Mtm = C - Ref ( C, -1 ); AbsMtm = abs ( Mtm ); Num_T = EMA ( EMA( EMA ( Mtm, r ), s ), u ); Den_T = EMA ( EMA( EMA ( AbsMtm, r ), s ), u); SINI = 100 * Nz ( Num_T / Den_T ); TSIL = 100 * Nz ( Num_T / Den_T ); //Green TSIL Line=Rising; Red TSIL Line=Falling col = IIf( TSIL > Ref( TSIL, -1 ), colorLime, colorRed ); Plot( TSIL, "SINI("+r+","+s+","+u+")", col, styleLine | styleThick); //Green EMA SINI,sig Line=Rising; Red EMA SINI,sig Line=Falling col = IIf( EMA(SINI,sig) > Ref( EMA(SINI,sig), -1 ), colorBrightGreen, colorRed ); Plot( EMA(SINI,sig), "", col, styleThick); Histcol= IIf(SINI>0,colorIndigo,colorDarkRed) ; Plot( SINI, "", histcol, ParamStyle("Histogram style", styleThick | styleHistogram | styleNoLabel, maskHistogram ) ); Plot(0,"",ParamColor( "ColorZero", colorDarkRed ),styleLine); //Title = "SINI"; _SECTION_END(); //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx //FORMULA Cuptop1= C>BBandTop( C,20,1 ) ; top1up= BBandTop( C,20,1 )>=Ref(BBandTop( C,20,1 ),-1) ; top2up= BBandTop( C,20,2 )>=Ref(BBandTop( C,20,2 ),-1) ; MACDup= MACD()>Signal() ; Hist= MACD()-Signal() ; Histup= Hist>Ref(Hist,-1) ; stochup= StochK()>StochD() ; stoch80= StochK()<80 ; MFIup= MFI()>EMA(MFI(),5) AND MFI()>20 ; ma21up= MA(C,21)>=Ref(MA(C,21),-1) ; ma55up= MA(C,55)>=Ref(MA(C,55),-1) ; EMA89up= EMA(C,89)>=Ref(EMA(C,89),-1) ; Cupma21= C>MA(C,21) ; Cupma55= C>MA(C,55) ; cupema89= C>EMA(C,89) ; Vup50= V>50000 ; CCIup0= CCI()>0 ; Cupo= C>O ; //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx mybuy= TSIL > Ref( TSIL, -1 ) AND EMA(SINI,sig) > Ref( EMA(SINI,sig), -1 ) AND TSIL>EMA(SINI,sig) AND macdup AND ema89up AND mfiup ; mysell= TSIL < Ref( TSIL, -1 ) AND EMA(SINI,sig) < Ref( EMA(SINI,sig), -1 ) AND TSIL<EMA(SINI,sig) ; Buy = ExRem(myBuy, mysell); Sell = ExRem(mysell, myBuy); AlertIf( Buy, "", "BUY @ " + C, 1 ); AlertIf( Sell, "", "SELL @ " + C, 2 ); PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorLime,0); PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed,0);
10 comments
Leave Comment
Please login here to leave a comment.
Back
Nice Macd with Buy/sell signal. I like it (Very clear n precise). 5 Star Rating from me.
Superb clear cut !! 4 stars
SIR I AM NEW TO AMIBROKER, PLEASE ANY ONE HELP ME TO. HOW TO DOWNLOAD THIS SINI MACD AMIBROKER (AFL) FORMULA ON MY AMIBROKER CHART AND ALSO HELP ME TO GET RENKO CHART ON MY AMIBROKER CHART……PLEASE PLEASE HELP ME INTHIS REGARD.. MY EMAIL ID IS chandramohanhyr@gmail.com
Hello Mr. Chandramohan Pl mail to nnn.niranjan@gmail.com for details
5 star :)
5 star
This is a variation of TSI formula.
5 Stars
VERY GOOD SIR
It would be more profitable if the signal can be generated at the transition point of Green & Red color. Otherwise with the current signal point winning ratio is very small.
Request admin to look at it and take extra effort to modify.