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

Cross stochastic for Amibroker (AFL)
matant
over 13 years ago
Amibroker (AFL)

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

This trading system is based on the cross from the slow and the fast stochastic with Samuel Monk number series.

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Heikin-Ashi Candles Oscillator for Long term
Submitted by NTA over 11 years ago
Price Oscillator
Submitted by ariful_islam over 13 years ago
ZeroLag RSI with Buy/Sell
Submitted by erecruiters almost 13 years ago
TSI V.2
Submitted by Anonymous over 11 years ago
Trending Wave 2 System
Submitted by Dryden about 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Cross Stochastic");

uptrend= IIf( StochK(17,9) > StochD(17,9,3), 1, 0 );
downtrend=IIf( StochK(17,9)<StochD(17,9,3), 1, 0 );
crossBuy=Cross(StochK(17,9),StochD(17,9,3));
crossSell=Cross(StochD(17,9,3),StochK(17,9));

 Plot( StochD(17,9,3), _DEFAULT_NAME(), colorRed , ParamStyle("Style") );

Plot( StochK(17,9), _DEFAULT_NAME(), colorBlue , ParamStyle("Style") );


Buy =  Ref(crossBuy,-2)  AND  Ref(StochD(9,5,3),-2) <20 AND Ref(uptrend,-1) AND uptrend ;
Sell = crossSell  AND StochD(9,5,3) > 50 ;

Short=Sell;
Cover=Buy;

PlotShapes( IIf(Buy, shapeUpArrow,0) , colorGreen ,0,StochD(17,9,3),-10);
PlotShapes( IIf(Sell, shapeDownArrow,0) , colorRed ,0, StochD(17,9,3),-10);


_SECTION_END();

1 comments

1. sapravi6

Hi
Why it’s bit different from Trading View Stochastic RSI 14, 14, 3, 3
Any suggestions please how to make it similar to that

Leave Comment

Please login here to leave a comment.

Back