Votes
Answers
Views
Question
0
1
150
asked 4 years ago by Corey
Category:
Stock Scanners
Hi Pete, I am reviewing the MACD MTF you created in a previous post. The link to the post is: https://www.hahn-tech.com/thinkorswim-mtf-macd-scan/ I am trying to slightly modify the scan to search for MACD MTF signals ONLY when the initial green hist...
0
1
80
asked 4 years ago by Eric Hughes
Category:
Stock Scanners
Hello again Pete, I have a question regarding a simple scan. Im trying to filter for an uptrend by stating different Sma and vwap be higher than they were X amount of bars ago. vwap>vwap [x]... and so forth with a 9 sma and 20 sma, and vwap.....
1
1
523
asked 4 years ago by Michael Garr
Category:
Watch Lists
How to create a list of columns for a watchlist that could be used as "Defaults', in other words get them available for a watchlist clicking on a button 'Load Defaults' ?
0
1
104
asked 4 years ago by Ram
Category:
Stock Scanners
Hi Pete, I'm creating a strategy where the StochRSI(14) value is crossing above 20SMA as an entry point and StochRSI(14) crossing below 20SMA as an exit point. See the image attached and I have tried this for few other stocks and looks promising. I w...
0
1
267
asked 4 years ago by fama TVe
Category:
Chart Studies
Tags:
Hi everyone, I asked this question in one of the tutorials about ToS Ichimoku Scan and MANY THANKS to Pete for making the clarifications / answer. I thought of sharing it here so every0ne can benefit from it. Q: "I noticed that Ichimoku setup in ToS ...
0
1
165
asked 4 years ago by fotoguy
Category:
Alerts and Notifications
I would like to get an alert for the stock $GME every time it crosses above the 200-day moving average, is such an alert possible to be set? Thank you My email is [email protected]
0
1
272
asked 4 years ago by Angus Hamilton
Category:
Chart Studies
Hi, The following should output a value of 75 when the following condition is met: current candle closes above VWAP and 3 previous candles close below VWAP. It doesn't work and I would like to figure out why and correct it. Any help appreciated. dec...
0
1
196
asked 4 years ago by Fernand Prince
Category:
Stock Scanners
Hello Peter, Can you convert this study for me to a scan? input SMAPeriod1 = 20; input SMAPeriod = 50; input price = close; def na = double.nan; plot fastema = ExpAverage(price, SMAPeriod1); plot slowema = Average(price, SMAPeriod); def crossover = i...
0
1
172
asked 4 years ago by ry s
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
1
78
asked 4 years ago by Matthew Zikry
Category:
Chart Studies
Pretty sure I know the answer to this, and did some searching, but thought to ask to confirm! Is there anyway to copy a label on a chart study to text format / or to export the text? Long story short, I'm tracking a pattern and have various data poin...