ccxt-net / ccxt.net

CCXT.NET – CryptoCurrency eXchange Trading Library for .NET
MIT License
196 stars 67 forks source link

Is order placement supported? #17

Closed quantitative-technologies closed 3 years ago

quantitative-technologies commented 3 years ago

I was just looking through the code, and it looks like the CreateOrder functions are not implemented yet.

Is it correct, that this library cannot yet be used to place orders?

lisa3907 commented 3 years ago

You can use TradeAPI's CreateLimitOrderAsync.

quantitative-technologies commented 3 years ago

I don't understand? On Line 502-503 of tradeApi.cs we have:

 _result.SetFailure("not supported yet", ErrorCode.NotSupported);
 _result.supported = false;

It looks like CreateLimitOrderAsync is not supported yet.

lisa3907 commented 3 years ago

You are misunderstanding. cheer up

quantitative-technologies commented 3 years ago

Yes, I am happy to hear that.

I have made a pull request with an order placement example in bitmex, in case that is helpful.