Traders Laboratory - View Single Post - Screaming Fast Moving Average
View Single Post
  #22 (permalink)  
Old 02-26-2008, 12:02 PM
lizmerrill lizmerrill is offline
lizmerrill has no status.

 
Join Date: Oct 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Screaming Fast Moving Average, CHEAT HERE

re your code for "screaming fast ma's" with hull moving average: your code below
does not have an error, but can "cheat",

Value1 = jtHMA(price, length);

Plot1(Value1, "jtHMA");

If ZeroVisible = true then
Plot2(zeroLine, "Zero");

{ Color criteria }
if (Value1 > Value1[1]) then
SetPlotColor[colourDeltaBar](1, upColour)
else if (Value1 < Value1[1]) then
SetPlotColor[colourDeltaBar](1, downColour);

You recommend setting input, colourDeltaBar to 1, if so, then the indicator change
which happened, today, for example, would show up on the chart, as of yesterday.
Am I right? The value for the input should be zero,0.

Please reply,

Liz Merrill

Reply With Quote