traderblakeq
traderblakeq
> Currently working on an enhancement to allow you to modify the y-axis tick positions in `mpf.plot()`. It may be some time until complete, however in the meantime, as a...
- Did you find a solution ?.
I am in the same boat, I cant figure this "MARKET" order out. - Can we please get some more explanation?, and some good examples or similar ?.
This does work though: (But still I would like some more explanation on the logic) ``` position_id = account_response.data['account']['positionId'] market_data = private_client.public.get_markets(market=MARKET_BTC_USD) price = float(market_data.data['markets'][MARKET_BTC_USD]['oraclePrice']) expiration_epoch_seconds = int((pd.Timestamp.utcnow() + pd.Timedelta(weeks=1)).timestamp())...
For other users to use if of any good: ( This is my take ): ``` def sell_market_order(symbol: str, size: float , percent_slippage=0.003): """ Place a market sell order for...
As it is a DEX you need Price variable to Control slippage. (DYDX matching will though always ensure you get the best price possible on the order book). Here is...
* misunderstood the topic
... Would be fantastic, if this were implemented in a simply way into the dydx-v3 python wrapper, any plans of doing that ? something like: `response = client.private.close_position(order_id=order_id)`
First of all thank you for writing this script. - Im just wondering is this issue completely solved ?. Im looking forward to use this in my automated trading system.
> Ideally, when we add this feature to `mpf.plot()`, the user can simply specify a date for the x-position of the text, where the date can be any of (1)...