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

PVT & EMA for Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker, trend

Price volume Trend & Moving average it helps to stay with trend

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("PVT");
function PVT()
{
	return Cum( Volume * ROC( C, 1 ) * 0.01 );
}

Plot( PVT(), _DEFAULT_NAME(), ParamColor( "Color", ColorCycle ) );
_SECTION_END();

PVTMA = Wilders( PVT(), 20 );
colOpn = IIf( PVTMA > Ref( PVTMA, -1 ), colorGreen, colorRed );
Plot( Wilders( PVT(), 20  ),"",colOpn,styleLine );

PVTMA = Wilders( PVT(), 10 );
colOpn1= IIf( PVTMA > Ref( PVTMA, -1 ), colorBlue, colorRed );
Plot( Wilders( PVT(), 10  ),"",colOpn1,styleLine );

3 comments

1. pankit

how to use it effectively please guide

2. pankit

how to contact sknarayana007?

3. pankit

please help to contact author of this code
my mob 9898345124

Leave Comment

Please login here to leave a comment.

Back