- Questions
- Chart Studies
Votes
Answers
Views
Question
0
votes
1
answer
199
views
asked 6 years ago by Minh Huynh
Category:
Chart Studies
Hahn, I want to kind of change the code of PriceOsc, so that this formula plot PriceOsc = (MovingAverage(averageType, price, fastLength) - MovingAverage(averageType, price, slowLength))/"A"; and I want to input "A" = 1 if price <100 or "A" = 10 if...
0
votes
1
answer
108
views
asked 6 years ago by Doug Doyle
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
209
views
asked 6 years ago by kh amin
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
111
views
asked 6 years ago by Craig Habermehl
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
266
views
asked 6 years ago by Ben Sherman
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
127
views
asked 6 years ago by Steve Peterson
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
538
views
asked 6 years ago by J G
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
610
views
asked 6 years ago by Harinder Singh
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
602
views
asked 6 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
150
views
asked 6 years ago by Juan Banderas
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...