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 ....
ICHIMOKU CROSSOVER SCAN for Amibroker (AFL)
Rating:
3 / 5 (Votes 3)
Tags:
amibroker
Simple Ichimoku scan for TL and SL crossover.
Similar Indicators / Formulas
Kavach Of Karna v2
Submitted
by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted
by MarcosEn over 13 years ago
3_6Day GuaiLiLv
Submitted
by motorfly over 13 years ago
Williams Alligator System
Submitted
by durgesh1712 over 13 years ago
*Level Breakout system*
Submitted
by Tinych over 13 years ago
Horizontal Live Priceline Tool
Submitted
by northstar over 13 years ago
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 | //ICHIMOKU CROSSOVER SCAN SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " + WriteVal ( V , 1.0 ) + " {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 )) )); Plot ( C , "Close" , ParamColor ( "Color" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); if ( ParamToggle ( "Tooltip shows" , "All Values|Only Prices" ) ) { ToolTip= StrFormat ( "Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume: " + NumToStr ( V , 1 ), O , H , L , C , SelectedValue ( ROC ( C , 1 ))); } TL = ( HHV ( H , 9 ) + LLV ( L , 9 ) )/2; SL = ( HHV ( H , 26 ) + LLV ( L , 26) )/2; Plot (TL, "TL" , colorPink , styleDashed ); // turning, conversion, or tenkan-sen line Plot (SL, "SL" , colorLightBlue , styleDashed ); // standard, base, or kijun-sen line Buy = Cross (TL,SL) AND ( MA ( Close ,50)) > ( MA ( Close ,100)) AND ( MA ( Close ,100)) > ( MA ( Close ,200)); //Buy = Cross(TL,SL); Sell = Cross (SL,TL); PlotShapes ( IIf ( Buy , shapeUpTriangle , shapeNone ), colorBlue ,0, Low ,Offset=-15); PlotShapes ( IIf ( Sell , shapeDownTriangle , shapeNone ), colorOrange ,0, High ,Offset=-15); |
0 comments
Leave Comment
Please login here to leave a comment.
Back