Questions (2376)

Votes
Answers
Views
Question
0
votes
1
answer
62
views
asked 5 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
80
views
asked 5 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
725
views
asked 5 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
163
views
asked 5 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
317
views
asked 5 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
120
views
asked 5 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
140
views
asked 5 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
265
views
asked 5 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.
0
votes
1
answer
145
views
asked 5 years ago by
Category: Chart Studies
Hello.  I am trying to implement a two timeframe stochastic on a one minute chart on ToS by adapting some code I found online.  The 1 min stochastic is fine, but the 10 min is plotted like a step function.  I assume because its calculating and plotti...
0
votes
1
answer
56
views
asked 5 years ago by
Category: Chart Studies
If you look at the price levels on the right hand side of the screen it will include a bubble with that level. In order to not see that bubble, you have to go to the sprocket for that indicator that I have above and deselect show bubble. My goal is t...