PINE LIBRARY
Mis à jour whook

Library "whook"
This library provides functions for generating trading alerts for `whook`
check this -> github.com/germangar/whook
Currently supported exchanges:
Kucoin futures
Bitget futures
Coinex futures
Bingx
OKX futures ( also its demo mode )
Bybit futures ( also Bybit testnet )
Binance futures ( also Binance futures testnet )
Phemex futures ( also Phemex testnet )
Kraken futures ( also Kraken futures testnet )
# --- Test Cases ---
Note: These test cases are for demonstration purposes only and may not cover all scenarios.
// buy(string account, float amount, string unit = "units", float leverage = 1)
buy("MyAccount", 100, "units", 1)
buy("MyAccount", 1000, "USDT", 5)
buy("MyAccount", 50, "percent", 2)
// sell(string account, float amount, string unit = "units", float leverage = 1)
sell("MyAccount", 50, "units", 1)
sell("MyAccount", 500, "USDT", 3)
sell("MyAccount", 25, "percent", 2)
// set_position(string account, float amount, string unit = "units", float leverage = 1)
set_position("MyAccount", 100, "units", 1)
set_position("MyAccount", 1000, "USDT", 5)
set_position("MyAccount", 50, "percent", 2)
// limit_buy(string account, float amount, float price, string unit = "units", float leverage = 1, string id = "")
limit_buy("MyAccount", 100, 10000, "units", 1, "MyBuyOrder")
limit_buy("MyAccount", 1000, 10500, "USDT", 5)
limit_buy("MyAccount", 50, 11000, "percent", 2)
// limit_sell(string account, float amount, float price, string unit = "units", float leverage = 1, string id = "")
limit_sell("MyAccount", 50, 10000, "units", 1, "MySellOrder")
limit_sell("MyAccount", 500, 9500, "USDT", 3)
limit_sell("MyAccount", 25, 9000, "percent", 2)
// close_percent(string account, float pct = 100)
close_percent("MyAccount", 100)
close_percent("MyAccount", 50)
buy(account, amount, unit, leverage)
Sends a trading alert to execute a market buy order.
Parameters:
account (string): The account ID.
amount (float): The amount to buy (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
sell(account, amount, unit, leverage)
Sends a trading alert to execute a market sell order.
Parameters:
account (string): The account ID.
amount (float): The amount to sell (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
set_position(account, amount, unit, leverage)
Sends a trading alert to set a position.
Parameters:
account (string): The account ID.
amount (float): The amount to set the position to (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
limit_buy(account, amount, price, unit, leverage, id)
Sends a trading alert to place a limit buy order.
Parameters:
account (string): The account ID.
amount (float): The amount to buy (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
limit_sell(account, amount, price, unit, leverage, id)
Sends a trading alert to place a limit sell order.
Parameters:
account (string): The account ID.
amount (float): The amount to sell (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
close_percent(account, pct)
Sends an alert to close a position on Phemex.
Parameters:
account (string): The account ID.
pct (float): The percentage of the position to close (optional, defaults to 100%).
This library provides functions for generating trading alerts for `whook`
check this -> github.com/germangar/whook
Currently supported exchanges:
Kucoin futures
Bitget futures
Coinex futures
Bingx
OKX futures ( also its demo mode )
Bybit futures ( also Bybit testnet )
Binance futures ( also Binance futures testnet )
Phemex futures ( also Phemex testnet )
Kraken futures ( also Kraken futures testnet )
# --- Test Cases ---
Note: These test cases are for demonstration purposes only and may not cover all scenarios.
// buy(string account, float amount, string unit = "units", float leverage = 1)
buy("MyAccount", 100, "units", 1)
buy("MyAccount", 1000, "USDT", 5)
buy("MyAccount", 50, "percent", 2)
// sell(string account, float amount, string unit = "units", float leverage = 1)
sell("MyAccount", 50, "units", 1)
sell("MyAccount", 500, "USDT", 3)
sell("MyAccount", 25, "percent", 2)
// set_position(string account, float amount, string unit = "units", float leverage = 1)
set_position("MyAccount", 100, "units", 1)
set_position("MyAccount", 1000, "USDT", 5)
set_position("MyAccount", 50, "percent", 2)
// limit_buy(string account, float amount, float price, string unit = "units", float leverage = 1, string id = "")
limit_buy("MyAccount", 100, 10000, "units", 1, "MyBuyOrder")
limit_buy("MyAccount", 1000, 10500, "USDT", 5)
limit_buy("MyAccount", 50, 11000, "percent", 2)
// limit_sell(string account, float amount, float price, string unit = "units", float leverage = 1, string id = "")
limit_sell("MyAccount", 50, 10000, "units", 1, "MySellOrder")
limit_sell("MyAccount", 500, 9500, "USDT", 3)
limit_sell("MyAccount", 25, 9000, "percent", 2)
// close_percent(string account, float pct = 100)
close_percent("MyAccount", 100)
close_percent("MyAccount", 50)
buy(account, amount, unit, leverage)
Sends a trading alert to execute a market buy order.
Parameters:
account (string): The account ID.
amount (float): The amount to buy (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
sell(account, amount, unit, leverage)
Sends a trading alert to execute a market sell order.
Parameters:
account (string): The account ID.
amount (float): The amount to sell (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
set_position(account, amount, unit, leverage)
Sends a trading alert to set a position.
Parameters:
account (string): The account ID.
amount (float): The amount to set the position to (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
limit_buy(account, amount, price, unit, leverage, id)
Sends a trading alert to place a limit buy order.
Parameters:
account (string): The account ID.
amount (float): The amount to buy (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
limit_sell(account, amount, price, unit, leverage, id)
Sends a trading alert to place a limit sell order.
Parameters:
account (string): The account ID.
amount (float): The amount to sell (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
close_percent(account, pct)
Sends an alert to close a position on Phemex.
Parameters:
account (string): The account ID.
pct (float): The percentage of the position to close (optional, defaults to 100%).
Notes de version
v2Notes de version
v3Notes de version
v4Added:
cancel(account, ticker, id)
Sends an alert to cancel a specific limit order.
Parameters:
account (string): The account ID.
ticker (string)
id (string): The ID of the limit order to cancel.
cancel_all(account, ticker)
Sends an alert to cancel all orders for a symbol.
Parameters:
account (string): The account ID.
ticker (string)
Updated:
buy(account, ticker, amount, unit, leverage)
Sends a trading alert to execute a market buy order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to buy (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
sell(account, ticker, amount, unit, leverage)
Sends a trading alert to execute a market sell order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to sell (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
set_position(account, ticker, amount, unit, leverage)
Sends a trading alert to set a position.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to set the position to (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
limit_buy(account, ticker, amount, price, unit, leverage, id)
Sends a trading alert to place a limit buy order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to buy (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
limit_sell(account, ticker, amount, price, unit, leverage, id)
Sends a trading alert to place a limit sell order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to sell (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
close_percent(account, ticker, pct, price)
Sends an alert to close a position on Phemex.
Parameters:
account (string): The account ID.
ticker (string)
pct (float): The percentage of the position to close (optional, defaults to 100%).
price (float)
Bibliothèque Pine
Dans l'esprit TradingView, l'auteur a publié ce code Pine sous forme de bibliothèque open source afin que d'autres programmeurs Pine de notre communauté puissent le réutiliser. Bravo à l'auteur! Vous pouvez utiliser cette bibliothèque à titre privé ou dans d'autres publications open source, mais la réutilisation de ce code dans des publications est régie par nos Règles.
Clause de non-responsabilité
Les informations et publications ne sont pas destinées à être, et ne constituent pas, des conseils ou recommandations financiers, d'investissement, de trading ou autres fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.
Bibliothèque Pine
Dans l'esprit TradingView, l'auteur a publié ce code Pine sous forme de bibliothèque open source afin que d'autres programmeurs Pine de notre communauté puissent le réutiliser. Bravo à l'auteur! Vous pouvez utiliser cette bibliothèque à titre privé ou dans d'autres publications open source, mais la réutilisation de ce code dans des publications est régie par nos Règles.
Clause de non-responsabilité
Les informations et publications ne sont pas destinées à être, et ne constituent pas, des conseils ou recommandations financiers, d'investissement, de trading ou autres fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.