The Double Ribbon - ChartPrime indicator is a powerful tool that combines two sets of Simple Moving Averages (SMAs) into a visually intuitive ribbon, which helps traders assess market trends and momentum. This indicator features two distinct ribbons: one with a fixed length but changing offset (displayed in gray) and another with varying lengths (displayed in...
Strategy Name: Optimized Heikin Ashi Strategy with Buy/Sell Options Description: The Optimized Heikin Ashi Strategy is a trend-following strategy designed to capitalize on market trends by utilizing the smoothness of Heikin Ashi candles. This strategy provides flexible options for trading, allowing users to choose between Buy Only (long-only), Sell Only...
The end of month effect is a well known trading strategy in the stock market. Quite simply, most stocks go up at the end of the month. What's even better is that this effect spills over to the next phew days of the next month. In this script we backtest this theory which should work especially well on SP500 pair. By default the strategy buys 2 days before the...
This is a very simple long-only strategy I've used since December 2022 to manage my Bitcoin position. I'm sharing it as an open-source script for other traders to learn from the code and adapt it to their liking if they find the system concept interesting. General Overview Always do your own research and backtesting - this script is not intended to be traded...
This indicator is created to give you the daily ATR 2% and 10% values for any product that you are looking at. The way the indicator is designed is to only show the most recent 2 and 10 percent values on any chart and will not show you any other number. If you are hovering over price that occurred in the past it will show zeros on the values. To get the right...
This Average Range Lines indicator identifies high and low price levels based on a chosen time period (day, week, month, etc.) and then uses a simple moving average over the length of the lookback period chosen to project support and resistance levels, otherwise referred to as average range. The calculation of these levels are slightly different than Average True...
This indicator is a part of the script I coded earlier this month. The name is to surprise one of our discord member. I will publish that indicator in a few days as well, but publishing this as a gesture of giving back to the community. Indicator has: 10 Moving Averages Adjustable Color, Opacity and Size etc Shows Labels for each of the MA. Can be shifted...
Opening Range with Infinite Price Targets is an ORB indicator that automatically generates price targets into infinity based on a user-defined % of range. This indicator includes many nice-to-have features missing from other indicators. Such as: Price Target Labels with Price tooltip, want to know exactly what price pt3 is at? Hover over it and see. Custom...
Welcome traveler ! Here is my first indicator I made after 3 days of hardlearning pine code (beginner in coding). I hope it will please you, if you have any suggestion to enhance this indicator, do not hesitate to give me your thoughts in the comments section or by Private message on trading View ! How does it works ? It's a simple MACD strategy as describe...
Simple Level provides a (you guessed it) simple user to user level sharing experience, with less boxes, less formatting, and less hassle. Simply insert your levels into the input box, separated by commas. That's it. Example: 1,2,3,4,5 The Simple Levels indicator will automatically color your lines based on their position to the current close price. If the level is...
A simple buy and hold strategy. A short or a long position can be chosen. The start date will determine the date where your position will start and end date is the date it will end. This works well as a baseline to your other existing strategies since buy and hold is just the simplest strategy available.
Provides a color coded indicator based upon both the slope of a moving average of choice, and the asset's position in relation to that moving average. If the specified moving average is downward sloping and the asset closes below the moving average the indicator will be red. If the specified moving average is upward sloping and the asset closes above the moving...
Users can display moving averages from higher time frame charts and display them on their current chart. This script supports up to 4 moving averages aggregated from a selected time frame. Each plot can be toggled if the user does not wish to have all 4 plots displayed. Inputs allow user to edit: Moving average length Average type Color Timeframe input...
Library "console" Simple debug console to print messages from your strategy code. USAGE : Make sure your strategy overlay is false Import the library : import keio/console/1 as console init(lines, panes) Initialise function. USAGE : var log = console.init() Parameters: lines : Optional. Number of lines to display panes :...
This indicator shows market structure. The standard method of using Williams Highs and Lows as pivots, is something of an approximation. What's original here is that we follow rules to confirm Local Highs and Local Lows, and strictly enforce that a Low can only follow a confirmed High and vice-versa. -- Highs and Lows To confirm a candle as a Local High, you need...
Just one more simple and useless Oscilator based on EMA. I've used Standard Deviation of (close - ema) to show overheated zones.
This is a simple reproduction of a common indicator used for analyzing the current momentum trend. Golden Cross => 50 day simple moving average (sma) crosses over the 200 sma Death Cross => 50 day simple moving average (sma) crosses under the 200 sma Forecasting used in this indicator is a simple moving average, considering the price sma with...