Trading Chart Patterns Helper

Highlights trading chart patterns for swing trading

// ==UserScript==
// @name         Trading Chart Patterns Helper
// @namespace    http://yoursite.example.com
// @version      1.0
// @description  Highlights trading chart patterns for swing trading
// @author       Your Name
// @match        https://www.strike.money/technical-analysis/chart-patterns*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Example: Add a highlight effect to the chart patterns link
    const targetLink = document.querySelector('a[href*="chart-patterns"]');
    if (targetLink) {
        targetLink.style.backgroundColor = 'yellow';
        targetLink.style.fontWeight = 'bold';
    }
})();