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

exchange.SetDirection

exchange.SetDirection()함수는 {@fun/Trade/exchange.Buy exchange.Buy} 함수, {@fun/Trade/exchange.Sell exchange.Sell} 함수의 주문 방향을 설정하는 데 사용됩니다.

교환.SetDirection (방향 설정)

direction매개 변수는 주문을 할 때 선물 계약의 방향을 설정하는 데 사용됩니다. 선택적 값은:"buy", "closesell", "sell", "closebuy"... 방향 사실 문자열

function main(){
    // For example, set to OKX futures contract of this week
    exchange.SetContractType("this_week")    
    // Set leverage to 5 times
    exchange.SetMarginLevel(5)
    // Set the order type to long
    exchange.SetDirection("buy")
    // Place an order for 2 contracts at 10,000
    exchange.Buy(10000, 2)              
    exchange.SetMarginLevel(5)
    exchange.SetDirection("closebuy")
    exchange.Sell(1000, 2)
}
def main():
    exchange.SetContractType("this_week")
    exchange.SetMarginLevel(5)
    exchange.SetDirection("buy")
    exchange.Buy(10000, 2)
    exchange.SetMarginLevel(5)
    exchange.SetDirection("closebuy")
    exchange.Sell(1000, 2)
void main() {
    exchange.SetContractType("this_week");
    exchange.SetMarginLevel(5);
    exchange.SetDirection("buy");
    exchange.Buy(10000, 2);
    exchange.SetMarginLevel(5);
    exchange.SetDirection("closebuy");
    exchange.Sell(1000, 2);
}

exchange.SetDirection()이 함수는 선물 계약 거래 방향과 주문 배치 함수 사이의 대응을 설정합니다.

주문 배치 기능 SetDirection 함수의 매개 변수들에 의해 설정된 방향 언급
exchange.Buy 구입 긴 포지션을 구매하고 오픈합니다
exchange.Buy 결매 코트 포지션 구매 및 폐쇄
exchange.Sell 판매 판매 및 오픈 짧은 위치
exchange.Sell closebuy 긴 포지션을 팔고 닫습니다.

{@fun/Trade/exchange.Buy exchange.Buy}, {@fun/Trade/exchange.Sell exchange.Sell}

exchange.SetMarginLevel exchange.SetContractType