It would be great to have a CCXT node to interact with many crypto currency exchanges in order to get trading balance amount, get the last price of a crypto currency or to push buy/sell orders for example.
No, because it’s not an online API but a library that abstract many exchanges API.
If I need to call some exchanges with HTTP node, I will have to learn each exchanges API…
I guess is a very good idea.
When I tried to connect with Binance Testnet, the HTTP Request in charge to send the order, doesn’t recognise the parameter ‘symbol’ even when is in the input in a well manner. Shows: Mandatory parameter ‘symbol’ was not sent, was empty/null, or malformed. The JSON in the HTTP Request is:
<{
“symbol”: “{{$json[‘symbol’]}}”,
“side”: “BUY”,
“type”: “LIMIT”,
“timeInForce”: “GTC”,
“quantity”: 0.01,
“price”: {{$json[‘price’]}},
“timestamp”: {{$json[‘timestamp’]}},
“signature”: “{{$json[‘signature’]}}”
}
I think the input is correct but symbol is not received.
For that, I think an specific node for trading could be a great project.