Claire's Monster
Claire's Monster
@nikspz thanks
Setting review to check on the tests
> @MementoRC if you can provide a script so @rapcmia can test an advanced order will be cool! Yes, I am working on a simplistic position executor for demonstration
A few hidden issues needed correction: - The kwargs was getting Russian dolled ({kwargs: {kwargs:{kwargs ...) - The auth couldn't handle the symbols used in the API data for the...
@cardosofede One thing that I have not looked into is how these orders interact with the order tracking. The strategy currently tracks market and limit, but these are neither. They...
@cardosofede Looking into more depth, I added the inflight (cancel-enabled with shadow order) for the stop-loss as a proof of concept. Currently the tracker is planned to track both the...
@rapcmia Oh ... don't be like that! @cardosofede Quite a bit of intrusion. It seems simpler to create only one new type `DelayedMarketOrder` that can be canceled after being placed...
One thing is that the new orders do not seem to be `Trades` and they generate `QueryTrades` errors: ``` 15:14:44 hummingbot.connector.exchange.kraken.kraken_exchange.KrakenExchange - DEBUG - '-> Placed OrderType.STOP_LOSS {'txid': ['OOYF6D-GU6UW-YFGIPZ'], 'descr':...
The DelayedOrder are a different type of mechanism, they are MarketOrder that are delayed, they cannot be partially filled like a LimitOrder, it seemed safer to have a new logic...
Next we'll need to add the `LIMIT` versions. It's actually critical for the fees, on Kraken we can get to 0% fee on maker!