This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
// © By Lucas Alberto | |
// Apply this script to short time frames (e.g., 1-minute or 5-minute charts) | |
// The Buy label will appears when a bullish crossover (fast MA 1 crossing above fast MA 2) accompanied by high volume. | |
// The Sell label will appears when a bearish crossover (fast MA 1 crossing below fast MA 2) accompanied by high volume. | |
// Allso the take profit and stop loss lines will appears respectively. | |
//@version=6 | |
indicator("Sell Tag Label Bubble Strategy", overlay=true) |