Monday, September 30, 2013

Code

here is the code:
___________________________________________________________
plot Data = close;
declare lower;

input price = close;
input emAverage = 20;
input smAverage = 20;

def ELeader = emAverage;
def SimLag = smAverage;

def lag = 0.00;
def lag2 = 1.00;

#plot ZeroLine = 0;
#ZeroLine.SetDefaultColor(GetColor(1));

plot ESLine = ExpAverage(price, ELeader) - Average(price, SimLag);
ESLine.SetDefaultColor (Color.YELLOW);

ESLine.AssignValueColor (if ESLine[lag] >= ESLine[lag2]
then Color.GREEN else Color.RED);

ESLine.SetLineWeight(2);

Thursday, May 16, 2013

Stop going to people's blogs. They all think they are going to be the next guru and they are all wrong. Only a few do the work necessary to have a decent blog and it takes a lot of work.

 Go to Cobra's site. He works hard.

Bullbear52 isn't bad but Cobra really goes out and does the heavy lifting