Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
89
views
asked 3 years ago by
Category: Chart Studies
I created a custom study in my TOS chart (the study itslef works great - no issues) Now.... I would like to create a condition for the custom study I created; however, when I attempt to create a condition using the condition wizard, I am unable to lo...
0
votes
1
answer
25
views
asked 3 years ago by
Category: Chart Studies
Getting "Value never assgined to" on  my variables vSignalCandleClose and vSignalCandleStop. What am I doing wrong? #-----MyIndicator-- def vSignalCandleClose;def vSignalCandleStop; def vEMA = MovingAverage(AverageType.EXPONENTIAL, close, 20);de...
0
votes
1
answer
133
views
asked 3 years ago by
Category: Chart Studies
I am currently using this script https://www.hahn-tech.com/ans/highest-volume-bar-of-the-day/ I was wondering if there was a way to plot a horizontal line on the highest volume bar as well  
0
votes
1
answer
71
views
asked 3 years ago by
Category: Chart Studies
Pete Hope you can help turn my chart label into lower study.....If label would be green..make a green dot on the row...same for red/grey labels...   input length = 14; input averageType = AverageType.WILDERS; DefineGlobalColor("DI+", color.green...
0
votes
1
answer
80
views
asked 3 years ago by
Category: Chart Studies
I was interested in overlaying the daily Hull MA and daily Adaptive MA over a lower time frame chart, ideally the 1 minute chart.  Is this possible ?
0
votes
1
answer
272
views
asked 3 years ago by
Category: Chart Studies
I'm having a hard time trying to get my indicator to show red > 5 % else green, here is my code I hope you can help!     def len = 1; def dayHigh = DailyHighLow(AggregationPeriod.DAY, len, 0, no).DailyHigh; def dayLow = DailyHighLow(Aggr...
0
votes
1
answer
39
views
asked 3 years ago by
Category: Chart Studies
Is there a study that will either show a label on a chart or a column in the Watchlist with the following: ((Close[today]- Close[at a specific date to be input by user])/ Close[at the specific date])*100)  ?
0
votes
1
answer
136
views
asked 3 years ago by
Category: Chart Studies
I apologize if this has been previously asked and answered. I need a study that plots a specific ema or sma on the chart and the chart label is red when the stock price closes below the sma and green when it closes above the sma. Needs to work with c...
0
votes
1
answer
120
views
asked 3 years ago by
Category: Chart Studies
If you peek at the code below, you'll see that the daily bar and cloud align perfectly, but the vertical line is offset, slightly, even though they are the same date. Therefore, I'm wondering if adding a time input to the vertical line is possible so...
0
votes
1
answer
199
views
asked 3 years ago by
Category: Chart Studies
Hey Pete. Wondering if it's possible to create a script resulting in a percentage value of theta compared to the corresponding option price. Example: theta is -$0.45, and "last" price of an option at a particular strike price is $4.11. So script woul...