Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
4 Day High and Low for Amibroker (AFL)
This formula will draw the highest high and lowest low for the past 4 days.
Similar Indicators / Formulas
Indicator / Formula
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 | _SECTION_BEGIN ( "4hl method" ); Plot ( C , "Close" , ParamColor ( "Color" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); DC= TimeFrameGetPrice ( "C" , inDaily , 0); DC1= TimeFrameGetPrice ( "C" , inDaily , -1); dh= TimeFrameGetPrice ( "H" , inDaily , 0); dh1= TimeFrameGetPrice ( "H" , inDaily , -1); dh2= TimeFrameGetPrice ( "H" , inDaily , -2); dh3= TimeFrameGetPrice ( "H" , inDaily , -3); dh4= TimeFrameGetPrice ( "H" , inDaily , -4); DL= TimeFrameGetPrice ( "L" , inDaily , 0); dl1= TimeFrameGetPrice ( "l" , inDaily , -1); dl2= TimeFrameGetPrice ( "l" , inDaily , -2); dl3= TimeFrameGetPrice ( "l" , inDaily , -3); dl4= TimeFrameGetPrice ( "l" , inDaily , -4); do1= TimeFrameGetPrice ( "O" , inDaily , -1); doo= TimeFrameGetPrice ( "O" , inDaily , 0); Maxh1= Max (dh1,dh2); Maxh2= Max (dh3,dh4); Maxh= Max (Maxh1,Maxh2); Plot (Maxh, "maxh" , colorBrown , styleLine ); Minl1= Min (dl1,dl2); Minl2= Min (dl3,dl4); Minl= Min (Minl1,Minl2); Plot (Minl, "minl" , colorYellow , styleLine ); Buy = Cross ( Close , Maxh); Sell = Cross ( Minl, Close ); PlotShapes ( Sell * shapeDownArrow , colorRed ); PlotShapes ( Buy * shapeUpArrow , colorGreen ); Title = EncodeColor ( colorBlack )+ "excel trade" + " - " + Name () + " - " + EncodeColor ( colorRed )+ Interval (2) + EncodeColor ( colorWhite ) + " - " + Date () + " - " + "\n" + EncodeColor ( colorBlue ) + "Op-" + O + " " + "Hi-" + H + " " + "Lo-" + L + " " + "Cl-" + C + " " + "Vol= " + WriteVal ( V )+ " 4dh= " + WriteVal (Maxh)+ " 4dL= " + WriteVal (Minl); Filter =( Buy OR Sell ) ; NumColumns = 0; AddColumn ( Close , "CMP" , 1.2); AddColumn ( IIf ( Buy , 66, 83 ), "Signal" , formatChar,2,4 ); AddColumn (doo, "open" , 1.2); AddColumn (dH, "HIGH" , 1.2); AddColumn (dL, "low" , 1.2); AddColumn (dC, "close" , 1.2); AddColumn (Maxh, "buy value" , 1.2); AddColumn (Minl, "sell value" , 1.2); _SECTION_END (); |
2 comments
Leave Comment
Please login here to leave a comment.
Back
good system thank you
nice work thanks