A little game strategy which can inspire you to think the trading business a different way, this short 30-line strategy is just for fun, you can test it and run it with simulation level data.

I hope that the idea of this strategy can lead you to a deeper thinking of trading.

var hold = {price : 0, amount : 0}
var _Gear = 0
function main(){
    var initAccount = _C(exchange.GetAccount)
    Log(initAccount, "#FF0000")
    while(1){
        var ticker = _C(exchange.GetTicker)
        if(hold.amount == 0){
            var firstInfo = $.Sell(_FirstAmount)
            hold.amount = firstInfo.amount
            hold.price = firstInfo.price
        } else {
            if(ticker.Buy < hold.price - _StopWin){
                var coverStopWinInfo = $.Buy(hold.amount)
                hold.price = 0
                hold.amount = 0
                _Gear = 0
            } else if(ticker.Buy > hold.price + _StopLoss && _Gear < _MaxGear){
                $.Buy(hold.amount)
                var amount = hold.amount * 2
                var addInfo = $.Sell(amount)
                hold.price = addInfo.price
                hold.amount = addInfo.amount
                _Gear++
            }
        }
        LogStatus(_D(), "Number of 'Double down':", _Gear, "\n", "Current holding position:", hold)
        Sleep(500)
    }
}

also the Strategy Arguments setting:

for more information, please see: https://www.fmz.com/bbs-topic/2291

Leave a Reply

Your email address will not be published. Required fields are marked *