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

OBV_RTT Trend Power for Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
amibroker, trend, oscillator

This is an attempt to implement the indicator described in http://www.readtheticker.com.

The calculation from each days high, low, close and volume.
Bar Mid Point (BMP): (High+Low)/2.
Bullish Close: When close is above BMP.
Bearish Close: When close is below BMP.
Neutral Close: When close is equal to BMP.
The above is then weighted by volume, and then added to the previous bar result.

The output is:
1) When price closes well above the BMP, with good volume, the indicator will move higher.
2) When price closes well above the BMP, with poor volume, the indicator may or may not move higher.
3) When price closes slightly above BMP, with good volume, the indicator will move mildly higher.
4) When price closes slightly above BMP, with poor volume, the indicator may or may not move higher.
5) When price closes well below the BMP, with good volume, the indicator will move lower.
6) When price closes well below the BMP, with poor volume, the indicator may or may not move lower.
7) When price closes slightly below BMP, with good volume, the indicator will move mildly lower.
8) When price closes slightly below BMP, with poor volume, the indicator may or may not move lower.

Similar Indicators / Formulas

Vortex Indicator
Submitted by kaiji over 14 years ago
The Unique Trend Detector
Submitted by chynthia about 14 years ago
TREND INDICATOR WITH CCI
Submitted by sudesh almost 14 years ago
Bressert DSS
Submitted by Anonymous over 13 years ago
Fisher Transform
Submitted by abc555 over 13 years ago

Indicator / Formula

Copy & Paste Friendly
BMP= (H+L)/2;
BullishClose=IIf(C>BMP,BMP,0);
BearishClose=IIf(C<BMP,BMP,0);
NeutralClose=IIf(C==BMP,1,0);
RTT=Cum(BullishClose*V-BearishClose*V);

Plot( RTT, _DEFAULT_NAME(), ParamColor("Color", colorCycle ), ParamStyle("Style")  );
Plot( MA( RTT, 21 ), "MA21TTRPower", colorBlue, styleLine );

0 comments

Leave Comment

Please login here to leave a comment.

Back