francitoshi

Results 2 issues of francitoshi

fix the CurrencyPair that is buiding wrong using COUNTER-BASE and should be BASE-COUNTER

class "TradeOgreAdapters" has the method "adaptCurrencyPair" with `return currencyPair.counter.toString() + "-" + currencyPair.base.toString();` but shoud be `return currencyPair.base.toString() + "-" + currencyPair.counter.toString();` This bug prevents applications from placing an order,...