Woodie's CCI Intraday Panel (650).afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:24k
源码类别:

金融证券系统

开发平台:

Others

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