Jump to content

leospartain2

Members
  • Posts

    39
  • Joined

  • Last visited

Posts posted by leospartain2

  1. CCI STUDIESdeclare lower;input length05 = 5;input length20 = 20;input length50 = 50;input over_sold = -100;input over_bought = 100;def price = (high + low + close);def linDev05 = lindev(price, length05);def linDev20 = lindev(price, length20);def linDev50 = lindev(price, length50);plot CCI05 = if linDev05 == 0 then 0 else (price - Average(price, length05)) / linDev05 / 0.015;plot CCI20 = if linDev20 == 0 then 0 else (price - Average(price, length20)) / linDev20 / 0.015;plot CCI50 = if linDev50 == 0 then 0 else (price - Average(price, length50)) / linDev50 / 0.015;plot OverBought = over_bought;plot ZeroLine = 0;plot OverSold = over_sold;CCI05.SetDefaultColor(Color.MAGENTA);CCI20.SetDefaultColor(Color.YELLOW);CCI50.SetDefaultColor(Color.CYAN);Overbought.SetDefaultColor(GetColor(5));ZeroLine.SetDefaultColor(GetColor(5));Oversold.SetDefaultColor(GetColor(5));
  2. Saw this on bigmike..

     

    They started out as 144 and 169, yes., but where modified to a 156 period ema bollinger band with .08 st dev. That was done to avoid the MA crossovers and maintain a more uniformly defined width for the tunnel. The bands that are very difficult to see are lines plotted 89, 144, 233, and 377 ticks from the midpoint of the tunnel.

     

    The "waveness" Im assuming was/is elliot wave? For us that was part of discretion...sort of like a seasoned guy not needing a horn to sound at a 50% retrace...some things are better assimilated by experience in to discretion.

     

    The fast ma is a 12 period filter.

     

    I do not know this lady Jody from the girl next door. But here is the thing. If she is who she claims and developed that independent of anyone else's input it confirms the value of the work being done by my group. If somehow there is borrowed intellectual capital...going either way...that also confirms the nature of the work being done.

     

    So I'd say we are onto a worth while secondary project.

×
×
  • Create New...