(09-20-2019, 02:30 AM)orpheous Wrote: Is there a feature that holds the last filled buy order price that I can include in my strategy?
strat.onTrade = function(trade) { if (trade.action == 'buy') { log.info('trade price: ', trade.effectivePrice); } }