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 ....
Sharone System for Amibroker (AFL)
Rating:
4 / 5 (Votes 5)
Tags:
trading system, amibroker, support, resistance
This is good system for day trade
Screenshots
Similar Indicators / Formulas
FHB Advanced Trading System
Submitted
by vishyvishy almost 15 years ago
Grafic & Linear Regression Channel
Submitted
by morgen almost 14 years ago
RAJASWAMY NIFTY CLINIC
Submitted
by rajaswamy almost 14 years ago
SUPPORT AND RESISTANCE WITH FIB
Submitted
by siva almost 15 years ago
Trading System by ISFANDI
Submitted
by sajid over 14 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | _SECTION_BEGIN ( "sheroune" ); Col = IIf ( C > O , colorGreen , colorRed ); Plot ( C , "" ,col, styleBar + styleThick ); _SECTION_END (); _SECTION_BEGIN ( "Support-Resistance" ); SupRes= ParamToggle ( "Sup-Res" , "No|Yes" ,1); SupResA = Param ( "Sup-Res A Period" ,20,0,100,1); SupResB = Param ( "Sup-Res B Period" ,25,0,100,1); Res1 = ParamColor ( "Resistance High" , colorRed ); Res2 = ParamColor ( "Resistance Low" , colorDarkRed ); Sup1 = ParamColor ( "Support High" , colorDarkGreen ); Sup2 = ParamColor ( "Support Low" , colorBrightGreen ); if (SupRes) { MaxGraph = 12; BuyOffSet = SupResA; //Optimize("BuyOffSet",18,15,20,1); SellOffset = BuyOffSet; //Optimize("SellOffset",2,2,14,2); RegLength = 5; //Optimize("RegLength",5, 2,11,2); BuyATRPeriod = 2; //Optimize("BuyATRPeriod",2,2,5,1); SellATRPeriod = BuyATRPeriod; //Optimize("SellATRPeriod",4,2,11,2); ATRMultiplier = 0.5; //Optimize("ATRMultiplier",1,0.7,1.25,.05); SuppA = HHV ( H -ATRMultiplier* ATR (BuyATRPeriod),BuyOffset); /* RED */ RessB = LLV ( L +ATRMultiplier* ATR (SellATRPeriod),SellOffset); /* GREEN */ Plot (SuppA, "" ,sup1, ParamStyle ( "Sup-Res A Style" , styleDashed | styleNoTitle ) ); Plot (RessB, "" ,res2, ParamStyle ( "Sup-Res A Style" , styleDashed | styleNoTitle ) ); nn=SupResB; mmm=100; TYP=( High + Low + 2* Close )/4; CI=(TYP- MA (TYP,14))/(0.015* StDev (TYP,14)); CCCI= EMA (CI,5)+mmm; Hh= HHV ( H ,nn); Ll= LLV ( L ,nn); MM=(Hh+Ll)/2; CCCC= EMA (CCCI*(Hh-Ll)/(2*mmm)+Ll,5); Plot (Hh, "" ,Res1, ParamStyle ( "Sup-Res B Style" , styleThick | styleNoTitle ) ); Plot (Ll, "" ,Sup2, ParamStyle ( "Sup-Res B Style" , styleThick | styleNoTitle ) ) ; } _SECTION_END (); Buy = Cross ( H , Ref (Hh,-1)); Short = Cross ( Ref (Ll,-1), L ); Cover = Buy ; Sell = Short ; PlotShapes ( shapeUpArrow * Buy , colorWhite ); PlotShapes ( shapeDownArrow * Short , colorWhite ); /* **************************************** // -- Done with discovering and plotting pivots ***************************************** */ Title = EncodeColor ( colorWhite )+ "SHEROUNE ka SYSTEM" + " - " + Name () + " - " + EncodeColor ( colorRed )+ Interval (2) + EncodeColor ( colorWhite ) + " - " + Date () + " - " + "\n" + WriteIf ( H > Ref ( H ,-1), EncodeColor ( colorGreen ), EncodeColor ( colorRed ))+ " Hi " + H + "\n" + EncodeColor ( colorWhite )+ "Op " + O + EncodeColor ( colorAqua )+ " Cl : " + C + "\n" + WriteIf ( L < Ref ( L ,-1), EncodeColor ( colorRed ), EncodeColor ( colorGreen ))+ " Lo " + L + "\n" + "\n" + EncodeColor ( colorBrightGreen )+ "Place Reversal for Short at : " +Hh + "\n" + EncodeColor ( colorRed )+ "Place Reversal for Long at : " +Ll ; |
6 comments
Leave Comment
Please login here to leave a comment.
Back
Very good indicator. Thanks a lot..
gr8 work…thx a lot…
very good, but i have my way of translating the B&S triger.
thanks
how can i download this indicator and is this good for binary option? Please help me with downloaden
Look for the “Copy & Paste Friendly” button just above the formula.
very good