Praveen Baratam
Praveen Baratam
Thank you. Check out the BinanceFutures->exit() function. On Sat, Aug 7, 2021, 6:44 AM hTn ***@***.***> wrote: > Hi, I would like to know the correct way to activate trailing...
I do not have an example off hand. But here are a few pointers. you can set the trail offset after you submit an order using `self.exchange.exit(trail_offset=50)` inside the `strategy`...
> > I do not have an example off hand. But here are a few pointers. > > you can set the trail offset after you submit an order using...
Any updates on this? Is current eth_callBundle compatible with Flashbots RPC?
You seem to be placing an order with notional value less than 100 USDT. `APIError(code=-4164): Order's notional must be no smaller than 100 (unless you choose reduce only).` Please check...
look into Rci->strategy function `self.exchange.entry("Long", True, lot)` this call places an order for maximum quantity allowed at the set leverage for your account on exchange for the balance in your...
Leverage is an account wide setting which can be set using command line arguments. Whereas order size is set on a per order basis. You can specify order size when...