Gekko Forum
live gekko windows eror - Printable Version

+- Gekko Forum (https://forum.gekko.wizb.it)
+-- Forum: Gekko (https://forum.gekko.wizb.it/forum-13.html)
+--- Forum: Technical Support (https://forum.gekko.wizb.it/forum-19.html)
+--- Thread: live gekko windows eror (/thread-56847.html)



live gekko windows eror - Asemaniko - 04-20-2018

C:\Users\----\OneDrive\Desktop\gekko\gekko\plugins\trader\trade.js:312
      return minimum = this.minimalOrder.amount;
                     ^

ReferenceError: minimum is not defined



note: ubuntu no problem


RE: live gekko windows eror - PapoKarlo - 04-21-2018

try to change
 return minimum = this.minimalOrder.amount / price;
to
return  this.minimalOrder.amount / price;

and
return minimum = this.minimalOrder.amount;
to
 return this.minimalOrder.amount;

on gekko/plugins/trader/trade.js  310