- スクエア
- ギャンブルの30の戦略
ギャンブルの30の戦略
作者: リン・ハーン
発明者 量化 - 微かな夢, 日時: 2018-08-28 15:02:56
タグ:
勉強マルチンゲール
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 = $.Buy(_FirstAmount)
hold.amount = firstInfo.amount
hold.price = firstInfo.price
} else {
if(ticker.Sell > hold.price + _StopWin){
var coverStopWinInfo = $.Sell(hold.amount)
hold.price = 0
hold.amount = 0
_Gear = 0
} else if(ticker.Sell < hold.price - _StopLoss && _Gear < _MaxGear){
$.Sell(hold.amount)
var amount = hold.amount * 2
var addInfo = $.Buy(amount)
hold.price = addInfo.price
hold.amount = addInfo.amount
_Gear++
}
}
LogStatus(_D(), "加倍下注次数:", _Gear, "\n", "当前持仓:", hold)
Sleep(500)
}
}
関連性
もっと