30-라인 도박 전략 (단장판매)www.fmz.com이 짧은 30선 전략은 재미를 위해서입니다. 시뮬레이션 수준의 데이터를 이용해 테스트하고 실행할 수 있습니다.
이 전략의 아이디어가 당신을 더 깊이 생각하게 할 수 있기를 바랍니다.
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)
}
}
발명가들의 수량화 - 작은 꿈좋아!