Chart Studies (872)

Votes
Answers
Views
Question
0
votes
1
answer
386
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, Reposting as you requested with a bit more clarification. I wanted to know if there was a way to count intraday Hi and Lo's that a ticker makes makes intraday. For example, I use Charles Schwabs Street Smart edge Scanner and it told me as of...
0
votes
1
answer
253
views
asked 5 years ago by
Category: Chart Studies
Hey Pete I decided to rewrite my question since I might have been unclear..LOL..I'm looking for a chart study where the candlestick has completely crossed below or above  and closed on the 50EMA.....Not just crosses it but completely crosses and clos...
0
votes
1
answer
229
views
asked 5 years ago by
Category: Chart Studies
Hello Mr Hahn & Merry Christmas; I would like your review/guidance related to a Stochastic Momentum Index Scan i'm working on. The idea is when the SMI (light blue) line crosses the SMIAVG (purple dash line) above and below the value of 50 (this ...
0
votes
1
answer
55
views
asked 5 years ago by
Category: Chart Studies
Hello, I was wondering if it was possible to execute a strategy on a specific day of the week.  If I only want my strategy to backtest trades on say Tuesday vs all market hours, is this possible?  I have played around with thinkscript and so far I ha...
0
votes
1
answer
109
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, A while ago, you provided the code below for a chart label. I wanted to know, how can we modify the code to only begin counting from the 52 week high.   input percent = 50.0; def percentCloseWithinRange = if (high – low) == 0 then 0 ...
0
votes
1
answer
221
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I’m trying to find a code to capture a single green candle that opens below VWAP and closes above VWAP. And for the VWAP to be uptrending 1-bar ago.   Thanks
0
votes
1
answer
203
views
asked 5 years ago by
Category: Chart Studies
Hello , I have impressed and motivated a lot with your smart answers , In Think or swim ATR trailtstop indicator wirks best but some times it gives false signals and make tooo much choppy sometimes , would you help me any alternative for this to avoi...
0
votes
1
answer
193
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, As we know in the market when volume drops price tends to fall as well. However, in some cases, this not always true and wanted to work with to create a chart label to show this behavior. There is an indicator that shows this behavior cal...
0
votes
1
answer
75
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I’m trying to find a code to capture a single green candle that opens below two different SMA's (ex: SMA4 and SMA8) and closes above both of those SMA lines in the same day. And having them as a signal "Point @ Close" if cannot be done, the ...
0
votes
1
answer
112
views
asked 5 years ago by
Category: Chart Studies
Hi Pete,   Thank you for the helpful studies. I currently have this one liner which is used to capture % change for a single day. def pc = Round(100*((close/open(period = AggregationPeriod.DAY))-1),1); I would like for it to only capture %change...