// 엘리어트 파동 (간단한 패턴 분석) wave1 = (rsiValue < oversold) and (smaShortValue > smaLongValue) and (macdLine > signalLine) wave3 = (rsiValue > oversold) and (macdLine > signalLine) and (close > upperBB) wave5 = (rsiValue > 70) and (macdLine < signalLine) and (close > smaLongValue) waveA = (rsiValue > overbought) and (macdLine < signalLine) and (close < smaShortValue) waveC = (rsiValue < 30) and (macdLine > signalLine) and (close < lowerBB)
// === LONG ENTRY CONDITION === longCondition = (rsiValue < oversold) and (smaShortValue > smaLongValue) and (macdLine > signalLine) and (close <= lowerBB) and not na(bullishFractal) and (wave1 or wave5)
// === SHORT ENTRY CONDITION === shortCondition = (rsiValue > overbought) and (smaShortValue < smaLongValue) and (macdLine < signalLine) and (close >= upperBB) and not na(bearishFractal) and (waveA or waveC)
// === ALERTS === if (longCondition) alert("LONG_SIGNAL", alert.freq_once_per_bar)
if (shortCondition) alert("SHORT_SIGNAL", alert.freq_once_per_bar)
ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יוכלו להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אבל השימוש החוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.