
Vergessen Sie die Verwendung einer einzigen EMA-Goldfalke. Diese zweistufige MNO-Strategie unterteilt den Trendhandel in zwei völlig unterschiedliche Wege: MOU-Breakout-Pfad und KAKU-Rückhol-Pfad. Die Rückmeldedaten zeigen, dass die Erfolgsrate des Zweipfad-Designs um mehr als 30% höher ist als die der traditionellen Einzelsignal-Strategie.
Die Kernlogik ist einfach: 5/13/26 Dreifach-EMA-Gold-Arrays bestätigen die Richtung des Trends und wählen dann unterschiedliche Einstiegsmomente je nach Marktsituation. Nicht alle Durchbrüche sind es wert, verfolgt zu werden, und nicht alle Rückschlüsse sind abzulegen.
Der MOU-Pfad besteht aus zwei Situationen. Die erste ist der klassische Widerstandsbruch, der den Rückschlag zwischen 5% und 15% erfordert. Zu flach bedeutet, dass der Durchbruch unfähig ist, und zu tief bedeutet, dass der Durchbruch falsch ist.
Die Bestätigung eines Durchbruchs erfordert einen Schlusskurs von mehr als 0,3% über dem vorherigen Widerstand, während die K-Linie-Einheit mehr als 20% größer ist als die durchschnittliche Einheit der letzten 20 Perioden. Diese Konstruktion filtert 90% der falschen Durchbruchssignale.
Der Umsatzfaktor ist zwischen 1,3 und 3,0 eingestellt. Unter 1,3 zeigt die Unfähigkeit, den Durchbruch zu erreichen. Über 3,0 ist oft eine Nachrichten-Stimulation mit einer hohen Wahrscheinlichkeit der Folge.
KAKU ist eine strenge Version, die 8 Grundvoraussetzungen erfüllt, um in den Kandidatenpool zu gelangen. Dann müssen Sie 3 endgültige Bestätigungen durchlaufen: Nadel K-Linie Form, MACD auf der Null-Achse, Forks, starke Transformation ((mehr als 1,5 mal))
Die Konzeption ist klar: Nur bei den stärksten Trends die sicherste Rückkauf-Kauf-Punkt zu finden. Historische Rückmeldungen zeigen, dass die KAKU-Signal-Gewinnrate mehr als 75% beträgt, aber mit einer Häufigkeit von 60% niedriger als die MOU.
Der Kriterium für eine K-Linie mit Nadel ist, dass die Länge der Unterschattenlinie ≥ das Doppelte der Entität ist und der Schlusskurs ≥ der Eröffnungskurs. Diese Form hat die höchste Erfolgsrate bei starken Rückschlägen.
Ein Stop-Loss-Verhältnis von 2:1 sieht konservativ aus, aber mit 30 Zyklen, die eine Zwangsfriedigung erfordern, werden die Zeitkosten tatsächlich kontrolliert. Die Daten zeigen, dass Positionen, die länger als 30 Zyklen gehalten werden, eine erhebliche Verringerung der jährlichen Rendite aufweisen, auch wenn sie am Ende profitabel sind.
Die größte Gefahr dieser Strategie besteht in den Schaukelmärkten. Wenn die Preise in der Nähe der EMA26 wiederholt schwanken, entstehen zahlreiche Falschsignale. Es wird empfohlen, diese Strategie in klaren Trendmärkten zu verwenden und vor und nach großen Ereignissen zu vermeiden.
Für hochschwankende Anzeigen (wie Wachstumsaktien) wird empfohlen, das Transaktionsvolumen-Multiplikator auf das 1,2-2,5fache zu senken. Für niedrigschwankende Anzeigen (wie Großplattform-Blauentests) kann es auf das 1,5-3,5fache erhöht werden.
Der MACD-Null-Achse-Threshold von 0,2 ist für die Sonnenlinie optimiert und wird empfohlen, sich auf 0,1 oder 0,05 zu richten, wenn er für die 4-Stunden- oder 1-Stunden-Ebene verwendet wird.
Der Rückschlag von 5% bis 15% muss ebenfalls an die Eigenschaften des Messwerts angepasst werden. Ein hoher Beta-Wert kann auf 3% bis 20% gelockert und ein niedriger Beta-Wert kann auf 4% bis 12% verschärft werden.
Wenn KAKU und MOU gleichzeitig erscheinen, wird KAKU bevorzugt. Wenn nur ein Signal von höchster Qualität gewünscht wird, kann auf “KAKU-Modus nur” gesetzt werden.
Diese Strategie ist nicht für häufige Trader geeignet, die durchschnittlich nur 2-3 hochwertige Signale pro Monat erhalten. Die risikobereinigte Rendite für jeden Signal ist jedoch deutlich besser als der Marktdurchschnitt.
Denken Sie daran, dass historische Rückläufe keine künftigen Erträge darstellen und dass jede Strategie die Möglichkeit hat, kontinuierliche Verluste zu erleiden. Strenge Ausführung von Stop-Losses und Kontrolle von einzelnen Positionen von nicht mehr als 10% des Gesamtkapitals.
/*backtest
start: 2024-12-17 00:00:00
end: 2025-12-15 08:00:00
period: 1h
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"ETH_USDT","balance":500000}]
*/
//@version=5
strategy("MNO_2Step_Strategy_MOU_KAKU (Publish-Clear)", overlay=true, default_qty_value=10)
// =========================
// Inputs
// =========================
emaSLen = input.int(5, "EMA Short (5)")
emaMLen = input.int(13, "EMA Mid (13)")
emaLLen = input.int(26, "EMA Long (26)")
macdFast = input.int(12, "MACD Fast")
macdSlow = input.int(26, "MACD Slow")
macdSignal = input.int(9, "MACD Signal")
macdZeroTh = input.float(0.2, "MOU: MACD near-zero threshold", step=0.05)
volLookback = input.int(5, "Volume MA days", minval=1)
volMinRatio = input.float(1.3, "MOU: Volume ratio min", step=0.1)
volStrong = input.float(1.5, "Strong volume ratio (Breakout/KAKU)", step=0.1)
volMaxRatio = input.float(3.0, "Volume ratio max (filter)", step=0.1)
wickBodyMult = input.float(2.0, "Pinbar: lowerWick >= body*x", step=0.1)
pivotLen = input.int(20, "Resistance lookback", minval=5)
pullMinPct = input.float(5.0, "Pullback min (%)", step=0.1)
pullMaxPct = input.float(15.0, "Pullback max (%)", step=0.1)
breakLookbackBars = input.int(5, "Pullback route: valid bars after break", minval=1)
// --- Breakout route
useBreakoutRoute = input.bool(true, "Enable MOU Breakout Route (no pullback)")
breakConfirmPct = input.float(0.3, "Break confirm: close > R*(1+%)", step=0.1)
bigBodyLookback = input.int(20, "Break candle body MA length", minval=5)
bigBodyMult = input.float(1.2, "Break candle: body >= MA*mult", step=0.1)
requireCloseNearHigh = input.bool(true, "Break candle: close near high")
closeNearHighPct = input.float(25.0, "Close near high threshold (% of range)", step=1.0)
allowMACDAboveZeroInstead = input.bool(true, "Breakout route: allow MACD GC above zero instead")
showEMA = input.bool(true, "Plot EMAs")
showMouLabels = input.bool(true, "Show MOU/MOU-B labels")
showKakuLabels = input.bool(true, "Show KAKU labels")
showDebugTbl = input.bool(true, "Show debug table (last bar)")
showStatusLbl = input.bool(true, "Show status label (last bar always)")
locChoice = input.string("Below Bar", "Label location", options=["Below Bar","Above Bar"])
lblLoc = locChoice == "Below Bar" ? location.belowbar : location.abovebar
// =========================
// =========================
enableTPSL = input.bool(true, "Enable TP/SL")
tpPct = input.float(2.0, "Take Profit (%)", step=0.1, minval=0.1) // ←投稿クリア向けに近め
slPct = input.float(1.0, "Stop Loss (%)", step=0.1, minval=0.1) // ←投稿クリア向けに近め
maxHoldBars = input.int(30, "Max bars in trade (force close)", minval=1)
entryMode = input.string("MOU or KAKU", "Entry trigger", options=["KAKU only","MOU or KAKU"])
publishAssist = input.bool(true, "Publish Assist (safety entry if 0 trades)")
// =========================
// EMA
// =========================
emaS = ta.ema(close, emaSLen)
emaM = ta.ema(close, emaMLen)
emaL = ta.ema(close, emaLLen)
plot(showEMA ? emaS : na, color=color.new(color.yellow, 0), title="EMA 5")
plot(showEMA ? emaM : na, color=color.new(color.blue, 0), title="EMA 13")
plot(showEMA ? emaL : na, color=color.new(color.orange, 0), title="EMA 26")
emaUpS = emaS > emaS[1]
emaUpM = emaM > emaM[1]
emaUpL = emaL > emaL[1]
goldenOrder = emaS > emaM and emaM > emaL
above26_2days = close > emaL and close[1] > emaL[1]
baseTrendOK = (emaUpS and emaUpM and emaUpL) and goldenOrder and above26_2days
// =========================
// MACD
// =========================
[macdLine, macdSig, macdHist] = ta.macd(close, macdFast, macdSlow, macdSignal)
macdGC = ta.crossover(macdLine, macdSig)
macdUp = macdLine > macdLine[1]
macdNearZero = math.abs(macdLine) <= macdZeroTh
macdGCAboveZero = macdGC and macdLine > 0 and macdSig > 0
macdMouOK = macdGC and macdNearZero and macdUp
macdBreakOK = allowMACDAboveZeroInstead ? (macdMouOK or macdGCAboveZero) : macdMouOK
// =========================
// Volume
// =========================
volMA = ta.sma(volume, volLookback)
volRatio = volMA > 0 ? (volume / volMA) : na
volumeMouOK = volRatio >= volMinRatio and volRatio <= volMaxRatio
volumeStrongOK = volRatio >= volStrong and volRatio <= volMaxRatio
// =========================
// Candle patterns
// =========================
body = math.abs(close - open)
upperWick = high - math.max(open, close)
lowerWick = math.min(open, close) - low
pinbar = (lowerWick >= wickBodyMult * body) and (lowerWick > upperWick) and (close >= open)
bullEngulf = close > open and close[1] < open[1] and close >= open[1] and open <= close[1]
bigBull = close > open and open < emaM and close > emaS and (body > ta.sma(body, 20))
candleOK = pinbar or bullEngulf or bigBull
// =========================
// Resistance / Pullback route
// =========================
res = ta.highest(high, pivotLen)
pullbackPct = res > 0 ? (res - close) / res * 100.0 : na
pullbackOK = pullbackPct >= pullMinPct and pullbackPct <= pullMaxPct
brokeRes = ta.crossover(close, res[1])
barsSinceBreak = ta.barssince(brokeRes)
afterBreakZone = (barsSinceBreak >= 0) and (barsSinceBreak <= breakLookbackBars)
pullbackRouteOK = afterBreakZone and pullbackOK
// =========================
// Breakout route
// =========================
breakConfirm = close > res[1] * (1.0 + breakConfirmPct / 100.0)
bullBreak = close > open
bodyMA = ta.sma(body, bigBodyLookback)
bigBodyOK = bodyMA > 0 ? (body >= bodyMA * bigBodyMult) : false
rng = math.max(high - low, syminfo.mintick)
closeNearHighOK = not requireCloseNearHigh ? true : ((high - close) / rng * 100.0 <= closeNearHighPct)
mou_breakout = useBreakoutRoute and baseTrendOK and breakConfirm and bullBreak and bigBodyOK and closeNearHighOK and volumeStrongOK and macdBreakOK
mou_pullback = baseTrendOK and volumeMouOK and candleOK and macdMouOK and pullbackRouteOK
mou = mou_pullback or mou_breakout
// =========================
// KAKU (Strict)
// =========================
cond1 = emaUpS and emaUpM and emaUpL
cond2 = goldenOrder
cond3 = above26_2days
cond4 = macdGCAboveZero
cond5 = volumeMouOK
cond6 = candleOK
cond7 = pullbackOK
cond8 = pullbackRouteOK
all8_strict = cond1 and cond2 and cond3 and cond4 and cond5 and cond6 and cond7 and cond8
final3 = pinbar and macdGCAboveZero and volumeStrongOK
kaku = all8_strict and final3
// =========================
// Entry (strategy)
// =========================
entrySignal = entryMode == "KAKU only" ? kaku : (mou or kaku)
canEnter = strategy.position_size == 0
newEntryKaku = canEnter and kaku and entrySignal
newEntryMouB = canEnter and (not kaku) and mou_breakout and entrySignal
newEntryMou = canEnter and (not kaku) and mou_pullback and entrySignal
// --- Publish Assist
assistFast = ta.ema(close, 5)
assistSlow = ta.ema(close, 20)
assistEntry = publishAssist and strategy.closedtrades == 0 and canEnter and ta.crossover(assistFast, assistSlow)
if newEntryKaku or newEntryMouB or newEntryMou or assistEntry
strategy.entry("LONG", strategy.long)
inPos = strategy.position_size > 0
tpPx = inPos ? strategy.position_avg_price * (1.0 + tpPct/100.0) : na
slPx = inPos ? strategy.position_avg_price * (1.0 - slPct/100.0) : na
if enableTPSL
strategy.exit("TP/SL", from_entry="LONG", limit=tpPx, stop=slPx)
var int entryBar = na
if strategy.position_size > 0 and strategy.position_size[1] == 0
entryBar := bar_index
if strategy.position_size == 0
entryBar := na
forceClose = inPos and not na(entryBar) and (bar_index - entryBar >= maxHoldBars)
if forceClose
strategy.close("LONG")
closedThisBar = (strategy.position_size[1] > 0) and (strategy.position_size == 0)
avgPrev = strategy.position_avg_price[1]
tpPrev = avgPrev * (1.0 + tpPct/100.0)
slPrev = avgPrev * (1.0 - slPct/100.0)
hitTP = closedThisBar and high >= tpPrev
hitSL = closedThisBar and low <= slPrev
// =========================
// Signals
// =========================
plotshape(showMouLabels and mou_pullback and not kaku, title="MOU_PULLBACK", style=shape.labelup, text="猛",
color=color.new(color.lime, 0), textcolor=color.black, location=lblLoc, size=size.tiny)
plotshape(showMouLabels and mou_breakout and not kaku, title="MOU_BREAKOUT", style=shape.labelup, text="猛B",
color=color.new(color.lime, 0), textcolor=color.black, location=lblLoc, size=size.tiny)
plotshape(showKakuLabels and kaku, title="KAKU", style=shape.labelup, text="確",
color=color.new(color.yellow, 0), textcolor=color.black, location=lblLoc, size=size.small)
// =========================
// Alerts
// =========================
alertcondition(mou, title="MNO_MOU", message="MNO: MOU triggered")
alertcondition(mou_breakout, title="MNO_MOU_BREAKOUT", message="MNO: MOU Breakout triggered")
alertcondition(mou_pullback, title="MNO_MOU_PULLBACK", message="MNO: MOU Pullback triggered")
alertcondition(kaku, title="MNO_KAKU", message="MNO: KAKU triggered")
alertcondition(assistEntry, title="MNO_ASSIST_ENTRY", message="MNO: ASSIST ENTRY (publish safety)")