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

True Price Action Indicator for Amibroker (AFL)
niladri
about 12 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
amibroker

Theory: http://www.trading-naked.com/Buffy_Price_Action.htm

I suggest everyone to read & understand the above content, it is the best source on the topic.

This indicator will plot HH LL HL LH levels on the chart ( as mentioned in the above theory ).

I have provided a toggle for this indicator & “% Change” variable.

To plot these labels on lower TF chart…just drag the slider value around 0.3/0.4.

Hope this helps!

Screenshots

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 9 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago
Horizontal Live Priceline Tool
Submitted by northstar over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Price Action");

pa = ParamToggle("Price Action","Show|Hide",0);
Q = Param( "% Change", 1, 0, 5, 0.1 );
if (pa == 1 ){

	
	Z = Zig( C , q ) ;

	HH = ( ( Z < Ref( Z, -1 ) AND Ref( Z, -1 ) > Ref( Z, -2 ) ) AND (Peak( z, q, 1 ) > Peak( Z, q, 2 ) ) );
	LH = ( ( Z < Ref( Z, -1 ) AND Ref( Z, -1 ) > Ref( Z, -2 ) ) AND (Peak( Z, q, 1 ) < Peak( Z, q, 2 ) ) );
	HL = ( ( Z > Ref( Z, -1 ) AND Ref( Z, -1 ) < Ref( Z, -2 ) ) AND (Trough( Z, q, 1 ) > Trough( Z, q, 2 ) ) );
	LL = ( ( Z > Ref( Z, -1 ) AND Ref( Z, -1 ) < Ref( Z, -2 ) ) AND (Trough( Z, q, 1 ) < Trough( Z, q, 2 ) ) );

	dist = 0.5 * ATR( 20 );
 
	for ( i = 0; i < BarCount; i++ )
	{
   		if ( HH[i] )	      PlotText( "HH", i, H[ i ] + dist[i], colorYellow ); 
    	if ( LH[i] )        PlotText( "LH", i, H[ i ] + dist[i], colorYellow ); 
    	if ( HL[i] )        PlotText( "HL", i, L[ i ] - dist[i], colorPink ); 
    	if ( LL[i] )        PlotText( "LL", i, L[ i ] - dist[i], colorPink );
 
	}
}
_SECTION_END();

3 comments

1. niladri

The attached image is not correct…pls check http://www.wisestocktrader.com/indicators/2704-sar-stop-reverse for the correct image.

2. hezar dastan

very good

3. szgolyas

itsnot work

Leave Comment

Please login here to leave a comment.

Back