Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
98
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I am trying to plot a line from the pre-market open price but I only want it to display on the current day. this code works but displays on previous days.  Can you help? #Pre-Market open def day = GetDay(); def PMfirstBar = day != day[1]; de...
0
votes
1
answer
182
views
asked 5 years ago by
Category: Chart Studies
Hello, I am using a reference to a licensed study "SequenceCounter" to have a horizontal line extended to the right but it only shows at a fixed point. Is there a way to extend the horizontal line to the right? Please see attachment for details and e...
0
votes
1
answer
89
views
asked 5 years ago by
Category: Chart Studies
Hi Pete I was hoping to get an alert added to the LRC code if the price action crosses the upper or lower 2 deviation line...   input price = CLOSE; input length = 38; input beginDate = 0; input beginTime = 0; input numDevDn1 = -1.0; input numDe...
0
votes
1
answer
208
views
asked 5 years ago by
Category: Chart Studies
Hello! I am new to thinkscript and I am having trouble finding a solution for this. My question is whether or not it is possible to display this value as a % value in the bubble. The bubble displays the gain from the day's open to the day's high. The...
0
votes
1
answer
106
views
asked 5 years ago by
Category: Chart Studies
Hello Pete - thank you so much for all the great info provided here!  I would like to obtain the code for a presumably simple study - (EMA+SMA)/2.  The user would need to be able to enter the EMA and SMA values, and select line weight, style, color, ...
0
votes
1
answer
459
views
asked 5 years ago by
Category: Chart Studies
Is it possible to search for all shared scripts for a time period (such as today, or yesterday) on tos.mx?
1
vote
1
answer
570
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, How can I draw an auto line on pre-market (1st price after 4 AM ) opening price? Thanks
0
votes
1
answer
558
views
asked 5 years ago by
Category: Chart Studies
Hi This code work fine unless it is a FUTURE symbol what im missing here ? def X = if getSymbolPart(1) == "/ES" then 2700 else if getSymbol() == "SPY" then 270 else Double.NaN; plot line = X ;
0
votes
1
answer
120
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I have some code for a chart label that isn't calculating the sum total correctly for the "number of trades on the day" . The code seems to only be counting for the current 1-minute bar.   I would like it to take the the sum total of...
0
votes
1
answer
311
views
asked 5 years ago by
Category: Chart Studies
Pete I have an auto fibonacci study and was hoping to add the price and the fib level percentage to it.  I would like to have it layed out the way TOS lays it out. input sideline = no; def f11 = 0.236; def f12 = 0.382; def f13 = 0.50; def f14 = 0.618...