* Get the account position risk (v2) * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Position-Information-V3 * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Position-Information-V2 * @return {promise
(params: Dict = {})
| 4644 | * @return {promise or undefined} - omitting the callback returns a promise |
| 4645 | */ |
| 4646 | async futuresPositionRiskV2(params: Dict = {}): Promise<PositionRisk[]> { |
| 4647 | return this.futuresPositionRisk(params, true); |
| 4648 | } |
| 4649 | |
| 4650 | /** |
| 4651 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Get-Funding-Rate-Info |
no test coverage detected