|
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
|