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

Volatility for Amibroker (AFL)
kaiji
almost 15 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, volatility

Simple Volatility indicator based on Standard Deviation. You can find potential breaks when the std cross above its EMA. Also try different periods for breakout and STD.

By Avi ben a – avi111a [at] yahoo.com

Similar Indicators / Formulas

Volatility Stop Indicator (VSTOP)
Submitted by kaiji almost 15 years ago
Volatility system
Submitted by adelnet over 14 years ago
bad tick clean
Submitted by pious243 over 11 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
XTL - AG -4 AmiB
Submitted by ajmal017 almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago

Indicator / Formula

Copy & Paste Friendly
/***************************************/
/*Volatility  written by Avi b*/
/***************************************/
time = Param( "time",21, 1, 100, 1 );
std = StDev( Close, time); 
Plot(std ,"Standard Deviation",32,1);

breaktime = Param( "breaktime",25, 1, 100, 1 );
stdavg = EMA(std,breaktime);
Plot(stdavg ,"Standard Deviation Avarage ",23,1);

Cross1  = Cross(std,stdavg); 
PlotShapes( IIf( Cross1 , shapeDigit1 + shapePositionAbove, shapeNone ), colorGreen ); 

0 comments

Leave Comment

Please login here to leave a comment.

Back