Questions (2348)

Votes
Answers
Views
Question
0
votes
1
answer
152
views
asked 4 years ago by
Category: Chart Studies
Hi, I hope you can help. I have a scanner or study that finds  Inside Bars, and after the inside Bar is close it shows me an alert with an arrow for the third bar.  I have the code here: def IsUp = close > open; def IsDown = close < open; def I...
0
votes
1
answer
175
views
asked 4 years ago by
Category: Watch Lists
Hi Pete, I'm looking to add a custom column to show the number of days the stock had been either above/below after a VWAP crossover. Ex: A bullish cross would show previous days below and vice versa for a bearish cross. Thanks again!
0
votes
1
answer
45
views
asked 4 years ago by
Category: Chart Studies
Hi. I really appreciate your forum.  I'm have a conditional label that shows a MACD trend for the index a stock is in. For instance, if GetSymbol() is AAPL then call a MACD script that accepts NDX as the close(symbol). Is there a way to retrieve...
0
votes
1
answer
56
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, Is it possible to setpaintingstrategy the previous plot?  I want to be able to put a blue point on top of an RSI if an RSI peak has formed. Thanks   plot RSIpeak= if (rsi < rsi [1] and rsi [1] > rsi [2])  then rsi [1] else double....
1
vote
3
answers
552
views
asked 4 years ago by
Category: Chart Studies
Everytime I want to work on a study, opening the code editor is a hassle. Is there a better way to edit thinkscript than clicking Studies -> Edit Studies -> Right click Study name -> Edit? Thanks.
0
votes
1
answer
133
views
asked 4 years ago by
Category: Chart Studies
Let's say I am looking at 1min chart. I can plot, let's say, SVE pivots of daily aggregation. I also want to plot the pivots with aggregationperiod.month. However, the monthly won't show up except for the 1st and 2nd day of month (As in the bar is in...
1
vote
1
answer
263
views
asked 4 years ago by
Category: Stock Scanners
Hello there, I was wondering if it was possible to scan for stocks based on yesterday's change from the open. This is what I have for today's % change from the open: plot scan = close <= open * 0.97; And as a dollar value: plot scan = close <= ...
0
votes
2
answers
102
views
asked 4 years ago by
Category: Strategy Guide
(I don't know where the correct place to ask this question, please move if necessary) I have a strategy currently working on TOS and I wanted to "automate" a trades a bit. I understand that the closest we can 'automate' our trading (at least through ...
0
votes
1
answer
119
views
asked 4 years ago by
Category: Chart Studies
I would like to have an LRC that I can modify the number of days back as well as the amount of standard deviation I am looking for.  I know there are several regression plots out there that I can do this...but the one thing I would like is the plot t...
0
votes
1
answer
174
views
asked 4 years ago by
Category: Stock Scanners
Is there a script to calculate the percent change from after hours close the prior day to current price the following day? Or thoughts? It only seems to use regular hrs close.