Questions (2368)

Votes
Answers
Views
Question
0
votes
1
answer
320
views
asked 5 years ago by
Category: Stock Scanners
Been trying for hours, im trying to make a bullish scan but i keep coming up with no results   MACD- blue line above the orange within the past 5 days Momentum- above zero within past five days TTM Squeeze- above zero within past 5 days i use th...
0
votes
1
answer
245
views
asked 5 years ago by
Hi Pete, I was looking into importing custom wave file into this alert study for the alert to sound different than the four default in TOS. def buy = !IsNaN(PPS().”buySignal”); def sell = !IsNaN(PPS().”SellSignal”); Alert(buy, \"PPS Buy\", Alert.BAR,...
0
votes
1
answer
397
views
asked 5 years ago by
Category: Stock Scanners
Hello I hope you are all doing well. I am looking for a way to get an alert and or create a scanner in TOS Think or Swim for when the MACD lines change from one color to another color. Alternatively I guess if it could tell me when the lines change f...
0
votes
1
answer
374
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I was working on some code from learning from some of your past posts. However, I am lost when it comes to plotting an arrow when the following condition below in bold is met. Can you use the solution below and show us how to plot an arro...
0
votes
1
answer
119
views
asked 5 years ago by
Category: Chart Studies
hi pete. i love the new videos you are doing! they are awesome. in one of the market tech videos you showed your indicator that shows pullback percentage with colored lines. would you mind sharing the code for it? thanks for reading ru
0
votes
1
answer
506
views
asked 5 years ago by
Category: Chart Studies
Hey Pete, I've seen a few labels being created but was wondering if you could create a label showing the range of a linear regression channel from upper LR to lower LR. here is the code for the linear regression channel I'm using. input price = close...
0
votes
1
answer
132
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I tried searching for this but I didn't have any luck. I want to plot the high and low for a specific time period, 15:00 to 16:15 for example, but I also want the line to only plot during that time period if possible. I'll show you what I tr...
0
votes
1
answer
139
views
asked 5 years ago by
Hello! I am trying to set up an alert on thinkorswim platform with the Williams%R. The W%R has an overbought level of -20 and an oversold level of -80. I would like to add an alert that signals when the indicator crosses and closes below -20 and anot...
0
votes
1
answer
1443
views
asked 5 years ago by
Category: Stock Scanners
Hello, I have created a script that alerts for any stock price getting close to previous day's close. it work as far as I ave tested. However when I convert it to study I cannot use it for  Aggregate Period 5 min. I can only use for aggregate Period ...
0
votes
1
answer
120
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, I was wondering if you can provide a custom script to convert this study into a scan. Thanks. declare lower; # Inputs: Len(13); input Len = 14; input CIx = {default CI3, CI2}; #Plot1(100 * Log(Summation(TrueRange,Len)/(Highest(C[1],Len) – Lo...