输入/搜索内容
0
关注
80
关注者
30-line gambler strategy (Selling short)
知识库
创建于 2018-08-30 12:03:18  更新于 2019-12-03 17:32:29
 1
 1802

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) } }
相关推荐
评论
全部评论 (1)

    gooood!

    8 年前
  • 1
iPhone 下载
社区
回测系统
© 2015 - ∞ INVENTOR PTE LTD (SG)