Woodie's Daily CCI.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:21k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Woodie's Daily CCI
  4. //  Author/Uploader: Dennis Skoblar 
  5. //  E-mail:          DennisAndLisa@sbcglobal.net
  6. //  Date/Time Added: 2006-02-19 04:27:48
  7. //  Origin:          Woodie's CCi
  8. //  Keywords:        Woodie's CCI
  9. //  Level:           basic
  10. //  Flags:           system,exploration
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=591
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=591
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  Here is Crasher's CCI daily panel. it is a modified Daily CCI Panel with
  17. //  the CCI20, CCI6, and CCI50. It is complete with pattern
  18. //  recognition,backtesting, scanning, and exploration options. The Pattern
  19. //  Recognition helps find the ZLR, HFE, GB100(with a 34ema +/- 15 degree
  20. //  nuance), VT,FAMIR, and Choppy (Chop mode being defined as the CCI bars
  21. //  inbetween the 100's for 10 or more bars. The reset out of chop is when the
  22. //  CCI hooks from extreme at the 200's). . The pattern recognition is located
  23. //  at the top left corner next to "Signal: ".
  24. //
  25. //  1=zlr
  26. //
  27. //  2-famir
  28. //
  29. //  3=vt
  30. //
  31. //  4=gb100
  32. //
  33. //  This version has the Mplay Exit Indicator in it. The MPLAY exit is a CCI
  34. //  hook to the oposite direction followed by another with the price closing in
  35. //  the oposite direction of the trade. I have coded the MPLAY Indicator with
  36. //  the CCI panel. It is a series of green and red circles just below the +200
  37. //  line. The nearest green circle that appears after a pattern (any pattern,
  38. //  not just the coded ones) is the exit for a long position. The nearest red
  39. //  circle is the exit after a short pattern. Ignore all the ones inbetween.
  40. //  The circles appear after every and any occurance of an MPLAY Exit,
  41. //  regardless if a pattern has appeared or not. Just use the nearest
  42. //  applicable circle to exit a pattern entered.
  43. //
  44. //  I also added the EMA angle colors to the 100's. Turquoise= uptrend,
  45. //  Red=downtrend, Yellow=not trending. This code was originally in the cci
  46. //  panel coded by Crasher, I just tweeked it to be displayed in visual format.
  47. //  It is almost identical to woodie's modification to the cci panel, which he
  48. //  uses as a chop inicator as well. If there is a constant color, the trend is
  49. //  in that direction. If the colors are mixed, then there is a chop. The
  50. //  intensity of the trend, as explained by Woodie, is measured by the
  51. //  Sidewinder color. Examples, if the EMA bar on the 100's is turquoise,and
  52. //  the Sidewinder is green, then we are in a strong uptrend. If the EMA bar is
  53. //  red, and the Sidewinder bar is green, we are in a strong downtrend. A
  54. //  constant print of yellow bars is also what woodie defines as "colors",
  55. //  meaning a trendless choppy market.
  56. //
  57. //  Trade at your own risk, please use your own descretion, for educational
  58. //  purposes only.
  59. //
  60. //  -Dennis
  61. //
  62. //------------------------------------------------------------------------------
  63. /////////////////////////////// 
  64. // CCI Woodies Style - Started by Wring 
  65. // Codded/Added by by Kris 
  66. // Added by Dennis and Greg 
  67. // Version: 1.027 
  68. // Last Update: 11/04/2005 
  69. // Additions: 
  70. // timer, EMA angle, LSMA angle, trending indicator 
  71. // Amibroker 4.70 
  72. /////////////////////////////// 
  73. Version(4.70); 
  74. z = CCI(20); 
  75. z6 = CCI(6); 
  76. CCI50_var = CCI(50); 
  77. LSMA25 = LinearReg(C, 25 ); 
  78. EMA34 = EMA(C,34); 
  79. PI = atan(1.00) * 4; 
  80. periods = 30; 
  81. HighHigh = HHV(H, periods); 
  82. LowLow = LLV(L, periods); 
  83. range = 25 / (HighHigh - LowLow) * LowLow; 
  84. TTMperiod = 6; 
  85. Low_ma = EMA(L, TTMperiod); 
  86. High_ma = EMA(H, TTMperiod); 
  87. Low_third = (High_ma - Low_ma) / 3 + Low_ma; 
  88. High_third = 2 * (High_ma - Low_ma) / 3 + Low_ma; 
  89. tempnum = Now( 4 ) - TimeNum(); 
  90. TimeRem = Interval() - ((int(tempnum[BarCount - 1] / 100) * 60) + 
  91. (tempnum[BarCount - 1] - int(tempnum[BarCount - 1] / 100) * 100)); 
  92. if (TimeRem[BarCount - 1] < 0) TimeRem = 0; 
  93. TitleTimeRem = EncodeColor(colorBlueGrey) + "Time Remaining: "; 
  94. MinuteVar = int(TimeRem / 60); 
  95. SecondsVar = int(frac(TimeRem / 60) * 60); 
  96. if (TimeRem[BarCount - 1] > 60) 
  97. TitleTimeRem = TitleTimeRem + EncodeColor(colorWhite) + MinuteVar + ":" 
  98. + WriteIf(SecondsVar > 9, "", "0") + SecondsVar; 
  99. else if (TimeRem[BarCount - 1] > 20) 
  100. TitleTimeRem = TitleTimeRem + EncodeColor(colorYellow) + MinuteVar + ":" 
  101. + WriteIf(SecondsVar > 9, "", "0") + SecondsVar; 
  102. else 
  103. TitleTimeRem = TitleTimeRem + EncodeColor(colorLime) + MinuteVar + ":" + 
  104. WriteIf(SecondsVar > 9, "", "0") + SecondsVar; 
  105. if(SelectedValue(CCI50_var) < 0) 
  106. CCI50Title = EncodeColor(colorRed); 
  107. else 
  108. CCI50Title = EncodeColor(colorLime); 
  109. CCI50Title = CCI50Title + "CCI 50 = " + round(CCI50_var) + ", "; 
  110. stop_range = IIf(O < C, IIf((H - O) < (C - L), C - L, H - O), 
  111. IIf((O - L) < (H - C), H - C, O - L)); 
  112. StopTitle = EncodeColor(colorWhite) + "Stop = " + EncodeColor(colorYellow); 
  113. StopTitle = StopTitle + StrToNum(NumToStr(stop_range, 4.4)); 
  114. x1_EMA34 = 0; 
  115. x2_EMA34 = 1; 
  116. y1_EMA34 = 0; 
  117. y2_EMA34 = (Ref(EMA34, -1) - EMA34) / Avg * range; 
  118. c_EMA34 = sqrt((x2_EMA34 - x1_EMA34)*(x2_EMA34 - x1_EMA34) + (y2_EMA34 - y1_EMA34)*(y2_EMA34 - y1_EMA34)); 
  119. angle_EMA34 = round(180 * acos((x2_EMA34 - x1_EMA34)/c_EMA34) / PI); 
  120. TitleAngleEMA34 = EncodeColor(colorWhite) + "nEMA34 angle = "; 
  121. angle_EMA34 = IIf(y2_EMA34 > 0, - angle_EMA34, angle_EMA34); 
  122. if(SelectedValue(angle_EMA34) >= 25) 
  123. TitleAngleEMA34 = TitleAngleEMA34 + EncodeColor(colorTurquoise); 
  124. else if(SelectedValue(angle_EMA34) <= -25) 
  125. TitleAngleEMA34 = TitleAngleEMA34 + EncodeColor(colorRed); 
  126. else if(SelectedValue(angle_EMA34) >= 15) 
  127. TitleAngleEMA34 = TitleAngleEMA34 + EncodeColor(colorTurquoise); 
  128. else if(SelectedValue(angle_EMA34) <= -15) 
  129. TitleAngleEMA34 = TitleAngleEMA34 + EncodeColor(colorRed); 
  130. else 
  131. TitleAngleEMA34 = TitleAngleEMA34 + EncodeColor(colorYellow); 
  132. TitleAngleEMA34 = TitleAngleEMA34 + angle_EMA34; 
  133. x1_LSMA25 = 0; 
  134. x2_LSMA25 = 1; 
  135. y1_LSMA25 = 0; 
  136. y2_LSMA25 = (Ref(LSMA25, -1) - LSMA25) / Avg * range; 
  137. c_LSMA25 = sqrt((x2_LSMA25 - x1_LSMA25)*(x2_LSMA25 - x1_LSMA25) + (y2_LSMA25 - y1_LSMA25)*(y2_LSMA25 - y1_LSMA25)); 
  138. angle_LSMA25 = round(180 * acos((x2_LSMA25 - x1_LSMA25)/c_LSMA25) / PI); 
  139. TitleAngleLSMA25 = EncodeColor(colorWhite) + "LSMA25 angle = "; 
  140. angle_LSMA25 = IIf(y2_LSMA25 > 0, - angle_LSMA25, angle_LSMA25); 
  141. if(SelectedValue(angle_LSMA25) >= 25) 
  142. TitleAngleLSMA25 = TitleAngleLSMA25 + EncodeColor(colorTurquoise); 
  143. else if(abs(SelectedValue(angle_LSMA25)) <= -25) 
  144. TitleAngleLSMA25 = TitleAngleLSMA25 + EncodeColor(colorRed); 
  145. else if(SelectedValue(angle_LSMA25) >= 15) 
  146. TitleAngleLSMA25 = TitleAngleLSMA25 + EncodeColor(colorTurquoise); 
  147. else if(SelectedValue(angle_LSMA25) <= -15) 
  148. TitleAngleLSMA25 = TitleAngleLSMA25 + EncodeColor(colorRed); 
  149. else 
  150. TitleAngleLSMA25 = TitleAngleLSMA25 + EncodeColor(colorYellow); 
  151. TitleAngleLSMA25 = TitleAngleLSMA25 + angle_LSMA25; 
  152. TitleTrending = WriteIf((abs(angle_EMA34) >= 15) AND (abs(angle_EMA34 + 
  153. angle_LSMA25) >= 50), EncodeColor(colorWhite) + ", SW = " + 
  154. EncodeColor(colorLime) + "TRENDING", 
  155. WriteIf((abs(angle_EMA34) >= 5) AND (((angle_EMA34 >= 0) AND 
  156. (angle_LSMA25 >= 0)) OR ((angle_EMA34 <= 0) AND (angle_LSMA25 <= 0))) 
  157. AND (abs(angle_EMA34 + angle_LSMA25) >= 30), EncodeColor(colorWhite) + 
  158. ", SW = " + EncodeColor(colorYellow) + "NORMAL", 
  159. EncodeColor(colorWhite) + ", SW = " + EncodeColor(colorRed) + "FLAT")); 
  160. SW = IIf((abs(angle_EMA34) >= 15) AND (abs(angle_EMA34 + angle_LSMA25) 
  161. >= 50), IIf(angle_LSMA25 > 0, 2, -2), 
  162. IIf((abs(angle_EMA34) >= 5) AND (((angle_EMA34 >= 0) AND (angle_LSMA25 
  163. >= 0)) OR ((angle_EMA34 <= 0) AND (angle_LSMA25 <= 0))) AND 
  164. (abs(angle_EMA34 + angle_LSMA25) >= 30), IIf(angle_LSMA25 > 0, 1, -1), 0)); 
  165. // Colour the bars for Woodies Trend Following 
  166. Plusbars = BarsSince(z < 0); 
  167. Minusbars = BarsSince(z > 0); 
  168. TrendBarCount = 6; 
  169. Color[0] = colorDefault; 
  170. Trend[0] = 0; 
  171. TTMColor[0] = colorDefault; 
  172. for( i = 1; i < BarCount; i++ ) 
  173. if (C[i] > High_third[i]) 
  174. TTMColor[i] = colorDarkGreen; 
  175. else if (C[i] < Low_third[i]) 
  176. TTMColor[i] = colorDarkRed; 
  177. else 
  178. TTMColor[i] = TTMColor[i - 1]; 
  179. if (Plusbars[i] >= TrendBarCount) 
  180. Trend[i] = 1; 
  181. else if (Minusbars[i] >= TrendBarCount) 
  182. Trend[i] = -1; 
  183. else 
  184. Trend[i] = Trend[i - 1]; 
  185. if (Trend[i] == 1) 
  186. if (Minusbars[i] == TrendBarCount - 1) 
  187. Color[i] = colorYellow; 
  188. else if (z[i] < 0) 
  189. Color[i] = colorLightGrey; 
  190. else 
  191. Color[i] = colorLime; 
  192. else if (Trend[i] == -1) 
  193. if (Plusbars[i] == TrendBarCount - 1) 
  194. Color[i] = colorYellow; 
  195. else if (z[i] >= 0) 
  196. Color[i] = colorLightGrey; 
  197. else 
  198. Color[i] = colorRed; 
  199. else 
  200. Color[i] = colorDefault; 
  201. // CCI Line 
  202. Plot(z,"CCI 20", colorSkyblue, styleLine | styleThick); 
  203. // Turbo CCI 
  204. Plot(z6,"CCI 6", colorDarkYellow, styleLine | styleNoLabel); 
  205. // zero line 25lsma 
  206. Plot(0,"", IIf(C > LSMA25,colorGreen,IIf(C<LSMA25,colorRed,colorTeal)), 
  207. styleDots | styleNoLine | styleThick | styleNoLabel); 
  208. // CCI Histogram 
  209. Plot(z,"", Color, styleHistogram | styleNoLabel); 
  210. // CCI 50 
  211. Plot(CCI50_var,"CCI 50",colorPink, styleLine| styleNoLabel); 
  212. // Set up color for the 100s, green if 34ema above red if below 
  213. Color = IIf(C > EMA34, colorGreen, 
  214. IIf(C == EMA34, colorTeal, colorRed)); 
  215. //Set Color for the SW 
  216. ColorSW = IIf(abs(SW) == 2, colorGreen, 
  217. IIf(abs(SW) == 1, colorYellow, colorRed)); 
  218. // Plot the 100s 
  219. //Plot(100,"",Color,styleDashed|styleNoLabel); 
  220. //Plot(-100,"",Color,styleDashed|styleNoLabel); 
  221. ColorANGLE_EMA = IIf(angle_EMA34 >=15, colorTurquoise, 
  222. IIf(angle_EMA34 <=-15, colorRed, colorYellow)); 
  223. //ColorANGLE_EMA1 = IIf(angle_EMA34 >=25, colorTurquoise, 
  224. // IIf(angle_EMA34 <=-25, colorRed, colorBlack)); 
  225. //ColorANGLE_EMA = IIf(abs(angle_EMA34) >=25, colorGreen, 
  226. // IIf(abs(angle_EMA34) >=15, colorYellow, colorRed)); 
  227. Plot(100,"", ColorANGLE_EMA , styleDashed | styleThick | styleNoLabel); 
  228. Plot(-100,"", ColorANGLE_EMA , styleDashed | styleThick | styleNoLabel); 
  229. // Plot the 50s 
  230. Plot(50,"", colorDarkGrey, styleDashed | styleNoLabel); 
  231. Plot(-50,"", colorDarkGrey , styleDashed | styleNoLabel); 
  232. //Plot(50,"", TTMColor, styleDots | styleNoLine | styleNoLabel); 
  233. //Plot(-50,"", TTMColor, styleDots | styleNoLine | styleNoLabel); 
  234. // Plot the 200s 
  235. Plot(200,"", ColorSW, styleThick | styleNoLabel); 
  236. Plot(-200,"", ColorSW, styleThick | styleNoLabel); 
  237. // Plot the grids 
  238. PlotGrid(0); 
  239. PlotGrid(50); 
  240. PlotGrid(-50); 
  241. PlotGrid(-100); 
  242. PlotGrid(100); 
  243. PlotGrid(-200); 
  244. PlotGrid(200); 
  245. // choppy 
  246. A= (HHV(z,10)<=100 AND LLV(z,10)>=-100); 
  247. B= (Ref(z,-1)>200 AND z<200) OR (Ref(z,-1)<-200 AND z>-200); 
  248. bs_a=BarsSince(A); 
  249. bs_b=BarsSince(B); 
  250. bars = IIf( bs_A < Bs_B, bs_a, 0); 
  251. // ZLR Long 
  252. uptrend_a=BarsSince(z<0); 
  253. uptrend_b=BarsSince(z>0); 
  254. Linex_long=Ref(z,-1)>100 AND z<100; 
  255. barsfromline_long=BarsSince(Linex_long); 
  256. CCIhook_long=z>Ref(z,-1) AND Ref(z,-1)>-100 AND Ref(z,-1)<Ref(z,-2) AND Ref(z,-2)>-100 AND z>0; 
  257. SW_trendinglong= sw==1 OR sw==2; 
  258. zlrlong= SW_trendinglong AND z<100 AND barsfromline_long<10 AND CCIhook_long AND (uptrend_a>=6 AND z>-100 OR 
  259. (uptrend_b<6 AND LLV(z,uptrend_b)>-100 AND z>-100 AND (Ref(uptrend_a,-6)>=6 AND z>-100 OR Ref(uptrend_a,-5)>=6 AND z>-100 OR Ref(uptrend_a,-4)>=6 AND z>-100 OR Ref(uptrend_a,-3)>=6 AND z>-100 OR 
  260. Ref(uptrend_a,-2)>=6 AND z>-100 OR Ref(uptrend_a,-1)>=6 AND z>-100))); 
  261. PlotShapes(IIf(zlrlong,shapeDigit1,shapeNone),colorLime,0,0,-15); 
  262. // ZLR Short 
  263. downtrend_a=BarsSince(z>0); 
  264. downtrend_b=BarsSince(z<0); 
  265. Linex_short=Ref(z,-1)<=-100 AND z>=-100; 
  266. barsfromline_short=BarsSince(Linex_short); 
  267. CCIhook_short=z<Ref(z,-1) AND Ref(z,-1)<100 AND Ref(z,-1)>Ref(z,-2) AND Ref(z,-2)<100 AND z<0; 
  268. SW_trendingshort= sw==-1 OR sw==-2; 
  269. zlrshort= SW_trendingshort AND z>-100 AND barsfromline_short<10 AND CCIhook_short AND (downtrend_a>=6 AND z<100 OR 
  270. (downtrend_b<6 AND HHV(z,downtrend_b)<100 AND z<100 AND (Ref(downtrend_a,-6)>=6 AND z<100 OR Ref(downtrend_a,-5)>=6 AND z<100 OR Ref(downtrend_a,-4)>=6 AND z<100 OR 
  271. Ref(downtrend_a,-3)>=6 AND z<100 OR Ref(downtrend_a,-2)>=6 AND z<100 OR Ref(downtrend_a,-1)>=6 AND z<100))); 
  272. PlotShapes(IIf(zlrshort,shapeDigit1+ shapePositionAbove,shapeNone),colorRed,0,0,-15); 
  273. // Famir Short 
  274. Famir_downtrend_a=BarsSince(z<0); 
  275. Famir_downtrend_b=BarsSince(z>0); 
  276. FamirLinex_short=Ref(z,-1)>=100 AND z<100; 
  277. Famir_barsfromline_short=BarsSince(FamirLinex_short); 
  278. Famir_pivotshort= (Ref(z,-2)<Ref(z,-1)AND Ref(z,-1)<=55 AND Ref(z,-2)<=55) OR (Ref(z,-3)<Ref(z,-1)AND Ref(z,-1)<=55 AND Ref(z,-2)<=55 AND Ref(z,-3)<=55) 
  279. OR (Ref(z,-4)<Ref(z,-1) AND Ref(z,-1)<=55 AND Ref(z,-2)<=55 AND Ref(z,-3)<=55); 
  280. Famirhook_short=Famir_pivotshort AND z<Ref(LLV(z,Famir_barsfromline_short),-1) AND (z>=-55 AND z<=55) AND C<Lsma25; 
  281. Famirshort= Famir_barsfromline_short<10 AND Famirhook_short AND (Famir_downtrend_a>=6 OR 
  282. (Famir_downtrend_b<6 AND (Ref(Famir_downtrend_a,-6)>=6 OR Ref(Famir_downtrend_a,-5)>=6 OR Ref(Famir_downtrend_a,-4)>=6 OR 
  283. Ref(Famir_downtrend_a,-3)>=6 OR Ref(Famir_downtrend_a,-2)>=6 OR Ref(Famir_downtrend_a,-1)>=6))); 
  284. PlotShapes(IIf(famirShort,shapeDigit2+ shapePositionAbove,shapeNone),colorRed,0,0,-15); 
  285. // Famir Long 
  286. Famir_uptrend_a=BarsSince(z<0); 
  287. Famir_uptrend_b=BarsSince(z>0); 
  288. FamirLinex_long=Ref(z,-1)<=-100 AND z>-100; 
  289. Famir_barsfromline_long=BarsSince(FamirLinex_long); 
  290. Famir_pivotlong= (Ref(z,-2)>Ref(z,-1)AND Ref(z,-1)>=-55 AND Ref(z,-2)>=-55) OR (Ref(z,-3)>Ref(z,-1) AND Ref(z,-1)>=-55 AND Ref(z,-2)>=-55 AND Ref(z,-3)>=-55) 
  291. OR (Ref(z,-4)>Ref(z,-1) AND Ref(z,-1)>=-55 AND Ref(z,-2)>=-55 AND Ref(z,-3)>=-55); 
  292. Famirhook_long=Famir_pivotlong AND z>Ref(HHV(z,Famir_barsfromline_long),-1) AND (z>=-55 AND z<=55) AND C>Lsma25; 
  293. Famirlong= Famir_barsfromline_long<10 AND Famirhook_long AND (Famir_uptrend_a<6 OR 
  294. (Famir_uptrend_b>=6 AND(Ref(Famir_uptrend_a,-6)<6 OR Ref(Famir_uptrend_a,-5)<6 OR Ref(Famir_uptrend_a,-4)<6 OR Ref(Famir_uptrend_a,-3)<6 OR 
  295. Ref(Famir_uptrend_a,-3)<6 OR Ref(Famir_uptrend_a,-2)<6 OR Ref(Famir_uptrend_a,-1)<6))); 
  296. PlotShapes(IIf(famirlong,shapeDigit2,shapeNone),colorLime,0,0,-15); 
  297. // HFE 
  298. HFEshort=(Ref(z,-1)>200 AND z<200); 
  299. HFElong=(Ref(z,-1)<-200 AND z>-200); 
  300. HFE= (Ref(z,-1)>200 AND z<200) OR (Ref(z,-1)<-200 AND z>-200); 
  301. PlotShapes(IIf(Ref(z,-1)>200 AND z<200,shapeDownTriangle,shapeNone),IIf(Ref(z,-1)>200 AND z<200,colorYellow,shapeNone),0,200,-20); 
  302. PlotShapes(IIf(Ref(z,-1)<-200 AND z>-200,shapeUpTriangle,shapeNone),IIf(Ref(z,-1)<-200 AND z>-200,colorYellow,shapeNone),0,-200,-20); 
  303. // VT Long 
  304. vtLinex_long=Ref(z,-1)<=-200 AND z>-200; 
  305. vt_barsfromline_long=BarsSince(vtLinex_long); 
  306. vtlong_A = z<-200; 
  307. vtlong_B = Ref(z,-1)<=Ref(z,-2) OR 
  308. Ref(z,-2)<=Ref(z,-3) OR 
  309. Ref(z,-3)<=Ref(z,-4) OR 
  310. Ref(z,-4)<=Ref(z,-5) OR 
  311. Ref(z,-5)<=Ref(z,-6) OR 
  312. Ref(z,-6)<=Ref(z,-7) OR 
  313. Ref(z,-7)<=Ref(z,-8); 
  314. vtlong_bs_A = BarsSince(vtlong_A); 
  315. vtlong_bs_B = BarsSince(vtlong_b); 
  316. Vtlong_bars = vtlong_bs_A>=5 AND vtlong_bs_B<=0; 
  317. vt_pivotlong= Vtlong_bars; 
  318. swinghibars=BarsSince(z>Ref(HHV(z,vt_barsfromline_long),-1)); 
  319. vthook_long= vt_pivotlong AND z>Ref(HHV(z,vt_barsfromline_long),-1); 
  320. vtlong= vt_barsfromline_long<=11 AND (Ref(HHV(z,vt_barsfromline_long),-1)<0 OR HHV(z,vt_barsfromline_long)<=0) AND vthook_long AND C>Lsma25 AND Ref(swinghibars>=2,-1) AND z>-100; 
  321. PlotShapes(IIf(vtlong,shapeDigit3,shapeNone),colorLime,0,Min(z,0),-45); 
  322. // VT Short 
  323. vtLinex_short=Ref(z,-1)>=200 AND z<200; 
  324. vt_barsfromline_short=BarsSince(vtLinex_short); 
  325. vtshort_A = z>200 ; 
  326. vtshort_B =Ref(z,-1)>=Ref(z,-2) OR 
  327. Ref(z,-2)>=Ref(z,-3) OR 
  328. Ref(z,-3)>=Ref(z,-4) OR 
  329. Ref(z,-4)>=Ref(z,-5) OR 
  330. Ref(z,-5)>=Ref(z,-6) OR 
  331. Ref(z,-6)>=Ref(z,-7) OR 
  332. Ref(z,-7)>=Ref(z,-8); 
  333. vtshort_bs_A = BarsSince(vtshort_A); 
  334. vtshort_bs_B = BarsSince(vtshort_b); 
  335. Vtshort_bars = vtshort_bs_A>=5 AND vtshort_bs_B<=0; 
  336. vt_pivotshort= Vtshort_bars; 
  337. swinglowbars= BarsSince(z<Ref(LLV(z,vt_barsfromline_short),-1)); 
  338. vthook_short= vt_pivotshort AND z<Ref(LLV(z,vt_barsfromline_short),-1); 
  339. vtshort= vt_barsfromline_short<=11 AND (Ref(LLV(z,vt_barsfromline_short),-1)>0 OR LLV(z,vt_barsfromline_short)>0) AND vthook_short AND C<Lsma25 AND Ref(swinglowbars>=2,-1) AND z<100; 
  340. PlotShapes(IIf(vtshort,shapeDigit3+ shapePositionAbove,shapeNone),colorRed,0,Max(z,0),-45); 
  341. // GB 100 Long 
  342. uptrend_a=BarsSince(z<0); 
  343. uptrend_b=BarsSince(z>0); 
  344. Linex_longGB=Ref(z,-1)>100 AND z<100; 
  345. barsfromline_longGB=BarsSince(Linex_long); 
  346. CCIhook_longGB= Ref(z,-1)<-100 AND z>-100; 
  347. GB100long= barsfromline_longGB<20 AND angle_EMA34>=15 AND CCIhook_longGB AND (uptrend_b<6 AND(Ref(uptrend_a,-6)>=6 OR Ref(uptrend_a,-5)>=6 OR Ref(uptrend_a,-4)>=6 OR Ref(uptrend_a,-3)>=6 OR 
  348. Ref(uptrend_a,-2)>=6 OR Ref(uptrend_a,-1)>=6)); 
  349. PlotShapes(IIf(GB100long,shapeDigit4,shapeNone),colorLime,0,0,-60); 
  350. // GB100 Short 
  351. downtrend_a=BarsSince(z>0); 
  352. downtrend_b=BarsSince(z<0); 
  353. Linex_shortGB=Ref(z,-1)<-100 AND z>-100; 
  354. barsfromline_shortGB=BarsSince(Linex_short); 
  355. CCIhook_shortGB=Ref(z,-1)>100 AND z<100; 
  356. GB100short= barsfromline_shortGB<20 AND angle_EMA34<=-15 AND CCIhook_shortGB AND 
  357. (downtrend_b<6 AND (Ref(downtrend_a,-6)>=6 OR Ref(downtrend_a,-5)>=6 OR Ref(downtrend_a,-4)>=6 OR 
  358. Ref(downtrend_a,-3)>=6 OR Ref(downtrend_a,-2)>=6 OR Ref(downtrend_a,-1)>=6)); 
  359. PlotShapes(IIf(GB100short,shapeDigit4+ shapePositionAbove,shapeNone),colorRed,0,0,-60); 
  360. // Columns for exploration 
  361. Filter =(zlrlong OR famirlong OR Vtlong OR gb100long OR hfe OR zlrshort OR famirshort OR vtshort OR gb100short OR (A OR bars)) AND 1 ; 
  362. Buy = (zlrlong OR famirlong OR Vtlong OR gb100long);// AND MarketHours; 
  363. Sell= (z<Ref(z,-1) AND Ref(z,-1)<Ref(z,-2) AND C<O);// OR MArketClose; ; 
  364. Short = (zlrshort OR famirshort OR Vtshort OR gb100short); //AND MarketHours; 
  365. Cover = (z>Ref(z,-1) AND Ref(z,-1)>Ref(z,-2) AND C>O);// OR MArketClose; 
  366. AddColumn( IIf(zlrlong,1,IIf(zlrshort,-1,0)) ,"ZLR",1.0,colorWhite,IIf(zlrlong,colorGreen,IIf(zlrshort,colorRed,colorBlack))); 
  367. AddColumn(IIf(famirlong,1,IIf(famirShort,-1,0)),"Famir",1.0,colorWhite,IIf(famirlong,colorGreen,IIf(famirShort,colorRed,colorBlack))); 
  368. AddColumn(IIf(vtlong,1,IIf(vtShort,-1,0)),"Vegas",1.0,colorWhite,IIf(vtlong,colorGreen,IIf(vtShort,colorRed,colorBlack))); 
  369. AddColumn(IIf(gb100long,1,IIf(gb100Short,-1,0)),"GB100",1.0,colorWhite,IIf(gb100long,colorGreen,IIf(gb100Short,colorRed,colorBlack))); 
  370. AddColumn(IIf(hfelong,1,IIf(hfeshort,-1,0)),"HFE",1.0,colorWhite,IIf(hfelong,colorGreen,IIf(hfeshort,colorRed,colorBlack))); 
  371. AddColumn(IIf(A OR bars,1,IIf(A OR bars,-1,0)),"Choppy",1.0,colorWhite,IIf(A OR bars,colorDarkYellow,IIf(A OR bars,colorDarkYellow,colorBlack))); 
  372. //Plot Sell Arrows 
  373. //Sell1=ExRem(Sell,Buy); 
  374. //Cover1=ExRem(Cover,Short); 
  375. //PlotShapes(IIf(Sell1,shapeDownArrow,shapeNone),colorLime,0,200,10); 
  376. //PlotShapes(IIf(Cover1,shapeDownArrow,shapeNone),colorRed,0,200,10); 
  377. //Signal Title 
  378. Signaltitle= WriteIf(zlrlong,EncodeColor(colorYellow) + "ZLR ", 
  379. WriteIf(zlrshort,EncodeColor(colorYellow) + "ZLR ",WriteIf(Famirshort,EncodeColor(colorYellow) + "FAMIR ", 
  380. WriteIf(Famirlong,EncodeColor(colorYellow) + "FAMIR ",WriteIf(HFE,EncodeColor(colorYellow) + "HFE ",WriteIf(VTlong,EncodeColor(colorYellow) + "VT ", 
  381. WriteIf(VTshort,EncodeColor(colorYellow) + "VT ",WriteIf(GB100long,EncodeColor(colorYellow) + "GB100 ", 
  382. WriteIf(Gb100short,EncodeColor(colorYellow) + "GB100 "," "))))))))); 
  383. //Choppy Title 
  384. ChoppyTitle= WriteIf(A,EncodeColor(colorYellow) + "CHOPPY",WriteIf(bars,EncodeColor(colorYellow) + "CHOPPY","")); 
  385. //Exit Title 
  386. //Exittitle=WriteIf(Sell1,EncodeColor(colorLime) + "MLAY EXIT LONG",WriteIf(Cover1,EncodeColor(colorRed) + "MPLAY EXIT SHORT","")); 
  387. //Title 
  388. Title = "" + Name() + ", " + Interval(2) + ", " + Date() + "n" + 
  389. EncodeColor(colorSkyblue) + "CCI 20 = " + round(z) + " " + EncodeColor(colorDarkYellow) + "CCI 6 = " + round(z6)+ " " + EncodeColor(colorPink) + "CCI 50 = "+ round(CCI50_var) + 
  390. EncodeColor(colorWhite) + //", " + EncodeColor(colorLightOrange) + 
  391. //"CCI 6 = " + round(z6) + EncodeColor(colorWhite) + ", " +
  392. TitleTimeRem + EncodeColor(colorWhite) + 
  393. TitleAngleEMA34 + EncodeColor(colorWhite) + ", " + TitleAngleLSMA25 + 
  394. TitleTrending + "n" + EncodeColor(colorWhite)+"Signal = "+Signaltitle + ChoppyTitle ;// + " "+Exittitle; 
  395. //Mplay Exit 
  396. MplayExitLong= z<Ref(z,-1) AND Ref(z,-1)<Ref(z,-2) AND C<O; 
  397. MplayExitShort= z>Ref(z,-1) AND Ref(z,-1)>Ref(z,-2) AND C>O; 
  398. PlotShapes(IIf(MplayExitLong,shapeSmallCircle,shapeNone),colorGreen,0,200,-10); 
  399. PlotShapes(IIf(MplayExitShort,shapeSmallCircle,shapeNone),colorRed,0,200,-10);