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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
TD Channel Type 1 for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
TD channel type I.
Screenshots
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | _SECTION_BEGIN ( "TDMA-CHANNEL-1" ); /****************************************************************** * TD Channel I: Short term indicator * TD says that two consecutive closes above the upper channel indicate * a price exhaustion to the upside. * * TD Says that two consecutive closes below the lower channel indicate * a price exhaustion to the downside. * * Channel extremes are less effective if the market is trending. Use * the TDSequential signal or TD Combo signal to determine that trend * has ended. * * Improvements: * Notes: Seems to work best on monthly prices. * Author observation: A close where the open is above the upper channel * tends to indicate a market top. The reverse is applied for a bottom. *******************************************************************/ EnterType = ParamList ( "Security Type" , "Stock,Commodity" ); TDPlotStyle = ParamStyle ( "Plot Style" , styleDashed ); TDGraphColor = ParamColor ( "Color" , colorYellow ); fHighMultiplier = 0.97; fLowMultiplier = 1.03; if ( EnterType == "Stock" ) { fHighMultiplier = 0.91; fLowMultiplier = 1.09; } TDC1lma = MA ( L , 3) * fLowMultiplier; TDC1hma = MA ( H , 3) * fHighMultiplier; Plot ( TDC1lma, "TDC2L" , TDGraphColor, TDPlotStyle| styleNoRescale , Null , Null , 0 ); Plot ( TDC1hma, "TDC2H" , TDGraphColor, TDPlotStyle| styleNoRescale , Null , Null , 0 ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back