Monday range by MatboomThe "Monday Range" Pine Script indicator calculates and displays the lowest and highest prices during a specified trading session, focusing on Mondays. Users can configure the trading session parameters, such as start and end times and time zone. The indicator visually highlights the session range on the chart by plotting the session low and high prices and applying a background color within the session period. The customizable days of the week checkboxes allow users to choose which days the indicator should consider for analysis.
Session Configuration:
session = input.session("0000-0000", title="Trading Session")
timeZone = input.string("UTC", title="Time Zone")
monSession = input.bool(true, title="Mon ", group="Trading Session", inline="d1")
tueSession = input.bool(true, title="Tue ", group="Trading Session", inline="d1")
Users can configure the trading session start and end times and the time zone.
Checkboxes for Monday (monSession) and Tuesday (tueSession) sessions are provided.
SessionLow and SessionHigh Functions:
SessionLow(sessionTime, sessionTimeZone=syminfo.timezone) => ...
SessionHigh(sessionTime, sessionTimeZone=syminfo.timezone) => ...
Custom functions to calculate the lowest (SessionLow) and highest (SessionHigh) prices during a specified trading session.
InSession Function:
InSession(sessionTimes, sessionTimeZone=syminfo.timezone) => ...
Determines if the current bar is inside the specified trading session.
Days of Week String and Session String:
sessionDays = ""
if monSession
sessionDays += "2"
if tueSession
sessionDays += "3"
tradingSession = session + ":" + sessionDays
Constructs a string representing the selected days of the week for the session.
Fetch Session Low and High:
sessLow = SessionLow(tradingSession, timeZone)
sessHigh = SessionHigh(tradingSession, timeZone)
Calls the custom functions to obtain the session low and high prices.
Plot Session Low and High and Background Color for Session
plot(sessLow, color=color.red, title="Session Low")
plot(sessHigh, color=color.red, title="Session Low")
bgcolor(InSession(tradingSession, timeZone) ? color.new(color.aqua, 90) : na)
Mondays
Monday Session High/LowThis script tracks and draw the High and the Low for Monday session across the whole week period.
Many crypto traders use the high and low extremes for Monday session as an confluence on how the price action during the week reacts against it.
Monday Highlight (Futures, Forex, CFD)Hello Traders
This is a very simple indicator that will highlight the background vertically over every Monday for Futures, Forex and CFD markets. I use this indicator in all my technical analysis as it lets me very quickly see where each week begins without being too distracting. It can be easily customizable to whatever color, transparency level and visibility you want. Because of the way closing times are processed in different markets I could not make a single indicator to include all markets, but check out my second Monday Highlight indicator for Crypto and Stock markets.
Hope you find them useful and don't forget to add them to your "favorites" list for easy access.
Monday Highlight (Crypto & Stocks)Hello Traders
This is a very simple indicator that will highlight the background vertically over every Monday for Crypto and Stock markets. I use this indicator in all my technical analysis as it lets me very quickly see where each week begins without being too distracting. It can be easily customizable to whatever color, transparency level and visibility you want. Because of the way closing times are processed in different markets I could not make a single indicator to include all markets, but check out my second Monday Highlight indicator for Futures, Forex and CFD markets.
Hope you find them useful and don't forget to add them to your "favorites" list for easy access.
Key Levels by RifeMy take on Key Levels script that plots:
- Daily Open
- Weekly Open
- Monthly Open
- Day of Week Range (i.e. Monday Range)
- Initial Balance
Open levels are not visible on higher time frames, such as Daily Open is not visible on Weekly Open nor Monthly Open.
Initial Balance is not visible on the following timeframes: 2H, 4H, 6H, 8H, 1D, 1W and 1M. All other time frames will show it.
Monday's Range TTThis script plots following:
- Mondays Trading range: Open, High, Low, Colored Range
- Weekly's Trading range: Open, High, Low, Colored Range
- Monthly's Open
All colors can be changed, default colors are for a dark theme
Hit the like button!
X0_Trading_levelsScript which marks out the trading ranges I often like to have mapped out on the charts:
Mondays Trading range - open, high, low
Daily open, high, low
Weekly open
Monthly open.
Can change all colours