- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
146
asked 5 years ago by Rocky Singh
Category:
Chart Studies
Looking for a intraday high and low label from 0930 to 1600. I found this premarket high and low label in the search. https://www.hahn-tech.com/ans/premarket-highlow-label/ I did change the times from 0400-0929 to 0930-1600. However, if the intraday...
0
1
565
asked 5 years ago by Dan C
Category:
Chart Studies
Part 1 This is a 5 minute chart study that uses Heikin Ashi price bars. The background changes when the HMA 5 line changes color. The Bell sounds when the Arrow changes color. The Arrow is supposed to change simultaneously with the background color c...
0
1
119
asked 5 years ago by Omar Sheikh
Category:
Chart Studies
Hi Pete, Thanks for your great coding resources. Please consider this situation. I'm keeping track of the intraday high until a moving average crosses above the VWAP from below. After that I want to stop calculating the intraday high (I use larger ti...
1
1
90
asked 5 years ago by Daniel Mazanec
Category:
Chart Studies
Hey, everyone. Monday - Friday, at about 7:40 am, Nadex puts out the parameters for their 8 am spreads, which are 200 points. I like putting those on TOS so I can see the ceilings and floors and place my trades accordingly. Up to now I have setting t...
0
1
164
asked 5 years ago by Tom B.
Category:
Chart Studies
Hey everyone and hello Hahn! I was looking to implement a chart study that does the following but was unable to optain a specific candle's volume (e.g. the candle from 9:30 am to 9:35 from two days ago (is this even possible??)). What I would like to...
0
1
430
asked 5 years ago by Paul Korn
Category:
Chart Studies
Hi Pete - I'm trying to develop code that will display a label on my TOS chart showing the color of the Squeeze Histogram for a timeframe I specify. The code is attempting to show the current Squeeze histogram color for the 60-min timeframe as a...
0
1
179
asked 5 years ago by Arlette Rosario
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
1
60
asked 5 years ago by Kawika Ohumukini
Category:
Chart Studies
Hi. I really appreciate your forum. I'm have a conditional label that shows a MACD trend for the index a stock is in. For instance, if GetSymbol() is AAPL then call a MACD script that accepts NDX as the close(symbol). Is there a way to retrieve...
0
1
80
asked 5 years ago by Chad Mail
Category:
Chart Studies
Hi Pete, Is it possible to setpaintingstrategy the previous plot? I want to be able to put a blue point on top of an RSI if an RSI peak has formed. Thanks plot RSIpeak= if (rsi < rsi [1] and rsi [1] > rsi [2]) then rsi [1] else double....
1
3
721
asked 5 years ago by Kawika Ohumukini
Category:
Chart Studies
Everytime I want to work on a study, opening the code editor is a hassle. Is there a better way to edit thinkscript than clicking Studies -> Edit Studies -> Right click Study name -> Edit? Thanks.