| optionplayer333 801 posts
 msg #110618
 - Ignore optionplayer333
 | 1/28/2013 1:22:10 PM 
 hgi arrows> i rarely lose when i use these 3 indicator together
 
 declare upper;
 
 input MALength = 5;
 
 def DM = high - low;
 def Trend = if hlc3 > hlc3[1] then 1 else -1;
 rec CM = DM + if Trend == Trend[1] then CM[1] else DM[1];
 rec VForce = if CM != 0 then Trend * 100 * volume * AbsValue(2 * DM / CM - 1) else VForce[1];
 def KVOsc = ExpAverage(VForce, 34) - ExpAverage(VForce, 55);
 def TriggerLine = Average(KVOsc, MALength);
 
 plot crossingup = Crosses(KVOsc,TriggerLine, CrossingDirection.ABOVE);
 crossingup.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
 plot crossingdown = Crosses(KVOsc,TriggerLine, CrossingDirection.BELOW);
 crossingdown.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
 crossingdown.SetDefaultColor(color.YELLOW);
 crossingup.SetDefaultColor(color.CYAN);
 
 
 insert it in the new box
 
 ttm-squeeze
 
 insert into new  box
 # @new
 # @reference
 #
 # TD Ameritrade IP Company, Inc. (c) 2009-2013
 #
 # Source code isn't available.
 
 declare lower;
 
 input price = CLOSE;
 input length = 20;
 input nK = 1.5;
 input nBB = 2.0;
 input alertLine = 1.0;
 
 plot Histogram = Double.NaN;
 plot VolComp = Double.NaN;
 
 
 
 
 
 |