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 ....
ccrt system for nsefno 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | _SECTION_BEGIN ( "Auto Target Levels" ); //GraphXSpace=1; //Plot(C,"", colorWhite,styleCandle); // Get values for target levels StartBar= SelectedValue ( BarIndex ()); FinishBar = EndValue ( BarIndex () ); i = startbar; period = FinishBar - StartBar; Lo = LLV ( L ,period); Hi = HHV ( H ,period); Line0 = 0; Line1 = 0; //Target resisten 1 Line2 = 0; //Target resisten 2 Line3 = 0; //Target resisten 3 Line4 = 0; //Target support 1 Line5 = 0; //Target support 2 Line6 = 0; // Target support 3 Line100 = 0; for ( i = startbar; i < finishbar; i++ ) { if ( EndValue ( C )< SelectedValue ( C )) { Line0 = EndValue (Lo); Line100 = EndValue (Hi); Line1 = Line0 + (Line0* Param ( "UpTarget1" , 0.10, 0, 1, 0.01)); Line2 = Line0 + (Line0* Param ( "UpTarget2" , 0.18, 0, 1, 0.01)); Line3 = Line0 + (Line0* Param ( "UpTarget3" , 0.26, 0, 1, 0.01)); Line4 = Line100 - (Line100* Param ( "DownTarget1" , 0.10, 0, 1, 0.01)); Line5 = Line100 - (Line100* Param ( "DownTarget2" , 0.20, 0, 1, 0.01)); Line6 = Line100 - (Line100* Param ( "DownTarget3" , 0.30, 0, 1, 0.01)); } else { Line100 = EndValue (Lo); Line0 = EndValue (Hi); Line1 = Line100 + (Line100* Param ( "UpTarget1" , 0.10, 0, 1, 0.01)); Line2 = Line100 + (Line100* Param ( "UpTarget2" , 0.18, 0, 1, 0.01)); Line3 = Line100 + (Line100* Param ( "UpTarget3" , 0.26, 0, 1, 0.01)); Line4 = Line0 - (Line0* Param ( "DownTarget1" , 0.10, 0, 1, 0.01)); Line5 = Line0 - (Line0* Param ( "DownTarget2" , 0.20, 0, 1, 0.01)); Line6 = Line0 - (Line0* Param ( "DownTarget3" , 0.30, 0, 1, 0.01)); } } Uppercolor= ParamColor ( "Uppercolor" , colorRed ); Midcolor= ParamColor ( "Midcolor" , colorSkyblue ); Lowercolor= ParamColor ( "Lowercolor" , colorYellow ); /* Perhitungan target dimulai dari barindex yang dipilih yaitu dimana yang kita klik nanti. Untuk mempersempit range pengukuran, klik ganda dan set areanya. */ target0= LineArray (startbar, Line0, finishbar, Line0, 0, 1); target100 = LineArray (startbar, Line100, finishbar, Line100, 0, 1); // depth of middle lines n= round ((finishbar-startbar)/2); //Target line. 0=no extend, 1=extend right. 2=extend left. 3=extend both. target1= LineArray ((finishbar-n), Line1, finishbar, Line1, 1, 1); target2= LineArray ((finishbar-n), Line2, finishbar, Line2, 1, 1); target3= LineArray ((finishbar-n), Line3, finishbar, Line3, 1, 1); target4= LineArray ((finishbar-n), Line4, finishbar, Line4, 1, 1); target5= LineArray ((finishbar-n), Line5, finishbar, Line5, 1, 1); target6= LineArray ((finishbar-n), Line6, finishbar, Line6, 1, 1); Plot (target0, "" , colorWhite , styleNoLabel ); Plot (target100, "" , colorRed , styleNoLabel ); Plot (target3, "" , Uppercolor, styleNoLabel ); Plot (target2, "" , Midcolor, styleNoLabel ); Plot (target1, "" , Lowercolor, styleNoLabel ); Plot (target4, "" , Lowercolor, styleDashed | styleNoLabel ); Plot (target5, "" , Midcolor, styleDashed | styleNoLabel ); Plot (target6, "" , Uppercolor, styleDashed | styleNoLabel ); Title = Name () + " - Auto Target Levels " ; _SECTION_END (); _SECTION_BEGIN ( "CCRT TECH" ); /*for dll or rtdata contact anurag 9255191643*/ /*Check ccrt.DLL file is present in Amibroker Plugin Folder*/ /*Disable Antivirus Close Amibroker (check if its running in background) And do Repair from control Panel*/ /*If Below Line "CCRTTECH" Is in Black color then run c++ redistributable 2013(https://www.microsoft.com/en-in/download/details.aspx?id=40784) use this link to download*/ CCRTTECH(); #include "rts.exe" _SECTION_END (); |