Hi

I'm getting very strange results with the MESA indicator. I'm new to Zorro, so please check my code - either I'm misunderstanding something or this is a bug.

On the default settings of Fast: 0.5 / Slow: 0.05 I get something that looks vaguely sensible, but incorrect when compared with other platforms running TA-Lib. As soon as I move to slower settings such as 0.3/0.03 things go seriously awry.

Here is a 5 minute chart on JForex with the TA-Lib MESA on 0.3/0.03:



And here's the same time period generated by the code below:



This is my code. Am I doing something dim or is this a bug?

Either way, I'd very much appreciate a quick resolution. I have an account set up and a system ready to trade, so this is a downer...

Extending the lookback doesn't help, and all other indicators I've tried work fine, so I don't think it's my install.

If I can get this working, I'll be a paying customer.

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

var fast_limit = 0.3;
var slow_limit = 0.03;

function run()
{
StartDate = 2015;
LookBack = 200;
BarPeriod = 5;
MaxBars = 1000;

vars Close = series(priceClose());
MAMA(Close, fast_limit, slow_limit);

plot("MAMA", rMAMA, 0, RED);
plot("FAMA", rFAMA, 0, BLUE);
}

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>