Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add example for placing stop limit orders and update version #290

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions v4-client-py-v2/dydx_v4_client/node/chain_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,13 @@ def calculate_client_metadata(order_type: OrderType) -> int:

@staticmethod
def calculate_condition_type(order_type: OrderType) -> Order.ConditionType:
if order_type in [OrderType.LIMIT, OrderType.MARKET, OrderType.STOP_MARKET]:
if order_type in [
OrderType.LIMIT,
OrderType.MARKET,
OrderType.STOP_MARKET,
OrderType.STOP_LIMIT,
]:
return Order.ConditionType.CONDITION_TYPE_UNSPECIFIED
elif order_type in [OrderType.STOP_LIMIT]:
return Order.ConditionType.CONDITION_TYPE_STOP_LOSS
elif order_type in [OrderType.TAKE_PROFIT_LIMIT, OrderType.TAKE_PROFIT_MARKET]:
return Order.ConditionType.CONDITION_TYPE_TAKE_PROFIT
else:
Expand Down
51 changes: 51 additions & 0 deletions v4-client-py-v2/examples/stop_limit_order_example.py
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_limit_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_LIMIT,
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
2 changes: 1 addition & 1 deletion v4-client-py-v2/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dydx-v4-client"
version = "1.1.2"
version = "1.1.3"
description = ""
authors = [
"Saul Martin <saulmartin1@pm.me>",
Expand Down
Loading