संतुलन सूची रणनीति (शिक्षण रणनीति)

लेखक:छोटे सपने, बनाया गयाः 2020-09-02 17:05:25, अद्यतन किया गयाः 2023-09-27 19:40:10

img

संतुलन सूची रणनीति (शिक्षण रणनीति)

इस लेख में वर्णित रणनीति का सार एक गतिशील संतुलन रणनीति है, जो हमेशा सिक्के के मूल्य को मूल्य के बराबर संतुलित करती है। हालांकि, यह पूर्व सूचीबद्ध करने के लिए डिज़ाइन की गई है, रणनीति का तर्क बहुत सरल है। इस रणनीति को लिखने का मुख्य उद्देश्य रणनीति डिजाइन के विभिन्न पहलुओं को दिखाना है।

  • रणनीतिक तार्किक पैकेज रणनीतिक तर्क और कुछ डेटा, चिह्नित चर को चलाने के दौरान एक साथ लिपटे ("ऑब्जेक्ट में लिपटे") ।

  • कोड की प्रक्रिया के लिए रणनीति आरंभिक कार्य आरंभिक रन पर आरंभिक खाते की जानकारी दर्ज की जाती है, जिसका उपयोग आय के गणना के लिए किया जाता है, आरंभिक समय पर पैरामीटर के आधार पर डेटा को पुनर्प्राप्त किया जाता है या नहीं।

  • रणनीतिक बातचीत के लिए कोड एक सरल विराम, निरंतर बातचीत प्रक्रिया डिजाइन करें।

  • रणनीतिक लाभ गणना कोड मुद्रा के स्थानिक गणना विधि का उपयोग करके आय की गणना करना।

  • रणनीति में महत्वपूर्ण डेटा स्थायित्व तंत्र डेटा रिकवरी के लिए डिज़ाइन किए गए तंत्र

  • कोड दिखाता है कि रणनीति जानकारी संसाधित करता है स्टेटस बार डेटा प्रदर्शित करता है.

रणनीति कोड

