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

Nj demand and supply for Amibroker (AFL)

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

Hi, friends,
find a brand new indicator.
put it with price and will see amazing result.

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Volatility System
Submitted by kaiji about 14 years ago
NIFTYTIGER'S MAGIC LINES
Submitted by niftytiger over 11 years ago
Zerolag MACD
Submitted by myth.goa over 11 years ago
MACD Prediction
Submitted by EliStern about 13 years ago
MACD MT4/MT5
Submitted by vivek998877 over 11 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("njethva@ymail.com");
r1 = Param( "Fast avg", 2, 2, 200, 1 );
r2 = Param( "Slow avg", 21, 2, 200, 1 );
A = 0;

TrendColor = IIf(OscP(r1,r2)>0,colorLime,colorRed);
Plot( OscP( r1,r2), _DEFAULT_NAME(), TrendColor, ParamStyle("Histogram style", styleThick | styleHistogram | styleNoLabel, maskHistogram ));
Plot(OscP(r1,r2),"",IIf(OscP(r1,r2)<0,colorGreen,colorRed),styleLine | styleThick);
 
Plot(OscP(r1,r2),"",IIf(OscP(r1,r2)>0,colorGreen,colorRed),styleLine | styleThick);

Plot ( A, _DEFAULT_NAME(), ParamColor( "A", colorCycle ),styleLine | styleThick);


Buy=Cross(OscP (r1,r2),0); 
Sell=Cross(0,OscP(r1,r2));

Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);

Short=Sell;
Cover=Buy;

PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorGreen); 
PlotShapes(IIf(Sell, shapeDownArrow, shapeNone),colorRed);


_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back