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
//author @X0_Trading_levels | |
//script to plot various trading levels | |
//version 1.3 | |
//last edited 24/08/2019 | |
//title | |
study(title="X0_Trading_levels", shorttitle="X0_Trading_levels", overlay=true) | |
// holds the daily price levels | |
dailyOpen = security(tickerid, 'D', open) |
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
//author @TraderX0 | |
//script to plot levels | |
//version 1.2 | |
//last edited 12/03/2019 | |
//title | |
study(title="TraderX0_Levels", shorttitle="TraderX0_Levels", overlay=true) | |
// holds the daily price levels | |
dailyOpen = security(tickerid, 'D', open) |
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
//author @TraderX0 | |
//script to plot daily Open high and low | |
//version 1.1 | |
//last edited 22/11/2018 | |
//title | |
study(title="TraderX0__O_H_L", shorttitle="TraderX0_O_H_L", overlay=true) | |
// holds the daily price levels | |
openPrice = security(tickerid, 'D', open) |
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
// All credits go to CMoody for the original Idea... | |
// THE MTFRSI is an extension of his original script to now encorporate 3RSI's on one panel | |
study(title="TraderX0 3-RSI MTF", shorttitle="X0_3_RSI_MTF", precision=0) | |
//candle source | |
src = close | |
//rsi setup | |
//first RSI inputs | |
firstRsiTimeframe = input(title="Select 1st RSI Timeframe", type=resolution, defval="60") |