Questions (2351)

Votes
Answers
Views
Question
0
votes
1
answer
93
views
asked 1 year ago by
Category: Watch Lists
Hi Pete, Can this code show background color on the watchlist when the following parameters are met? This was taken from this question: https://www.hahn-tech.com/ans/price-from-ema/ I want to assign background color green when the watchlist filter is...
0
votes
1
answer
72
views
asked 1 year ago by
Category: Stock Scanners
Pete, I have a scan using some custom code which is not triggering as expected. Please see below: input lnrLength = 40; plot lnrReg = LinearRegCurve(0, lnrLength, Close); def stkATR = ATR(14); def myLevel = lnrReg + (2 * stkATR); def signalAbove = Cl...
0
votes
1
answer
56
views
asked 1 year ago by
Category: Chart Studies
Hello Pete, I was wondering if you can help me modify this code. I want to be able to display the 4Hour, Daily and Weekly SMI labels on my main chart. Ex: 4H: Buy or Sell. Day: Buy or Sell. Week: Buy or Sell. Thank you so much for your help! def smi ...
0
votes
1
answer
112
views
asked 1 year ago by
Category: Chart Studies
Hi Currently, TOS has the above indicator, but i will like to change the settings from using number of advances and declines to volume of advances and declines. Is it possible? The full code for the indicator on TOS is declare lower; input exchange =...
0
votes
1
answer
128
views
asked 1 year ago by
Category: Stock Scanners
Hello Mr. Hahn, During a given day's pre-market session, if I write a script for the pivot point as, " PP = HCl3[1]" on a daily aggregation, will it consider the previous day's data or, one day before the previous day's data?   Thanks
0
votes
1
answer
53
views
asked 1 year ago by
Category: Watch Lists
Hello i have created 2 column one for volume plot x = (volume);AddLabel (yes, + Round(x *.000001 , 1) + "M",color.white); and other to know if this can trade options AddLabel(1,IsOptionable());   is it possible to combine both and make volume co...
0
votes
1
answer
93
views
asked 1 year ago by
Category: Chart Studies
In ToS, I have chart studies that have 5,20,50,200 days Moving averages (EMA) with alerts and I have scanner alert that I get notification for 5days crossing over 20days as example! Is there a way I can get the actual number where these crossovers or...
0
votes
1
answer
103
views
asked 1 year ago by
Category: Stock Scanners
Hi Pete, I am looking for a scan that tells me when a 2 period RSI flips from positive to negative. I tried to use the Rate of Change 2 period flip, since TOS has a scan for that, but it's not the same.
0
votes
1
answer
111
views
asked 1 year ago by
Category: Stock Scanners
I'm looking for a bit of help.  I just want to add a ToS custom study where I can scan for stocks where the MACD exponential is above the average of the daily time frames.   Thanks!
0
votes
1
answer
70
views
asked 1 year ago by
Category: Chart Studies
Hello, I am trying to add a simple label to my chart showing the ATR coming into today. In other words the ATR from one bar ago. This is what I have so far but it's not accepting the code. input length = 14; input averageType = AverageType.WILDERS; p...