hero87s

"weekly_monthly_peaks_and_troughs.js"

TADAWUL:4240   FAWAZ ABDULAZIZ ALHOKAIR CO.
// Weekly peak and trough indicator

function weekly_monthly_peaks_and_troughs(close, volume) {
// Calculate the weekly and monthly close prices
var weekly_close = close.resample("W").last();
var monthly_close = close.resample("M").last();

// Initialize the peak and trough arrays
var weekly_peaks = ;
var weekly_troughs = ;
var monthly_peaks = ;
var monthly_troughs = ;

// Loop through the data and find the weekly and monthly peaks and troughs
for (var i = 0; i < weekly_close.length; i++) {
// Find the weekly peak
if (i == 0 || weekly_close > weekly_close) {
weekly_peaks.push(weekly_close);
}

// Find the weekly trough
if (i == 0 || weekly_close < weekly_close) {
weekly_troughs.push(weekly_close);
}

// Find the monthly peak
if (i == 0 || monthly_close > monthly_close) {
monthly_peaks.push(monthly_close);
}

// Find the monthly trough
if (i == 0 || monthly_close < monthly_close) {
monthly_troughs.push(monthly_close);
}
}

// Return the peak and trough arrays
return {
weekly_peaks: weekly_peaks,
weekly_troughs: weekly_troughs,
monthly_peaks: monthly_peaks,
monthly_troughs: monthly_troughs,
};
}
Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.