Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
156
views
asked 4 years ago by
Category: Chart Studies
So with the code presented: Def swinghigh = if high > high[1] and high > high[2] and high > high[-1] and high > high[-2] then 1 else 0; Plot sh = if swinghigh then high else double.nan; sh.setstyle(curve.points); With that being said; I a...
0
votes
1
answer
155
views
asked 3 years ago by
Category: Chart Studies
First off thanks again Mr. Hahn, for all that you do. Your resources here are invaluable. I'm an avid TOS user with a fairly large collection of scripts for specific candle patterns. I'm curious to know if there is a a way to add a label to my charts...
0
votes
1
answer
154
views
asked 5 years ago by
Category: Chart Studies
Hi there, wanted to see if someone would be able to create a study that will mark when gaps occur.  If it gapped up, then it would be green, gap down would be red.  and show the percentage of how much it gapped.  Also would be nice to be able to adju...
0
votes
1
answer
154
views
asked 4 years ago by
Category: Chart Studies
Hi Pete. I was wondering if there is a way to see the expected move for the monthly option expiration on the chart like how this indicator does it for each week. http://tos.mx/wx7EQX This indicator can be found at https://theotrade.com/member-home/me...
0
votes
1
answer
154
views
asked 4 years ago by
Category: Chart Studies
Hey Pete, I need helping modding some code below. How do I lock the bubble plot so it only shows from the 9:30 am candle to the 9:45 am candle. After 9:45 if the price keeps making a new high, I don’t want this script to record or any new values Righ...
0
votes
1
answer
154
views
asked 3 years ago by
Category: Chart Studies
Hi Pete! I am trying to add a label to my 1-min chart that would show the value of the stochasticSlowD with color indication: green when its uptrending or red when its downtrending. Thank so much for your help!
0
votes
1
answer
154
views
asked 1 year ago by
Category: Chart Studies
Hello Mr. Hahn, Would it be possible to code an indicator with an alert when a Heikin Ashi candle has wicks on both sides. This should happen on candle close. I believe this is feasible because we can determine when a candle is a candle with only a t...
0
votes
1
answer
153
views
asked 7 years ago by
Category: Chart Studies
I am trying to automate some of my work. On my pre-market checklist grid. I want to plot the open price on the first day of the year and stay(not change throughout the whole year for the e-mini or any market I monitor. I got the month to work. Can't ...
0
votes
1
answer
152
views
asked 4 years ago by
Category: Chart Studies
Hi, I hope you can help. I have a scanner or study that finds  Inside Bars, and after the inside Bar is close it shows me an alert with an arrow for the third bar.  I have the code here: def IsUp = close > open; def IsDown = close < open; def I...
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...