Votes
Answers
Views
Question
0
votes
1
answer
404
views
asked 5 years ago by Gary W
Category:
Chart Studies
input startDateYyyyMmDd = 20200805; def beyondStartDate = if GetYYYYMMDD() >= startDateYyyyMmDd then 1 else 0; plot VWAP = TotalSum(if beyondStartDate then (((high + low + close) / 3) * volume) else 0) / TotalSum(if beyondStartDate then volume els...
0
votes
1
answer
176
views
asked 5 years ago by Nathan Ngindu
Category:
Stock Scanners
Hello, I want to concrete on stock based on volume and liquidity. Is there any way around for scan based on daily number of trade for a stock? If there is one please direct me or give me the scripts of it. Also scan abnormal trade large order come th...
0
votes
1
answer
74
views
asked 5 years ago by Collin Clay
Category:
Strategy Guide
Hello, Say I have multiple purchases of a stock over the day, at different prices and volumes. Can thinkscript strategies reference my weighted average position, as part of how it makes decisions for future entries/exits? (for example - averaging dow...
0
votes
1
answer
181
views
asked 5 years ago by DAVID
Category:
Stock Scanners
Hello Pete,thank you for all you do! Please I was wondering if you can help create a TOS code with these thoughts for a scan and trigger signal plot on chart. Below are the criteria: Price close more than 50% of the candle body outside the lower band...
0
votes
1
answer
798
views
asked 5 years ago by Rocky Singh
Category:
Chart Studies
hey I have a PM volume label that shows up in my volume bar. I edited the times in the PM code to AH times and it will show when AH starts but still shows PM volume from earlier that day instead of AH volume. I will paste the code of the PM volume. I...
0
votes
1
answer
232
views
asked 5 years ago by Nathan Ngindu
Category:
Stock Scanners
Hello Peter, Can you help me get a scan that pick stocks only when the price increase by 5 percent or more and volume increase by 10 percent or more comparing to the previous bar? Also the price value on the current bar is at or above vwap value? Tha...
0
votes
1
answer
238
views
asked 5 years ago by James Walton
Category:
Chart Studies
Hey Pete, what i'm trying to basically do is add a clouds to my chart, green cloud for a green bar and red cloud for a red bar. I want this cloud to stretch from that bar to the right of every inside bar. I was able to make the script to determine ...
0
votes
1
answer
101
views
asked 5 years ago by Chanan Siegel
Category:
Stock Scanners
I attempted this with the condition icon. But its not working the way I want. It does show the crosses. but I would like to only show me the crosses that took place within the last 1 or 2 candles. and not going further back in time. Thank ...
0
votes
1
answer
141
views
asked 5 years ago by Jay Vanamoju
Category:
Stock Scanners
Hi Pete, I was looking into one of your answers in this thread. Link: https://www.hahn-tech.com/ans/candles-sticks-that-change-color-with-heavy-volume/ Is it possible to have a scan based on that script/logic?. I tried with a "plot scan = paintBar;" ...
0
votes
1
answer
75
views
asked 5 years ago by Chad Mail
Category:
Chart Studies
Hi Pete, I found this custom volume study online and i plan to have it on the chart but the size is too big . Is it possible to visually scale this down? I have tried to divide it by 1000 and it doesnt seem to do anything. Also, is it possible to hid...