
이 전략은 K 선의 연속적인 상승 또는 하락 수를 기반으로 황소 시장 또는 곰 시장을 판단하고, 이에 따라 거래를 한다. 종결 가격이 연속적으로 이전 K 선의 종결 가격보다 높은 수를 달성하면 다단위 포지션을 개설하고, 종결 가격이 연속적으로 이전 K 선의 종결 가격보다 낮은 수를 달성하면 공백 상위 포지션을 개설한다.
이 전략은 K 선의 연속성을 통해 황금 고리 트렌드를 포착하고, 동시에 위험을 제어하기 위해 손해 중지 을 설정한다. 이동식 을 도입하면 이익을 더 잘 보호할 수 있다. 그러나, 흔들리는 시장에서 자주 신호가 발생할 수 있어 신호의 신뢰성을 더 이상 최적화할 필요가 있다. 또한, 손해 중지 의 설정은 시장의 역동적인 변화에 적응하기 위해 더 유연할 수 있다. 종합적으로 볼 때, 이 전략의 아이디어는 간단하고 명확하며, 트렌디 시장에 적합하지만 여전히 최적화 할 여지가 있다.
/*backtest
start: 2024-04-16 00:00:00
end: 2024-05-16 00:00:00
period: 1h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("K Consecutive Candles 數來寶V2", max_bars_back=300, overlay=true)
// 定義用戶輸入
k = input.int(3, title="Number of Consecutive Candles for Long", minval=1)
k2 = input.int(3, title="Number of Consecutive Candles for Short", minval=1)
stopLossTicks = input.int(500, title="Stop Loss (Ticks)")
takeProfitTicks = input.int(500, title="Take Profit (Ticks)")
iTGT = input.int(200,"iTGT") // 移動停利點
iPcnt = input.int(50,"iPcnt") // 移動停利%
var float TrailValue = 0
var float TrailExit = 0
var float vMP = 0
BarsSinceEntry = ta.barssince(strategy.position_size == 0)
vMP := strategy.position_size
// 创建一个包含键值对的字典
addArrayData(type, value) =>
alert_array = array.new_string()
array.push(alert_array, '"timenow": ' + str.tostring(timenow))
array.push(alert_array, '"seqNum": ' + str.tostring(value))
array.push(alert_array, '"type": "' + type + '"')
alertstring = '{' + array.join(alert_array,', ') + '}'
// 定義條件變量
var int countLong = 0 // 記錄連續多頭條件成立的次數
var int countShort = 0 // 記錄連續空頭條件成立的次數
// 計算連續大於或小於前一根的收盤價格的次數
if close > close[1]
countLong += 1
countShort := 0 // 重置空頭計數
else if close < close[1]
countShort += 1
countLong := 0 // 重置多頭計數
else
countLong := 0
countShort := 0
// 開設多頭倉位條件
if countLong >= k
strategy.entry("Long Entry", strategy.long)
strategy.exit("Exit Long", "Long Entry", loss=stopLossTicks, profit=takeProfitTicks)
if vMP>0
TrailValue := ta.highest(high,BarsSinceEntry)
TrailExit := TrailValue - iPcnt*0.01*(TrailValue - strategy.position_avg_price)
if TrailValue > strategy.position_avg_price + iTGT * syminfo.minmove/syminfo.pricescale and close < TrailExit
strategy.close("Long Entry", comment = "Trl_LX"+ str.tostring(close[0]))
// 開設空頭倉位條件
if countShort >= k2
strategy.entry("Short Entry", strategy.short)
strategy.exit("Exit Short", "Short Entry", loss=stopLossTicks, profit=takeProfitTicks)
if vMP<0
TrailValue := ta.lowest(low,BarsSinceEntry)
TrailExit := TrailValue - iPcnt*0.01*(TrailValue - strategy.position_avg_price)
if TrailValue < strategy.position_avg_price - iTGT * syminfo.minmove/syminfo.pricescale and close > TrailExit
strategy.close("short60", comment = "Trl_SX"+ str.tostring(close[0]))