-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import random | ||
|
||
from dydx_v4_client import MAX_CLIENT_ID, OrderFlags | ||
from v4_proto.dydxprotocol.clob.order_pb2 import Order | ||
|
||
from dydx_v4_client.indexer.rest.constants import OrderType, OrderExecution | ||
from dydx_v4_client.indexer.rest.indexer_client import IndexerClient | ||
from dydx_v4_client.network import TESTNET | ||
from dydx_v4_client.node.client import NodeClient | ||
from dydx_v4_client.node.market import Market | ||
from dydx_v4_client.wallet import Wallet | ||
from tests.conftest import DYDX_TEST_MNEMONIC, TEST_ADDRESS | ||
|
||
MARKET_ID = "ETH-USD" | ||
|
||
|
||
async def test_place_stop_market_order(): | ||
size, trigger_price = 0.001, 1800 | ||
node = await NodeClient.connect(TESTNET.node) | ||
indexer = IndexerClient(TESTNET.rest_indexer) | ||
|
||
market = Market( | ||
(await indexer.markets.get_perpetual_markets(MARKET_ID))["markets"][MARKET_ID] | ||
) | ||
wallet = await Wallet.from_mnemonic(node, DYDX_TEST_MNEMONIC, TEST_ADDRESS) | ||
|
||
order_id = market.order_id( | ||
TEST_ADDRESS, 0, random.randint(0, MAX_CLIENT_ID), OrderFlags.SHORT_TERM | ||
) | ||
|
||
current_block = await node.latest_block_height() | ||
print(current_block) | ||
new_order = market.order( | ||
order_id=order_id, | ||
order_type=OrderType.STOP_MARKET, | ||
side=Order.Side.SIDE_SELL, | ||
size=size, | ||
price=trigger_price, | ||
time_in_force=Order.TimeInForce.TIME_IN_FORCE_IOC, | ||
reduce_only=False, | ||
execution=OrderExecution.IOC, | ||
good_til_block=current_block + 10, | ||
) | ||
print(new_order) | ||
transaction = await node.place_order( | ||
wallet=wallet, | ||
order=new_order, | ||
) | ||
|
||
print(transaction) | ||
wallet.sequence += 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "dydx-v4-client" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
description = "" | ||
authors = [ | ||
"Saul Martin <[email protected]>", | ||
|