Sorry, but so far I am not finding this plugin to be usable. Here are some issues:

1) After starting Zorro in Trade mode, the status remains red for about 2:45 minutes before the script starts doing anything. This makes it very time consuming to debug scripts.

2) The flood of megabytes of error messages makes it that much more difficult to try and see what is going on.

3) At one point I was receiving quote updates in the tick() function. Now there are no updates showing in the log (even though I know the quotes have updated on SC). Also when I try to stop my script zorro keeps running after I select Yes to stop running the script.

I made some changes to my script and then tried to revert them to what seemed to be working before. Is there some error in my script that could be causing the problems?


vars bid, ask;

void run() {
resf(BarMode, BR_WEEKEND);

BarPeriod = 1;
TickTime = 1;
LookBack = 2;

//bid = series(0, -LookBack);
//ask = series(0, -LookBack);

assetAdd("XBTUSD-BMEX");
asset("XBTUSD-BMEX");
}

void tick() {

//var new_ask = priceClose();
//var new_bid = new_ask - Spread;

/* shift(ask, new_ask, LookBack);
shift(bid, new_bid, LookBack);

if (bid[0] != bid[1]) print(TO_WINDOW, "\nBid changed");
if (ask[0] != ask[1]) print(TO_WINDOW, "\nAsk changed");
*/
print(TO_WINDOW,
"\n%2i:%2i:%2.3f => Bid: %f, Ask: %f", hour(), minute(), second(),
//new_bid, new_ask);
priceClose() - Spread, priceClose());
//print(TO_WINDOW, "\nPrice: %f", Prices[0]);
}