리소스 로딩... 로딩...

exchange.GetAccount

exchange.GetAccount()교환 계좌 정보를 요청하는 기능입니다.GetAccount()함수는 교환 객체의 멤버 함수입니다. 교환의 멤버 함수 (방법) 의 목적은exchange객체와만 관련이 있습니다.exchange, 그리고 문서화 후에 반복되지 않을 것입니다.

계정 자산 정보를 쿼리하고 쿼리가 성공하면 {@struct/Account Account} 구조를 반환하거나 실패하면 null을 반환합니다. {@struct/계정계정}, null 값

교환.GetAccount ((()

function main(){
    // Switching trading pairs
    exchange.IO("currency", "BTC_USDT")     
    // Take OKX futures as an example, set the contract as the current week's contract, the current trading pair is BTC_USDT, so the current contract is BTC's U-nominal current week contract
    exchange.SetContractType("this_week")   
    // Get current account asset data
    var account = exchange.GetAccount()
    // Available balance of USDT as margin
    Log(account.Balance)
    // USDT freeze amount as margin
    Log(account.FrozenBalance)
    // Current asset equity
    Log(account.Equity)
    // The unrealized profit and loss of all positions held with the current asset as margin
    Log(account.UPnL)
}
def main():
    exchange.IO("currency", "BTC_USDT")
    exchange.SetContractType("this_week")    
    account = exchange.GetAccount()
    Log(account["Balance"])
    Log(account["FrozenBalance"])
    Log(account["Equity"])
    Log(account["UPnL"])
void main() {
    exchange.IO("currency", "BTC_USDT");
    exchange.SetContractType("this_week");    
    auto account = exchange.GetAccount();
    Log(account.Balance);
    Log(account.FrozenBalance);
    Log(account["Equity"])
    Log(account["UPnL"])
}

거래 쌍을 설정하고 계약 코드를 확인하고 현금 계좌 정보를 얻어요

만약 교환 대상이 암호화폐 선물 계약 교환으로 설정되고USDT마진 (이변을 위해 {@fun/Account/exchange.SetCurrency exchange.SetCurrency}, {@fun/Futures/exchange.SetContractType exchange.SetContractType} 함수 참조). 자산은USDT이분양으로, 이분양은Balance, FrozenBalance{@struct/Account Account} 구조의 속성 거래 대상이 암호화폐 선물 계약 거래소에 설정되고 통화 기반 계약으로 전환되면 자산은 화폐로 마진으로 기록됩니다.Stocks, FrozenStocks{@struct/Account Account} 구조의 속성 바이낸스 선물 통일 계정을 사용할 때,exchange.GetAccount()계정 정보를 요청하는 기능, 캡슐화된 데이터는 모든 자산으로 변환 된 금액입니다미국 달러이 표지판은Balance{@struct/Account Account} 구조의 필드. 다른 자산의 전환 금액을 계산해야 한다면, USD 전환 금액을 인덱스 가격 (환산 자산의) 에 나누고 그 다음 채권율 (환산 자산의) 에 나누어서 계산할 수 있습니다.

{@struct/Account Account}, {@fun/Account/exchange.SetCurrency exchange.SetCurrency}, {@fun/Futures/exchange.SetContractType exchange.SetContractType}

무역 exchange.GetAssets