Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
suktam pivot based buy-sell for Amibroker (AFL)
It is simple last day pivot base buy-sell signle afl-code,optimize it for your selected stock give good result,
author….Navin patel
Similar Indicators / Formulas
Indicator / Formula
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 | SetPositionSize ( 2000, spsShares ); // 2000 shares by default _SECTION_BEGIN ( "camarilla levels" ); //---- pivot points DayH = TimeFrameGetPrice ( "H" , inDaily , -1); // yesterdays high DayL = TimeFrameGetPrice ( "L" , inDaily , -1); // low DayC = TimeFrameGetPrice ( "C" , inDaily , -1); // close DayO = TimeFrameGetPrice ( "O" , inDaily ,-1); // current day open // camarilla pivots if ( True ) { A = Optimize ( "X" , Param ( "A" ,0.17,0.1,1,0.01),0.1,1,0.01); R = DayH - DayL; // range PP = (DayH + DayL +DayC+DayO)/4; R1 = PP + (R * A); S1 = PP - (R * A); BT=R1+4*(R1-PP); ST=S1-4*(PP-S1); } Plot (R1, "" , colorGreen , styleStaircase ); Plot (S1, "" , colorGreen , styleStaircase ); Plot (PP, "" , colorBlue , styleDots + styleNoLine ); Plot (BT, "" , colorBlue , styleDots + styleNoLine ); Plot (ST, "" , colorBlue , styleDots + styleNoLine ); //---- Title = Name ()+ " SIMPLE PIVOT & FIBO" + Date ()+ EncodeColor ( colorRed )+ " Long Breakout above " + WriteVal (R1,1.2)+ "\n" + EncodeColor ( colorRed )+ " Short breakout below " + WriteVal (S1,1.2) ; Filter =1; AddColumn ( C , "cmp" ,1.2); AddColumn (R1, "R4" ,1.2); AddColumn (S1, "S4" ,1.2); AddColumn (PP, "UP" ,1.2); _SECTION_END (); Buy = Cover = Cross ( C , R1); Sell = Short = Cross (S1 , C ); // plot arrows shape = Buy * shapeUpArrow + Short * shapeDownArrow ; PlotShapes ( shape, IIf ( Buy , colorGreen , colorRed ), 0, IIf ( Buy , Low , High ) ); SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 ) ) )); Plot ( C , "Close" , ParamColor ( "Color" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
very nice work navin,you have done good job,i have tried it, it give excellent result in back test for my stock