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 ....
Globle pivots, OHLC etc for Amibroker (AFL)
Copy & Paste Friendly
Back
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | _SECTION_BEGIN ( "Price1" ); 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" , colorDefault ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); _SECTION_END (); T_F = ParamList ( "Select" , "Yesterday|2 Days|3 Days|4 Days|5 Days|6 Days|EOD|Weekly|Monthly" ); if (T_F== "Yesterday" ) { H_1 = TimeFrameGetPrice ( "H" , inDaily , -1 ); L_1 = TimeFrameGetPrice ( "L" , inDaily , -1 ); C_1 = TimeFrameGetPrice ( "C" , inDaily , -1 ); } else if (T_F == "2 Days" ) { H_1 = TimeFrameGetPrice ( "H" , inDaily , -2 ); L_1 = TimeFrameGetPrice ( "L" , inDaily , -2 ); C_1 = TimeFrameGetPrice ( "C" , inDaily , -2 ); } else if (T_F == "3 Days" ) { H_1 = TimeFrameGetPrice ( "H" , inDaily , -3 ); L_1 = TimeFrameGetPrice ( "L" , inDaily , -3 ); C_1 = TimeFrameGetPrice ( "C" , inDaily , -3 ); } else if (T_F == "4 Days" ) { H_1 = TimeFrameGetPrice ( "H" , inDaily , -4 ); L_1 = TimeFrameGetPrice ( "L" , inDaily , -4 ); C_1 = TimeFrameGetPrice ( "C" , inDaily , -4 ); } else if (T_F == "5 Days" ) { H_1 = TimeFrameGetPrice ( "H" , inDaily , -5 ); L_1 = TimeFrameGetPrice ( "L" , inDaily , -5 ); C_1 = TimeFrameGetPrice ( "C" , inDaily , -5 ); } else if (T_F == "6 Days" ) { H_1 = TimeFrameGetPrice ( "H" , inDaily , -6 ); L_1 = TimeFrameGetPrice ( "L" , inDaily , -6 ); C_1 = TimeFrameGetPrice ( "C" , inDaily , -6 ); } else if (T_F == "EOD" ) { H_1 = TimeFrameGetPrice ( "H" , inDaily , 0 ); L_1 = TimeFrameGetPrice ( "L" , inDaily , 0 ); C_1 = TimeFrameGetPrice ( "C" , inDaily , 0 ); } else if (T_F == "Weekly" ) { H_1 = TimeFrameGetPrice ( "H" , inWeekly , -1 ); L_1 = TimeFrameGetPrice ( "L" , inWeekly , -1 ); C_1 = TimeFrameGetPrice ( "C" , inWeekly , -1 ); } else if (T_F == "Monthly" ) { H_1 = TimeFrameGetPrice ( "H" , inMonthly , -1 ); L_1 = TimeFrameGetPrice ( "L" , inMonthly , -1 ); C_1 = TimeFrameGetPrice ( "C" , inMonthly , -1 ); } Pivot = (H_1 + L_1 + C_1) / 3; Pvt = ParamToggle ( "Pivot" , "Hide|Show" ,1); if (Pvt==1) { Plot (Pivot, "" , colorGold , styleStaircase | styleDots | styleNoRescale | styleNoLabel ); } Hy = ParamToggle ( "High" , "Hide|Show" ,1); if (Hy==1) { Plot (H_1, "" , colorRed , styleStaircase | styleNoRescale | styleNoLabel ); } Lo = ParamToggle ( "Low" , "Hide|Show" ,1); if (Lo==1) { Plot (L_1, "" , colorGreen , styleStaircase | styleNoRescale | styleNoLabel ); } Cloz= ParamToggle ( "Close" , "Hide|Show" ,1); if (Cloz==1) { Plot (C_1, "" , colorWhite , styleStaircase | styleNoRescale | styleNoLabel ); } //See its Parameter carefully //for unique AFL Codes,kindly visit m a r k e t l o g y.c o m |