Izem
Results
1
issues of
Izem
Using this code: ``` account_response = client.private.get_account() position_id = account_response.data['account']['positionId'] market_data = client.public.get_markets(market=MARKET_MATIC_USD) price = market_data.data['markets'][MARKET_MATIC_USD]['oraclePrice'] expiration_epoch_seconds = int((pd.Timestamp.utcnow() + pd.Timedelta(weeks=1)).timestamp()) placed_order = client.private.create_order( position_id=position_id, # required for creating the...