Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
110
views
asked 3 years ago by
Category: Chart Studies
I use grey for my down candles. I use blue for my up candles. I color the current candle red, yellow or green based on the buying volume percentage. The only problem is that the chart displays the red, yellow or green colors on the previous candles w...
0
votes
1
answer
161
views
asked 3 years ago by
Category: Chart Studies
Settings would be Wilders ADXLength – 14 TriggerLevel – 20 UsePlotColoring – True AboveTrigColor – Yellow BelowTrigColor – Red EqualTrigColor – Cyan ColorCellBGOnAlert – true See pic shows line colors as it t...
0
votes
1
answer
1190
views
asked 3 years ago by
Category: Chart Studies
I have the following code but for some reason even if one of the conditions is not true in the if clause, its still displaying "A" in the chart instead of "". For e.g. if Price_Var is 5.09, then none of the below conditions should be valid and it sho...
0
votes
1
answer
162
views
asked 3 years ago by
Category: Chart Studies
Hi Pete, Im wondering if you can help me plot (draw) a line for the highest price and lowest price after the last earnings. Thanks for the help.
0
votes
1
answer
103
views
asked 3 years ago by
Category: Chart Studies
HI Pete, Can you please provide a code which can display ATR trailing stop of 30 min on 1 min or 5 min TF? Thank you, Shaishav
0
votes
1
answer
206
views
asked 3 years ago by
Category: Chart Studies
Hey Pete, I saw this last topic (https://www.hahn-tech.com/ans/plot-range-based-on-percent-of-previous-day-close/) and thought I could change it to my liking but TOS says no dice: I want a range to display showing previous days high through previous ...
0
votes
1
answer
143
views
asked 3 years ago by
Category: Chart Studies
I've tried every search on this platform as well as general Googling. Can't seem to find the answer. Does Thinkorswim have the capabilities to show a Linear Regression Channel or Line on a log scale without curving the study? It seems like it takes t...
0
votes
1
answer
93
views
asked 3 years ago by
Category: Chart Studies
Hi Pete, Thank you for the great resources. I have a simple script below where I am trying to plot a horizontal line that extends to the right at every cross over signal. def avg1 = MovingAverage(AverageType.SIMPLE, close, 10); def avg2 = MovingAvera...
0
votes
1
answer
187
views
asked 3 years ago by
Category: Chart Studies
Hello please can you help me with the script the assign color value when EMA 9 crossover SMA 9 input lengthOne = 9; input lengthTwo = 9; input maTypeOne = AverageType.EXPONENTIAL; input maTypeTwo = AverageType.SIMPLE; input priceOne = close; input pr...
0
votes
1
answer
152
views
asked 3 years ago by
Category: Chart Studies
Hi Pete, Do you know how to create a lower chart study that plots moving averages greater than another moving average as dots as opposed to lines, similar to the study in this illustration? I found a snippet of code in a study that I think would be h...