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 ....
advance camarilla for Amibroker (AFL)
Copy & Paste Friendly
Back
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 62 63 | _SECTION_BEGIN ( "Price" ); 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 () ); _SECTION_END (); _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 ); // current day open // camarilla pivots if ( True ) { R = DayH - DayL; // range PP = (DayH + DayL + DayO + DayO) / 4 ; R6= (R * 1.055)+DayC; R5= (R * 0.790)+DayC; R4 = (R * 0.55)+DayC; R3 = (R * 0.275)+DayC; R2= (R * 0.183)+DayC; R1= (R * 0.0916)+DayC; S1 = DayC-(R * 0.0916); S2 = DayC-(R * 0.183); S3 = DayC-(R * 0.275); S4 = DayC-(R * 0.55); S5 = DayC-(R * 0.790); S6 = DayC-(R * 1.055); } Plot (R4, "" , colorGreen , styleDots + styleNoLine ); Plot (R5, "" , colorGreen , styleDots + styleLine ); Plot (R6, "" , colorGreen , styleDots + styleLine ); Plot (S4, "" , colorSkyblue , styleDots + styleNoLine ); Plot (R3, "R3" , colorRed , styleDots + styleNoLine ); Plot (S3, "S3" , colorSkyblue , styleDots + styleNoLine ); Plot (S4, "S4" , colorSkyblue , styleDots + styleNoLine ); Plot (S5, "S5" , colorSkyblue , styleDots + styleLine ); Plot (S6, "S6" , colorSkyblue , styleDots + styleLine ); Plot (PP, "" , colorYellow , styleLine ); //---- Title = Name ()+ " Camarilla" + Date ()+ EncodeColor ( colorRed )+ " R3 " + WriteVal (R3,1.2)+ EncodeColor ( colorGreen )+ " S3 " + WriteVal (S3,1.2)+ "\n" + EncodeColor ( colorGreen )+ " Long Breakout above " + WriteVal (R4,1.2)+ "\n" + EncodeColor ( colorRed )+ " Short breakout below " + WriteVal (S4,1.2) + "\n" + EncodeColor ( colorGreen )+ " If Rangebound buy close to " + WriteVal (S3,1.2)+ "\n" + EncodeColor ( colorRed )+ " If Rangebound short close to " + WriteVal (R3,1.2); Filter =1; AddColumn ( C , "cmp" ,1.2); AddColumn (R3, "R3" ,1.2); AddColumn (R4, "R4" ,1.2); AddColumn (R5, "R5" ,1.2); AddColumn (R6, "R6" ,1.2); AddColumn (S3, "S3" ,1.2); AddColumn (S4, "S4" ,1.2); AddColumn (S5, "S5" ,1.2); AddColumn (S6, "S6" ,1.2); _SECTION_END (); |