forked from verata-veritatis/pybit
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from bybit-exchange/update_changelog
update version & changelog
- Loading branch information
Showing
3 changed files
with
11 additions
and
2 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
4682469
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where do we go or who do we have to ask if we have a request?
I am looking to have the ability to place a take profit limit post only order along with creating a limit or market order
something like this
session.place_active_order(
symbol="BTCUSDT",
side="Buy",
order_type="Market",
qty=0.01,
time_in_force="GoodTillCancel",
reduce_only=False,
close_on_trigger=False,
position_idx=0,
stop_loss=18800,
take_profit=20000,
take_profit_type="limit",
take_profit_time_in_force='PostOnly",
take_profit_close_if_sl_hit='True
)
@dextertd
something like this where we can say we want it to be a limit post only and if the sl associated with the order that was created is hit that the take profit auto closes