|
@@ -13,8 +13,10 @@ void ScriptTrader::activate(void) {
|
|
|
BUGZ_LOG(fatal) << "ScriptTrader::activate " << port[0] << " & " << port[1];
|
|
|
auto port_info = director.galaxy.ports.find(port[0]);
|
|
|
int port0_type = port_info->second.type;
|
|
|
+ port_buysell[0] = get_buysell(port0_type);
|
|
|
port_info = director.galaxy.ports.find(port[1]);
|
|
|
int port1_type = port_info->second.type;
|
|
|
+ port_buysell[1] = get_buysell(port1_type);
|
|
|
BUGZ_LOG(fatal) << port0_type << " and " << port1_type;
|
|
|
auto ttr = trade_type_info(port0_type, port1_type);
|
|
|
trades = ttr.trades;
|