File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,11 @@ This method will work for all arguments - check the "show" command for a list of
140140 # Get the status of the bot
141141 ping = client.ping()
142142 print(ping)
143+
144+ # Add pairs to blacklist
145+ client.blacklist("BTC/USDT", "ETH/USDT")
146+ # Add pairs to blacklist by supplying a list
147+ client.blacklist(*listPairs)
143148 # ...
144149 ` ` `
145150
@@ -167,11 +172,6 @@ blacklist
167172 Show the current blacklist.
168173
169174 :param add: List of coins to add (example: "BNB/BTC")
170-
171- Example:
172- ftclient.blacklist("BTC/USDT")
173- ftclient.blacklist("BTC/USDT", "ETH/USDT", "BNB/USDT")
174- ftclient.blacklist(*listPairs)
175175
176176cancel_open_order
177177 Cancel open order for trade.
You can’t perform that action at this time.
0 commit comments