利用收盤價位置判斷多空力道,不過這個進場邏輯的獲利能力在於強大的出場機制 Vars:ResH(0),SupL(0);ResH=xAverage(High,10)[1];SupL=xAverage(Low,8)[1];If Close>ResH then Buy 1 Contracts next bar at Open;If Close<SupL then SellShort 1 Contracts next bar at Open;