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

Williams %R Exploration for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, amibroker, exploration

This exploration may help identify stocks that one might like to enter a position into.

By Mubashar Virk

Similar Indicators / Formulas

Jasons Indicator Convergence Divergence (JICD)
Submitted by kaiji over 14 years ago
EMA,MACD,RSI EXPLORATION INDICATOR
Submitted by viralmehta about 10 years ago
MACD Divergences 2
Submitted by filinta over 13 years ago
CumRSI
Submitted by Xswingtrader almost 14 years ago
Awesome Oscillator (AO)
Submitted by zaroldo almost 14 years ago
Cross Prediction
Submitted by mauro24 almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("William's R");
function PercentR( periods )
{
 return 100 * ( HHV( H, periods ) - C )/( HHV( H, periods ) - LLV( L, periods )); 
}

Plot( PercentR( Param("Periods", 10, 2, 100 ) ),
		_DEFAULT_NAME(),
		ParamColor("Color", ColorCycle ) );
_SECTION_END();

P  =  ((H + L + C) / 3);
R1  =  ((2 * P) - L);
S1  =  ((2 * P)  - H);
R2  =  ((P - S1) + R1);
S2  =  (P - (R1 - S1));

Filter = PercentR( Param("Periods", 10, 2, 100 ) ) > 80;

AddColumn( V, "Volume",1 );
AddColumn( C, "Close" );
AddColumn( Ref (C, -1), "Last Close");
AddColumn( C - Ref( C, -1), "Change");
AddColumn( ROC( C, 1 ), "ROC" ); 
AddColumn (RSI(), "RSI",1.2);
AddColumn( r2, "R 2", 1.2);
AddColumn( r1, "R 1", 1.2);
AddColumn( P, "Pivot", 1.2);
AddColumn( S1, "S 1", 1.2);
AddColumn( S2, "S 2", 1.2);

1 comments

1. FinFreedom1965

Sorry, but this doesnt look like Williams %R which oscillates between -80 – 20. This one just has the RSI and ROC.

Leave Comment

Please login here to leave a comment.

Back