How to get data stream for using Apache Camel XCHANGE? There is an example at Apache Camel XCHANGE. In this sample, we find the current Bitcoin market price in USDT:
from("direct:ticker")
.to("xchange:binance?service=market&method=ticker¤cyPair=BTC/USDT")
There is an error - it should be
from("direct:ticker")
.to("xchange:binance?service=marketdata&method=ticker¤cyPair=BTC/USDT")
but still have no data stream.