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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Latest Camarilla for Amibroker (AFL)
hizari
over 13 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
amibroker, exploration, pivots

The camarilla Equation produces 8 levels from yesterday’s open, high, low and close. These levels are split into two groups, numbered 1 to 4. The pattern formed by the 8 levels is broadly symmetrical, and the most important levels are the ‘L3’, ‘L4’ and ‘H3’, ‘H4’ levels. While day trading, traders look for the market to reverse if it hits an ‘L3’ or ‘H3’ level. They would then open a position AGAINST the trend, using a stop loss somewhere before the associated ‘L4’ or ‘H4’ level. The SFT theory suggests setting stop losses that appear to you the trader to be prudent, and to not even open the trade until it has penetrated the level in the ‘right’ direction, i.e. demonstrated that it has found resistance (or support). In the case of the higher H3 level, this would mean that price had already reversed and pushed back down thru the level, heading south.

The second way to try day trading with the Camarilla Equation is to regard the ‘H4’ and ‘L4’ levels as ‘breakout’ levels – in other words to go WITH the trend if prices push thru either the H4 or L4 level. This essentially covers all the bases – Day Trading within the H3 and L3 levels enables you to capture all the wrinkles that intraday market movement throws up, and the H4 – L4 breakout plays allow the less experienced trader to capitalise on relatively low risk sharp powerful movements. Here’s what it looks like in action:-

Screenshots

Similar Indicators / Formulas

Pivots levles for Candles
Submitted by akshah over 13 years ago
Camarilla Pivots Exploration
Submitted by swapnil over 13 years ago
Robert's Pivot Points
Submitted by kaiji about 14 years ago
HOLY GRAIL
Submitted by prasadbrao almost 12 years ago
super trend tracker
Submitted by jaipal7786 almost 11 years ago
PIVOT POINT WITH VPA1 FOR AMIBROKER
Submitted by METHUN over 13 years ago

Indicator / Formula

Copy & Paste Friendly





_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 ;
R4 = (R * 1.1/2)+DayC;
R3 = (R * 1.1/4)+DayC;
S3 = DayC-(R * 1.1/4);
S4 = DayC- (R * 1.1/2);
}

Plot(R4, "",colorGreen,styleDots+styleNoLine);
Plot(S4, "",colorDarkBlue,styleDots+styleNoLine);
Plot(R3, "R3",colorRed,styleDots+styleNoLine);
Plot(S3, "S3",colorDarkBlue,styleDots+styleNoLine);
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(S3,"S3",1.2);
AddColumn(S4,"S4",1.2);
_SECTION_END();

1 comments

1. HARI123

NICE THANKS

Leave Comment

Please login here to leave a comment.

Back