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

DEVIATION STANDARD for Amibroker (AFL)
SADAI
about 4 years ago
Amibroker (AFL)

Rating:
0 / 5 (Votes 0)
Tags:

_SECTION_BEGIN(“DEVIATION STANDARD”);

desv_est = sqrt( EMA )^2, 36 ) ) ;

Deviationstd = (C – Ref(C,-1)) / Ref(desv_est,-1);
colorstyle= IIf(Deviationstd>0 AND Deviationstd<1 ,colorGreen,IIf(Deviationstd>1,colorCustom11,IIf(Deviationstd<-1,colorCustom12,colorRed)));

Plot(Deviationstd,“Deviation”,colorstyle,styleHistogram|styleThick,Null,Null,0,0,6);

Plot(1,"",colorGreen,styleLine);
Plot(-1,"",colorRed,styleLine);
Plot(2,"",colorGreen,styleLine);
Plot(-2,"",colorRed,styleLine);

_SECTION_END();

GraphXSpace = 10;

You cannot view the code for the following reasons:
  • The indicator has not yet been approved by the Administrator.

1 comments

1. SADAI

sir, Any problem to display the view of my indicator

Leave Comment

Please login here to leave a comment.

Back