Updated Script for Please use it at will and make it your own. This only tells High, low, Open, Close for the past day or week.
//@version=5 indicator("Double Breakout Screener", overlay=true) boxSize = input(1, title="Box Size") reversal = input(3, title="Reversal Amount") // Define the PnF logic here // This is a simplified example and may need adjustments var float lastTop = na var float lastBottom = na if (close > lastTop) label.new(x=bar_index, y=high, text="Double Top...
This script serves as a visual reminder not to place a trade before 9:30 am EST.
Lunar Phases Overlay Script Version: 1.0 Author: Rick Apuzzo III Date: October 2024 This script overlays lunar phases on a trading chart, allowing users to visualize the moon's phases (New Moon, Full Moon, First Quarter, Last Quarter, etc.) directly on the price chart. It also includes a label with the month and year at the first bar of each month, positioned at...
This strategy combines Bollinger Bands and Fibonacci retracement/extension levels to identify potential entry and exit points in the market. Here’s a breakdown of each component and how the strategy works: 1. Bollinger Bands: Bollinger Bands consist of a simple moving average (SMA) and two standard deviations (upper and lower bands) plotted above and below the...
//@version=5 strategy("Fibonacci & Bollinger Bands Strategy", overlay=true) // Inputs for Bollinger Bands length = input(20, title="Bollinger Bands Length") src = input(close, title="Source for Bollinger Bands") mult = input(2.0, title="Bollinger Bands Multiplier") // Bollinger Bands Calculation basis = ta.sma(src, length) dev = mult * ta.stdev(src,...
DF: Horizontal Levels and Colors for NYSE TICK Chart This is intended to be added very specifically to your NYSE TICK chart. This script creates a custom indicator designed to enhance the visual analysis of market breadth through the NYSE TICK data. It features: 1. **Horizontal Levels**: - **1300 and -1300**: Gray lines indicating extreme bullish and...
The Moving Average Cloud Indicator is a technical analysis tool that helps traders identify trends an d potential entry/exit points in the market. This indicator utilizes multiple types of moving averages to create a visual representation of price trends and market momentum.
decelerated Parabolic SAR I have implemented the Parabolic SAR mentioned in Makenna Barbara's paper, 'The Efficacy of Modified Momentum Based Technical Indicators on U.S. Equities: A Study of Parabolic SAR.'
real Parabolic SAR I realized the values of the existing PSAR in TradingView were different, so I found the calculation method in the book "New Concepts in Technical Trading Systems" and created the original version.
The Kristjan Qullamäggie Screener - NIFTYMIDSML400 is a custom-built indicator designed to help identify high-momentum stocks within the NIFTYMIDSML400 index that meet the criteria for breakout opportunities, based on Kristjan Qullamäggie’s trading strategy. This screener focuses on stocks that: Relative Strength (RSI): Stocks with strong relative strength,...
Essentially an indicator that works with my strategy to instantly tell me ho many cons to buy when my entry comes. Specific to my strategy since it’s such a fast moving strategy that requires instant calculations.
Summary of the Script: This script provides real-time insights into MicroStrategy’s financial metrics related to its Bitcoin holdings. It allows you to track the Net Asset Value (NAV) per share, the Market Cap, and the NAV Multiple by fetching live data from TradingView and calculating these values dynamically based on the latest prices and adjustable inputs. The...
This script implements a trading strategy using a Zero-Lag Moving Average (ZLMA) and a standard Exponential Moving Average (EMA) to identify trend direction and generate buy/sell signals. Here’s what each part of the code does: 1. **Strategy Initialization**: The strategy is named "Zero-Lag MA Trend Levels Strategy ". It is set to overlay on the price chart...
### General Overview The script plots signals on the price chart and executes trades based on certain technical indicators, such as Bollinger Bands and ATR. It also restricts trading to specific hours of the day and closes all trades at a given time. ### Settings The script provides several user-configurable settings: 1. **ATR Period**: The number of periods...
█ OVERVIEW This script implements the Ultimate Strength Index (USI) indicator, introduced by John Ehlers in his article titled "Ultimate Strength Index (USI)" from the November 2024 edition of TASC's Traders' Tips . The USI is a modified version of Wilder's original Relative Strength Index (RSI) that incorporates Ehlers' UltimateSmoother lowpass filter to...
this is a simple z score indicator which works reasonably well for most market conditions. Customize settings as needed... Happy trading!!!