You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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 text was updated successfully, but these errors were encountered: