PureBytes Links
Trading Reference Links
|
sorry,
for my typos (due to several changes)
[snip]
This
> Let me write (we'll see later, why) your filter:
> _sma3(a/R) = avg( avg( avg(Signal, c), a), b);
should be:
_sma3(c/R) = avg( avg( avg(Signal, c), a), b);
> [ snip]
And this
> so that the filter becomes
> _sma3( a/0.75 ) = avg( avg( avg(Signal, c), rnd(0.8*a)), rnd(b*0.6))
of course should be:
_sma3( c/0.75 ) = avg( avg( avg(Signal, c), rnd(0.8*c)), rnd(0.6*c))
|