The trade Engine generates errors when it runs TradeEngineStoredProcedures.sql. The errors are simply because table names weren't capitalized in the stored procedures file as they were in database/sousmsTradeEngineTables.sql.
Three different tables generated errors. In TradeEngineStoredProcedures.sql, there are references to:
openorders
ordertypes
symbol
By simply replacing all above occurrences in TradeEngineStoredProcedures to: OpenOrders, OrderTypes, and Symbol, I got the engine running just fine, but this solution might break the php that uses the same files.
The trade Engine generates errors when it runs TradeEngineStoredProcedures.sql. The errors are simply because table names weren't capitalized in the stored procedures file as they were in database/sousmsTradeEngineTables.sql.
Three different tables generated errors. In TradeEngineStoredProcedures.sql, there are references to:
openorders
ordertypes
symbol
By simply replacing all above occurrences in TradeEngineStoredProcedures to: OpenOrders, OrderTypes, and Symbol, I got the engine running just fine, but this solution might break the php that uses the same files.