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 ....
Three track for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
amibroker
Intraday Trading system
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
Interactive Linear Regression Channel
Submitted
by InternetWorm over 13 years ago
*Level Breakout system*
Submitted
by Tinych 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 24 25 26 27 28 29 | //Description //It is useful line Study for intraday treading to decide the strength of a stock. it will divide the stock movement in to three zone. //precises in upper zone indicate bullishness. //precises in middle zone indicate no tread zone(sideways market). //precises in lower zone indicate bearish zone. //Code _SECTION_BEGIN ( "Three Track" ); SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 ) ) )); Plot ( C , "Close" , ParamColor ( "Color" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); NewDay = Day ()!= Ref ( Day (), -1); DH = HHV ( H , NewDay); DL = LLV ( L , NewDay); Plot (DH, "DAY HIGH" , colorBlue , ParamStyle ( "Style" ),0,0,0); Plot (DL, "DAY LOW" , colorRed , ParamStyle ( "Style" ),0,0,0); R1=((DH-DL)*0.33)+DL; R2=((DH-DL)*0.66)+DL; Plot (R1, "FIBO1" , colorYellow , styleDashed ,0,0,0); Plot (R2, "FIBO2" , colorYellow , styleDashed ,0,0,0); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back