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

Stochastic-and-linear for Amibroker (AFL)
btdung
about 13 years ago
Amibroker (AFL)

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

Indicators were used as indicators stockchastic, however the signal to buy, sell better, and without interference.

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji almost 15 years ago
Trending Wave 2 System
Submitted by Dryden over 12 years ago
Price Oscillator
Submitted by ariful_islam about 14 years ago
Stochastic
Submitted by expert about 14 years ago
STOCH RSI CROSSOVER
Submitted by sonia.b over 12 years ago
CCI ZERO CROSS WITH ALERT
Submitted by thanigay2k about 11 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("DungBuiTien-8");
td=MA(HHV(H,30)-C,3);
rtd=MA(HHV(H,30)-LLV(L,30),3);
ttd=MA((td/rtd)*100,2);
Plot(-ttd,"",colorRed,styleLine);
Plot(-MA(MA(ttd,9),3),"",colorBlue,styleLine);
Plot(-MA(MA(MA(ttd,9),3),3),"",colorGreen,styleThick);
Plot(LinearReg(-ttd,30),"",colorBrightGreen,styleThick);
Buy=Cross(LinearReg(-ttd,30),-MA(MA(MA(ttd,9),3),3)) AND -ttd>-MA(MA(MA(ttd,9),3),3);
Cover=Cross(LinearReg(-ttd,30),-MA(MA(MA(ttd,9),3),3));
Sell=LinearReg(-ttd,30)>=Ref(LinearReg(-ttd,30),-1) AND Ref(LinearReg(-ttd,30),-1)<=Ref(LinearReg(-ttd,30),-2);
_SECTION_END();
_SECTION_BEGIN("Name");
GfxSetOverlayMode(0);
GfxSelectFont("Tahoma", Status("pxheight")/8 );
GfxSetTextAlign( 6 );
GfxSetTextColor( ColorHSB( 45, 43, 43 ) );
GfxSetBkMode(0);
GfxTextOut( Name(), Status("pxwidth")/2, Status("pxheight")/12 );
GfxSelectFont("Tahoma", Status("pxheight")/18 );
//GfxTextOut( IndustryID(1), Status("pxwidth")/2, Status("pxheight")/4 );
 
GfxSelectFont("Tahoma", Status("pxheight")/18 );
GfxSelectFont("Tahoma", Status("pxheight")/36 );
GfxTextOut( "indicators by Dung-BuiTien", Status("pxwidth")/2, Status("pxheight")/3 );
_SECTION_END();
 

0 comments

Leave Comment

Please login here to leave a comment.

Back