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 ....
NEERU KALA ENTY 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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | _SECTION_BEGIN ( "Price" ); 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 () ); _SECTION_END (); ( "Advanced NEERU KALA TRADING SYSTEM" ); //Look at the opening price for the stock/futures/commodities/currency. //There are various scenarios that can occur"); //Scenario 1 //Open price is between Buy 1 AND Sell 1 // for Long // Wait for the price to go below Buy 1 AND then when it moves back above Buy 1, Buy. Stoploss will be when price moves below EXIT SL. Target1 - T 1, Target2 T 2, Target3 - Sell 1 // for Short Sell // Wait for the price to go above Sell 1 AND then when the price moves back below Sell 1, Sell. Stoploss will be when price moves above Buy NEXT. Target1 - TARGET 1, Target2 - TARGET 2, Target3- Buy 1 //Scenario 2 //Open price is between Sell 1 AND Buy NEXT //for Long // When price moves above Buy NEXT , Buy. Stoploss when price goes below Sell 1. Target 1 - TGT, Target 2 - TGT 2 //for Short Sell //When the price goes below Sell 1, Sell. Stopless when prices moves above Buy NEXT. Target1 - TARGET 1, Target2 - TARGET 2, Target3- Buy 1 //Scenario 3 //Open price is between Buy 1 AND EXIT SL // for Long // When price moves above Buy 1, Buy. Stoploss when price moves below EXIT SL. Target1 - TARGET 1, Target2 - TARGET 2, Target3 - Buy 1 // for Short Sell // When the price goes below EXIT SL, Sell. Stoploss when price moves above Buy 1. Target 1 - TGT, Target 2 - TGT 2 //Scenario 4 //Open price is Outside the Buy EXIT AND EXIT SL // Wait for the prices to come in range AND trade accordingly. _SECTION_END (); _SECTION_BEGIN ( "Fibo for all bars" ); TimeFrameSet ( inDaily ); DH= Ref ( H ,-1); DL= Ref ( L ,-1); DC= Ref ( C ,-1); pd = ( O + DH+ DL + DC )/4; sd1 = (2*pd)-DH; sd2 = pd -(DH - DL); sd3 = Sd1 - (DH-DL); rd1 = (2*pd)-DL; rd2 = pd +(DH -DL); rd3 = rd1 +(DH-DL); H4 = (dH - dL) * 1.1 / 2 + dC; H3 = (dH - dL) * 1.1 / 4 + dC; h2 = (dH - dL) * 1.1 / 6 + dC; H1 = (dH - dL) * 1.1 / 12 + dC; L1 = dC - (dH - dL) * 1.1 / 12; L2 = dC - (dH - dL) * 1.1 / 6; L3 = dC - (dH - dL) * 1.1 / 4; L4 = dC - (dH - dL) * 1.1 / 2 ; //Plot (pd,"Pivot",colorBlue,styleDots); //Plot (rd1," R1 ",35,styleDots); //Plot (rd2," R2 ",35,styleDots); //Plot (rd3," R3 ",35,styleDots); //Plot (sd1," S1 ",4,styleDots); //Plot (Sd2," S2 ",4,styleDots); //Plot (Sd3," S3 ",4,8+16); /* style = IIf(ParamList("Chart style", "styleCandle|styleBar")=="styleCandle",64,128+4); Plot (C,Date ()+" close",1,style); //ENABLE THIS TO HAVE CANDLES AS WELL */ TimeFrameRestore (); tgt_up = H4*5/1000 + H4; tgt_up2 = H4*10/1000 + H4; tgt_dn = L4-L4*5/1000; tgt_dn2 = L4-L4*10/1000; Title = EncodeColor ( colorWhite )+ "NEERU TARGET TRADING SYSTEM" + " - " + Name () + " - " + EncodeColor ( colorRed )+ Interval (2) + EncodeColor ( colorWhite ) + " - " + Date () + " - " //- writeIf(Col_action==colorGreen, EncodeColor(colorGreen)+"stay LONG","")+ WriteIf(Col_action==colorRed, EncodeColor(colorRed)+"stay SHORT","")+ WriteIf(Col_action==colorBlack, EncodeColor(colorYellow)+"No Trend","")+"\n" + "Vol= " + WriteVal ( V ) + WriteIf ( V > MA ( V ,26) , EncodeColor ( colorGreen )+ " UP " + ( V / MA ( V ,26))*100 + " %" , EncodeColor ( colorRed )+ " DOWN " + ( V / MA ( V ,26))*100 + " %" ) + EncodeColor ( colorGreen )+ "\n BUY NEXT ABOVE : " + EncodeColor ( colorGreen )+H4+ EncodeColor ( colorGreen )+ " tgt : " + EncodeColor ( colorBlue )+tgt_up + EncodeColor ( colorGreen )+ " tgt2 : " + EncodeColor ( colorBlue )+tgt_up2 + EncodeColor ( colorGreen )+ "\n SELL 1 : " + EncodeColor ( colorRed )+H3 + EncodeColor ( colorGreen )+ "\n T 2 : " + EncodeColor ( colorBlue )+H2 + EncodeColor ( colorGreen )+ "\n T 1 : " + EncodeColor ( colorBlue )+H1+ EncodeColor ( colorGreen )+ "` Hi: " + EncodeColor ( colorBlue )+ H + EncodeColor ( colorBlue )+ "\n MID : " + EncodeColor ( colorDarkRed )+pd + EncodeColor ( colorBlack )+ "` Op: " + EncodeColor ( colorGreen )+ O + EncodeColor ( colorAqua )+ "Cl: " + EncodeColor ( colorBrightGreen )+ C + EncodeColor ( colorRed )+ "\n TARGET 2 : " + EncodeColor ( colorBlue )+L1+ EncodeColor ( colorRed )+ "` Lo: " + EncodeColor ( colorBlue )+ L + EncodeColor ( colorRed )+ "\n TARGET 1: " + EncodeColor ( colorBlue )+L2 + EncodeColor ( colorRed )+ "\n BUY 1ABOVE SL EXIT : " + EncodeColor ( colorGreen )+L3 + EncodeColor ( colorRed )+ "\n EXIT SL BUY 1 BOTH: " + EncodeColor ( colorRed )+L4+ EncodeColor ( colorRed )+ " tgt : " + EncodeColor ( colorBlue )+tgt_dn + EncodeColor ( colorRed )+ " tgt2 : " + EncodeColor ( colorBlue )+tgt_dn2 + "\n" ; _SECTION_END (); _SECTION_BEGIN ( "9864066262" ); GfxSetOverlayMode (1); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/12 ); GfxSetTextAlign ( 6); // center alignment GfxSetTextColor ( ColorHSB ( 20, 23, 23) ); GfxSetBkMode (0); // transparent GfxTextOut ( Name (), Status ( "pxwidth" )/2, Status ( "pxheight" )/5 ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/12); GfxTextOut ( IndustryID (1), Status ( "pxwidth" )/2, Status ( "pxheight" )/8 ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/14 ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/18 ); GfxTextOut ( " Advanced NEERU KALA TRADING SYSTEM ", Status(" pxwidth ")/2, Status(" pxheight ")/2 ); GfxSelectFont(" Tahoma ", Status(" pxheight ")/5 ); GfxSelectFont(" Tahoma ", Status(" pxheight ")/40 ); GfxTextOut( " CALL- 9864066262 http: //ncdexcommodity.blogspot.in/ ", Status(" pxwidth ")/2, Status(" pxheight ")/3 ); GfxSelectFont(" Tahoma ", Status(" pxheight ")/24 ); GfxSelectFont(" Tahoma ", Status(" pxheight ")/30 ); GfxTextOut ( " COST :-RS 111111\=ONE TIME ", Status(" pxwidth ")/3.5, Status(" pxheight")/1.75 ); _SECTION_END (); |