Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
46
views
asked 4 years ago by
Category: Chart Studies
If you look at the price levels on the right hand side of the screen it will include a bubble with that level. In order to not see that bubble, you have to go to the sprocket for that indicator that I have above and deselect show bubble. My goal is t...
0
votes
1
answer
112
views
asked 4 years ago by
Category: Chart Studies
Hello.  I am trying to implement a two timeframe stochastic on a one minute chart on ToS by adapting some code I found online.  The 1 min stochastic is fine, but the 10 min is plotted like a step function.  I assume because its calculating and plotti...
0
votes
1
answer
120
views
asked 4 years ago by
Category: Chart Studies
I would like to have an LRC that I can modify the number of days back as well as the amount of standard deviation I am looking for.  I know there are several regression plots out there that I can do this...but the one thing I would like is the plot t...
0
votes
1
answer
133
views
asked 4 years ago by
Category: Chart Studies
Let's say I am looking at 1min chart. I can plot, let's say, SVE pivots of daily aggregation. I also want to plot the pivots with aggregationperiod.month. However, the monthly won't show up except for the 1st and 2nd day of month (As in the bar is in...
0
votes
1
answer
57
views
asked 4 years ago by
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....
0
votes
1
answer
45
views
asked 4 years ago by
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
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
412
views
asked 4 years ago by
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
votes
1
answer
146
views
asked 4 years ago by
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
votes
1
answer
108
views
asked 4 years ago by
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...