// Indicator Description: // The "Dblocs 4 Year BTC Cycle Guide" indicator represents a fixed recurring profit-taking cycle that begins with each Bitcoin halving event.
// Functionality Explained: // After every halving event, there has been a fixed number of weeks following that marked the area of highest profitability for taking profit. // • 40 Weeks (Post-Halving) = Start of the optimal profit-taking zone. // • 80 Weeks (Post-Halving) = "Last Call" for profit-taking before the bear market. // • 135 Weeks (Post-Halving) = Optimal area to begin Dollar-Cost Averaging.
//version=5 indicator(title='Dblocs 4 Year BTC Cycle Guide', overlay=true)
// Function to check if it's after a halving based on months (weekly) isAfterHalvingWeeks(y, m, d, months) => halvingDate = timestamp(y, m, d) startDate = request.security(syminfo.tickerid, 'D', halvingDate + 1) endDate = startDate + months * 30 * 24 * 60 * 60 * 300 time >= startDate and time <= endDate
// Function to check if it's after a halving based on months (monthly) isAfterHalvingMonths(y, m, d, months) => halvingDate = timestamp(y, m, d) startDate = request.security(syminfo.tickerid, 'M', halvingDate + 1) endDate = startDate + months * 36 * 30 * 24 * 60 * 60 * 100 time >= startDate and time <= endDate
// Set the future halving date halvingDate4th = timestamp(2024, 4, 19)
halvingdate = input(defval=true, title="Halving Date") var WeeklyProfitSTART = input(true, title="(Weekly) Profit [START TP]") var WeeklyProfitEND = input(true, title="(Weekly) Profit [END]") var MonthlyProfitSTART = input(true, title="(Monthly) Profit [START TP]") var MonthlyProfitEND = input(true, title="(Monthly) Profit [END]") var DCAstart = input(true, title="DCA (Show)") var ShowBackgroundColor = input(true, title="Show Background Color")
isDate(y, m, d) => timestamp(y, m, d) <= time and timestamp(y, m, d) > time[1]
// Check if it's a daily chart isDaily = timeframe.isdaily
// Check if it's a weekly chart isWeekly = timeframe.isweekly
// Check if it's a monthly chart isMonthly = timeframe.ismonthly
ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יוכלו להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אבל השימוש החוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.