el_chartel
New member
Yes, thats what I am looking for. Thanks!I think it sounds like you are looking for something like this:
https://usethinkscript.com/threads/yesterdays-volume-vs-todays-volume-at-same-time-indicator.317/
Yes, thats what I am looking for. Thanks!I think it sounds like you are looking for something like this:
https://usethinkscript.com/threads/yesterdays-volume-vs-todays-volume-at-same-time-indicator.317/
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Hi All,
Can you please share the code to fetch value of the 2nd candle after open it may be 10 min or 30min.
Looking for the current day 2nd candle values.
Thanks in advance.
SV
### Grabs Value of 2nd Volume Bar of the current INTRADAY as a Label
### Only works on Intraday timeframe
def Bar2 = GetDay() <> GetDay()[2] ;
def Bar2Volume = if (Bar2) then volume else Bar2Volume[1];
AddLabel(yes, " Intraday Volume Bar Two: " + bar2volume , Color.yellow);
#example #1
input Start = 20210301;
def day = GetYYYYMMDD();
AddLabel(1, “Trading Days counter = “ + CountTradingDays(Start, day), color.LIGHT_GREEN);
#example #2
input Start = 2020201;
def day = GetYYYYMMDD();
AddLabel(1, “Trading Days counter = “ + CountTradingDays(Start, day), color.LIGHT_GREEN);
I am trying to get a better understanding of how the GetYYYYMMDD() function works (or possibly how it is calculated), if I put in the code (example #1) then I get an error stating “the from date needs to be before the to date“. However if I put in the code (example 2) I get an accurate count of trading days. Examples one and two are identical only the input “Start” number is from one year prior. I feel like the code is possibly doing exactly what it should, but that I am not wrapping my head around this properly.
Thank you in advance for any help.
Code:#example #1 input Start = 20210301; def day = GetYYYYMMDD(); AddLabel(1, “Trading Days counter = “ + CountTradingDays(Start, day), color.LIGHT_GREEN); #example #2 input Start = 2020201; def day = GetYYYYMMDD(); AddLabel(1, “Trading Days counter = “ + CountTradingDays(Start, day), color.LIGHT_GREEN);
Or this could possibly be a CountTradingDays issue I suppose? I’m not 100% sure where my issue is or how to diagnose it. Very glad I found this forum, everyone here has been super helpful.
#Example_CountTradingDaysWorkaround
#Sleepyz
#CountTradingDays() has always had unexplained problems with the 'TO' date. This workaround by identifying the last bar on the chart and then defining the date, seems to workaround this problem.
input StartBarDate = 20210301;
def lastGetYYYYMMDD = HighestAll(if !IsNaN(close) and IsNaN(close[-1]) then GetYYYYMMDD() else Double.NaN);
AddLabel(yes, CountTradingDays(StartBarDate, lastGetYYYYMMDD) + " Trading days from " + " " + AsPrice(StartBarDate), Color.LIGHT_GRAY);
def FirstBar = if SecondsFromTime(0930) == 0 and
SecondsTillTime(0930) == 0
then get barNumber()
else FirstBar[1];
I'm trying to get the close of the very first candle of the entire chart I have loaded in TOS. I've seen studies to find the first candle of the day:
Code:def FirstBar = if SecondsFromTime(0930) == 0 and SecondsTillTime(0930) == 0 then get barNumber() else FirstBar[1];
but can't figure out how to get data on the first candle of the chart. Any ideas?
# FirstChartBarClose
# Created by rad14733 for usethinkscript.com
#
def firstClose = Round(First(close(GetSymbol())), 2);
AddLabel(1, "First Candle Close For " + GetSymbol() + " = " + firstClose, Color.WHITE);
@tomsk @XeoNoX @rad14733@temtam Try the following code and see if it is what you are looking for...
Ruby:# FirstChartBarClose # Created by rad14733 for usethinkscript.com # def firstClose = Round(First(close(GetSymbol())), 2); AddLabel(1, "First Candle Close For " + GetSymbol() + " = " + firstClose, Color.WHITE);
declare hide_on_daily;
declare once_per_bar;
def isRollover = GetYYYYMMDD() != GetYYYYMMDD()[1];
def beforeStart = GetTime() < RegularTradingStart(GetYYYYMMDD());
def firstBarOfDay = if (beforeStart[1] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0;
Rec MOHigh = if MOHigh[1] == 0 or firstbarofday[1] == 0 AND firstbarofday == 1 then high else MOHigh[1];
Rec MOLow = if MOLow[1] == 0 or firstbarofday[1] == 0 AND firstbarofday == 1 then low else MOLow[1];
Def MOWidth = MOHigh - MOLow;
AddLabel (yes, "AvgOR: " + round(mowidth,2), color.yellow);
AddChartBubble(
firstBarOfDay ,
close,
"Fb",
Color.white,
yes);
@TraderKevin as requested here is your scan with label rounded to the nearest whole number from the tenths of a decimal.
Plots as a label the value of the average of the first 6 volume bars of each new daily REGULAR HOUR trading session. Can use on any time frame under a day. Set your timeframe to 5 min chart and it will adjust for 5 mins.
Code:##Thinkscript by XeoNoX via https://usethinkscript.com/ #Plots as a label the value of the average of the first 6 volume bars of each new daily REGULAR HOUR trading session. def isRollover = GetYYYYMMDD() != GetYYYYMMDD()[1]; def beforeStart = GetTime() < RegularTradingStart(GetYYYYMMDD()); def afterEnd = GetTime() > RegularTradingEnd(GetYYYYMMDD()); ####DEFINES FIRST 6 BARS OF REGULAR SESSION def firstBar1 = if (beforeStart[1] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def firstBar2 = if (beforeStart[2] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def firstBar3 = if (beforeStart[3] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def firstBar4 = if (beforeStart[4] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def firstBar5 = if (beforeStart[5] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def firstBar6 = if (beforeStart[6] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; ##RECORDS AND GRABS VALUE OF THE REFERENCED VOLUME BAR rec firstBarVolume = if firstBar1 then volume else firstBarVolume[1]; rec firstBarVolume2 = if firstBar2 then volume else firstBarVolume2[1]; rec firstBarVolume3 = if firstBar3 then volume else firstBarVolume3[1]; rec firstBarVolume4 = if firstBar4 then volume else firstBarVolume4[1]; rec firstBarVolume5 = if firstBar5 then volume else firstBarVolume5[1]; rec firstBarVolume6 = if firstBar6 then volume else firstBarVolume6[1]; ### SUMS UP ALL 6 BARS and then AVERAGES THEM BY DIVIDING BY 6 def scan = (firstbarvolume + firstbarvolume2 +firstbarvolume3 + firstbarvolume4 + firstbarvolume5 + firstbarvolume6) / 6; ##PLOTS THE BARS THAT ARE BEING COUNTED plot barcount = firstbarvolume6; #LABEL OF Scan Rounded to the nearest Decimal. AddLabel(yes, " Avg of First 6 vol bars: " + Round(scan,0), Color.yellow);
@XeoNoX I know I'm really late for this conversation. lol... However is there a way to get this exact script to work for the previous trading day? In other words, get the previous days first 6 hourly trading bars?
anyway can plot a line at the Last bar of day??One would think finding the first and last bar of the day in thinkscript would be easy.
I struggled to identify the first and last bars WITH extended session on and extended session off in the same study. I wrote this study, GetDayValues, to help me debug how to identify these so I could track PreviousClose and DayOpen bars in Magic Fibonacci 1.272 Indicator for ThinkorSwim v2.
I ran into issues around GetTime(), RegularTradingStart(), and RegularTradingEnd() and sometimes thinkscript would go a little bonkers and break my study if I wrote code in a certain way, which seemed valid at the time.
Sidebar: I will submit a feature request to the thinkscript to add a few built-in boolean values like IsFirstRegularBar, IsLastRegularBar, IsFirstExtendedBar, IsLastExtendedBar, IsRegularSession, IsExtendedSession, etc.
So what did I finally use to determine this?
Image of the GetDayValues study in action
Discussion of the chart and numbed highlights
(1) Notice the cursor is on the first bar of the day
(2) Notice the colors of the labels and how they match the indicators in the lower studies
(3) Notice the values of the labels that are applicable on the highlighted first bar of the day
(4) Notice how the indicators differ on extended and non-extended charts
Once I plotted these values (some by trial and error), I was able to finally define FirstBarOfDay and LastBarOfDay and subsequently use those to track other values like previous close, opening bar, and for other studies like Opening Range, and others, these calculations could be very useful.
The secret sauce is in the following logic in the code:
Code:# # logic # def nan = Double.NaN; def isRollover = GetYYYYMMDD() != GetYYYYMMDD()[1]; def beforeStart = GetTime() < RegularTradingStart(GetYYYYMMDD()); def afterEnd = GetTime() > RegularTradingEnd(GetYYYYMMDD()); def firstBarOfDay = if (beforeStart[1] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def lastBarOfDay = if (afterEnd[-1] == 1 and afterEnd == 0) or (isRollover[-1] and firstBarOfDay[-1]) then 1 else 0;
Once you see it, maybe it makes perfect sense. As previously discussed, it may not be that obvious to others, and was not obvious to me. I used things like GetDate() != GetDate()[1] and other things that hard-coded start of trading to 9:30 or 6:30 which varies based on your timezone.
So I am now hopeful that this pattern for finding first/last bars can be used as the de-facto standard for how to do this. If there is a better way that you know of, please feel free to share. I could not find one with a quick search of the internet, thinkscript docs, etc.
Link to GetDayValues Flex Grid
https://tos.mx/EXWUIK
Source Code for GetDayValues
Code:# GetDayValues # Author: Kory Gill, @korygill # # VERSION HISTORY (sortable date and time (your local time is fine), and your initials # 20190823-1400-KG - Created. # ... # ... declare hide_on_daily; declare once_per_bar; input onUpper = yes; # # logic # def nan = Double.NaN; def isRollover = GetYYYYMMDD() != GetYYYYMMDD()[1]; def beforeStart = GetTime() < RegularTradingStart(GetYYYYMMDD()); def afterEnd = GetTime() > RegularTradingEnd(GetYYYYMMDD()); def firstBarOfDay = if (beforeStart[1] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def lastBarOfDay = if (afterEnd[-1] == 1 and afterEnd == 0) or (isRollover[-1] and firstBarOfDay[-1]) then 1 else 0; # # Identify first bar of day and last bar of day on chart # AddChartBubble( firstBarOfDay and onUpper, close, "First Bar of Day", Color.GREEN, yes); AddChartBubble( lastBarOfDay and onUpper, close, "Last Bar of Day", Color.GREEN, no); # # plots # plot p1 = if !onUpper then isRollover else nan; plot p2 = if !onUpper then beforeStart else nan; plot p3 = if !onUpper then afterEnd else nan; plot p4 = if !onUpper then firstBarOfDay else nan; plot p5 = if !onUpper then lastBarOfDay else nan; p1.SetDefaultColor(GetColor(1)); p2.SetDefaultColor(GetColor(2)); p3.SetDefaultColor(GetColor(3)); p4.SetDefaultColor(GetColor(4)); p5.SetDefaultColor(GetColor(5)); AddLabel(!onUpper, "isRollOver", GetColor(1)); AddLabel(!onUpper, "beforeStart", GetColor(2)); AddLabel(!onUpper, "afterEnd", GetColor(3)); AddLabel(!onUpper, "firstBarOfDay", GetColor(4)); AddLabel(!onUpper, "lastBarOfDay", GetColor(5));
Disclaimer and Notices
You are free to use this code for personal use, and make derivative works from it. You are also GRANTED permission to use this code (or derivative works) for commercial purposes which includes and is not limited to selling, reselling, or packaging with other commercial indicators. Headers and attribution in this code should remain as provided, and any derivative works should extend the existing headers.
anyway this can be plotted as a chart label rather than a chart bubble? that way its out of the way? any assistance would be greatly appreciated
Ruby:declare lower; input showbubble = {default top, bottom}; def nan = Double.NaN; def isRollover = GetYYYYMMDD() != GetYYYYMMDD()[1]; def beforeStart = GetTime() < RegularTradingStart(GetYYYYMMDD()); def afterEnd = GetTime() > RegularTradingEnd(GetYYYYMMDD()); def firstBarOfDay = if (beforeStart[1] == 1 and beforeStart == 0) or (isRollover and beforeStart == 0) then 1 else 0; def lastBarOfDay = if (afterEnd[-1] == 1 and afterEnd == 0) or (isRollover[-1] and firstBarOfDay[-1]) then 1 else 0; plot x = 100; plot y = 0; x.SetDefaultColor(Color.BLACK); y.SetDefaultColor(Color.BLACK); AddChartBubble( firstBarOfDay , if showbubble == showbubble.top then x else y, "F", Color.WHITE, yes); AddChartBubble( lastBarOfDay , if showbubble == showbubble.top then x else y, "L", Color.WHITE, yes);
i guess i meant more as a ADDLABEL option,,,no chart bubbles on the chart just a dynamic label on upper left corner,,,If you are wanting to move the bubbles more out of range, similar to label placement, then this workaround may help.
The following script will appear in as a lower pane indicator. Move it to the upper pane. At the input screen, uncheck left axis. You can choose to have the bubbles display near the top or bottom at the input showbubble.
Also, the lines that the bubbles can display on are defaulted to the color black. You can change that to something closer to your chart's background color if you like.
i guess i meant more as a ADDLABEL option,,,no chart bubbles on the chart just a dynamic label on upper left corner,,,
was just looking for something like how this chart has this Purple Labels On this chart,,, or would this just be the "Close" that tos already shows by default,,, am fairly newI was unsure what you would havew the ADDLABEL to display in it. All I saw was some form of First and Last text labels. Please explain and someone may be able to help.
isnt allowing me to add imageI was unsure what you would havew the ADDLABEL to display in it. All I saw was some form of First and Last text labels. Please explain and someone may be able to help.
Start a new thread and receive assistance from our community.
useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.
We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.
If you are new, or just looking for guidance, here are some helpful links to get you started.