var Shannon = {
    // member
    e : exchanges[0],
    arrPlanOrders : [],
    distance : BalanceDistance,
    account : null,
    ticker : null, 
    initAccount : null,
    isAskPending : false,
    isBidPending : false,

    // function 
    CancelAllOrders : function (e) {
        while(true) {
            var orders = _C(e.GetOrders)
            if(orders.length == 0) {
                return 
            }
            Sleep(500)
            for(var i = 0; i < orders.length; i++) {
                e.CancelOrder(orders[i].Id, orders[i])
                Sleep(500)
            }
        }
    },

    Balance : function () {
        if (this.arrPlanOrders.length == 0) {
            this.CancelAllOrders(this.e)
            var acc = _C(this.e.GetAccount)
            this.account = acc
            var askPendingPrice = (this.distance + acc.Balance) / acc.Stocks
            var bidPendingPrice = (acc.Balance - this.distance) / acc.Stocks
            var askPendingAmount = this.distance / 2 / askPendingPrice
            var bidPendingAmount = this.distance / 2 / bidPendingPrice

            this.arrPlanOrders.push({tradeType : "ask", price : askPendingPrice, amount : askPendingAmount}) 
            this.arrPlanOrders.push({tradeType : "bid", price : bidPendingPrice, amount : bidPendingAmount})
        } else if(this.isAskPending == false && this.isBidPending == false) {
            for(var i = 0; i < this.arrPlanOrders.length; i++) {
                var tradeFun = this.arrPlanOrders[i].tradeType == "ask" ? this.e.Sell : this.e.Buy
                var id = tradeFun(this.arrPlanOrders[i].price, this.arrPlanOrders[i].amount)
                if(id) {
                    this.isAskPending = this.arrPlanOrders[i].tradeType == "ask" ? true : this.isAskPending
                    this.isBidPending = this.arrPlanOrders[i].tradeType == "bid" ? true : this.isBidPending
                } else {
                    Log("挂单失败,清理!")
                    this.CancelAllOrders(this.e)
                    return 
                }
            }
        }

        if(this.isBidPending || this.isAskPending) {
            var orders = _C(this.e.GetOrders)
            Sleep(1000)
            var ticker = _C(this.e.GetTicker)
            this.ticker = ticker
            if(this.isAskPending) {
                var isFoundAsk = false 
                for (var i = 0; i < orders.length; i++) {
                    if(orders[i].Type == ORDER_TYPE_SELL) {
                        isFoundAsk = true
                    }
                }
                if(!isFoundAsk) {
                    Log("卖单成交,撤销订单,重置")
                    this.CancelAllOrders(this.e)
                    this.arrPlanOrders = []
                    this.isAskPending = false 
                    this.isBidPending = false 
                    LogProfit(this.CalcProfit(ticker))
                    return 
                }
            }
            if(this.isBidPending) {
                var isFoundBid = false 
                for(var i = 0; i < orders.length; i++) {
                    if(orders[i].Type == ORDER_TYPE_BUY) {
                        isFoundBid = true
                    }
                }
                if(!isFoundBid) {
                    Log("买单成交,撤销订单,重置")
                    this.CancelAllOrders(this.e)
                    this.arrPlanOrders = []
                    this.isAskPending = false 
                    this.isBidPending = false 
                    LogProfit(this.CalcProfit(ticker))
                    return 
                }
            }        
        }
    }, 
    ShowTab : function() {
        var tblPlanOrders = {
            type : "table", 
            title : "计划挂单", 
            cols : ["方向", "价格", "数量"], 
            rows : []
        }
        for(var i = 0; i < this.arrPlanOrders.length; i++) {
            tblPlanOrders.rows.push([this.arrPlanOrders[i].tradeType, this.arrPlanOrders[i].price, this.arrPlanOrders[i].amount])
        }

        var tblAcc = {
            type : "table", 
            title : "账户信息", 
            cols : ["type", "Stocks", "FrozenStocks", "Balance", "FrozenBalance"], 
            rows : []            
        }
        tblAcc.rows.push(["初始", this.initAccount.Stocks, this.initAccount.FrozenStocks, this.initAccount.Balance, this.initAccount.FrozenBalance])
        tblAcc.rows.push(["当前", this.account.Stocks, this.account.FrozenStocks, this.account.Balance, this.account.FrozenBalance])
        
        return "时间:" + _D() + "\n `" + JSON.stringify([tblPlanOrders, tblAcc]) + "`" + "\n" + "ticker:" + JSON.stringify(this.ticker)
    },
    CalcProfit : function(ticker) {
        var acc = _C(this.e.GetAccount)
        this.account = acc
        return (this.account.Balance - this.initAccount.Balance) + (this.account.Stocks - this.initAccount.Stocks) * ticker.Last
    },
    Init : function() {
        this.initAccount = _C(this.e.GetAccount)
        if(IsReset) {
            var acc = _G("account")
            if(acc) {
                this.initAccount = acc 
            } else {
                Log("恢复初始账户信息失败!以初始状态运行!")
                _G("account", this.initAccount)
            }
        } else {
            _G("account", this.initAccount)
            LogReset(1)
            LogProfitReset()
        }
    },
    Exit : function() {
        Log("停止前,取消所有挂单...")
        this.CancelAllOrders(this.e)
    }
}

function main() {
    // 初始化
    Shannon.Init()

    // 主循环
    while(true) {
        Shannon.Balance()        
        LogStatus(Shannon.ShowTab())
        // 交互
        var cmd = GetCommand()
        if(cmd) {
            if(cmd == "stop") {
                while(true) {
                    LogStatus("暂停", Shannon.ShowTab())
                    cmd = GetCommand()
                    if(cmd) {
                        if(cmd == "continue") {
                            break
                        }
                    }
                    Sleep(1000)
                }
            }
        }
        Sleep(5000)
    }
}

function onexit() {
    Shannon.Exit()
}

पुनः परीक्षण किया गया

img

img

img

विस्तार का अनुकूलन

  • आभासी हुंडिंग तंत्र में शामिल किया जा सकता है, कुछ लेनदेन सभी हुंडिंग सीमाओं पर हैं, इसलिए हो सकता है कि ऑर्डर वास्तव में हुंडिंग न हो, और कीमतों को वास्तविक हुंडिंग के करीब आने तक इंतजार करना होगा।
  • फ्यूचर्स ट्रेडिंग में शामिल हों
  • बहु-प्रजाति, बहु-विनिमय संस्करणों में विस्तारित

यह रणनीति केवल शिक्षण के लिए है, लेकिन सावधानी से प्रयोग करें। इस रणनीति का पताःhttps://www.fmz.com/strategy/225746


संबंधित

अधिक