Questions (862)

Votes
Answers
Views
Question
0
votes
1
answer
306
views
asked 5 years ago by
Category: Stock Scanners
Hello Pete,   So below I have provided the code for a chart label that counts the amount of time a stock has spiked in the past (aka a former runner). My question is, how can we turn this into scan criteria. When using this scanner, I only want ...
0
votes
1
answer
118
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I have some code for a chart label that isn't calculating the sum total correctly for the "number of trades on the day" . The code seems to only be counting for the current 1-minute bar.   I would like it to take the the sum total of...
0
votes
1
answer
1633
views
asked 5 years ago by
Category: Chart Studies
I currently have thinks it code that plots an arrow when the criteria are met. PatternPlot.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); PatternPlot.SetDefaultColor(GetColor(8)); My only question is can the arrow code be modifyied to place ...
0
votes
1
answer
407
views
asked 5 years ago by
Category: Watch Lists
Hello Pete, I couldn't find if this question has been answered. How do you create watchlist column that calculates percentage change from open to close? Similar to normal percent change, If positive then text will be green, If negative then text will...
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
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
226
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, The default volume profile in Thinkorswim is cool but is there a way to modify the side volume bars in blue to show more data like how much volume was traded at each price level in a numerical way instead of just the graph.   https:/...
0
votes
1
answer
77
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, For those using the daily chart and the default volume settings and style. How can we create an indicator that highlights the current day (today) volume bar yellow.   Best
0
votes
1
answer
133
views
asked 5 years ago by
Category: Stock Scanners
Hello Pete, The purpose of this post is to create a scan condition that detects the first red day of a stock that has been running up with 2 or more green days in a row with each green day making higher lows and higher highs than the previous day in ...
0
votes
1
answer
1954
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I wanted to know if you could create or show how to create a chart label called "Spread", that takes the difference between the ASK and the BID and posts in on the chart as a label. I wonder if the chart timeframe will interfere with this...