30-line gambler strategy (Selling short)

Author: , Created: 2018-08-30 12:03:18, Updated: 2019-12-03 17:32:29

30-line gambler strategy (Selling short) www.fmz.com 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’m hoping 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)
    }
}

More

小小梦 gooood!