Votes
Answers
Views
Question
1
vote
1
answer
117
views
asked 8 years ago by Mike D'Antonio
Category:
Stock Scanners
How can I scan for a stock's 28 EMA within 5% of the 52 wk highs but the 28 EMA is now below the price the 28 EMA was at yesterday (if it's possible, on a weekly time frame.) I attached a screenshot below. So we are pretty much scanning for when the...
0
votes
0
answers
131
views
Be first to answer!
asked 8 years ago by Jerry Mander
Category:
Strategy Guide
I set up a conditional order in the Paper Trade system and it worked well from what I can tell. I also had that buy order trigger a sell order. Is there a way to set up a conditional sell order based on the buy order that triggered it? For example, I...
0
votes
0
answers
288
views
Be first to answer!
asked 8 years ago by Victor Ioxa
Category:
Watch Lists
Hello Pete, I would like to ask you if it’s possible to use MACDHistogramCrossover study with the pop-up alerts window to TOS LIVE Watchlist, as in your example with TTM_squeeze? there it is color coded, but I am interested if you can add Donchian Lo...
0
votes
0
answers
137
views
Be first to answer!
asked 8 years ago by Victor Ioxa
Category:
Watch Lists
Hello Pete, I would like to ask you if it’s possible to use Donchian Long Entry study with the pop-up alerts window to TOS LIVE Watchlist, as in you example with TTM_squeeze? there it is color coded, but I am interested if you can add Donchian Long E...
1
vote
8
answers
2082
views
asked 8 years ago by Bob Lyons
Category:
Alerts and Notifications
Hello Pete, I have a scan set up to look for price to be above the ATRtrailing Stop (ATRts) on a daily and for a Fast Stochastic K to cross above the Slow D on an hourly. When this condition is met, the alert is supposed to fire, however that is not...
0
votes
1
answer
240
views
asked 8 years ago by Sendi Dwi Putra
Category:
Chart Studies
Hi, I have watched the video here https://www.youtube.com/watch?v=YW8ruMckbEw I am wondering how "addOrder" function works? I tried the following code but it doesn't create any order : addOrder(OrderType.BUY_TO_OPEN, true,open[-1],1,Color.RED,Color.R...
0
votes
0
answers
93
views
Be first to answer!
asked 8 years ago by Sendi Dwi Putra
Category:
Strategy Guide
Hi, I am new in thinkscript. I know there is AddOrder function to add an order. If I want to abort the order that has been made, how to abort the order ? I can't find AbortOrder function.
0
votes
0
answers
136
views
Be first to answer!
asked 8 years ago by Mike D'Antonio
Category:
Stock Scanners
How could I scan for stocks that are in a 30% range of their yearly (252 days) low but are also up at least 5% for the month? Thanks!
0
votes
0
answers
123
views
Be first to answer!
asked 8 years ago by Rob Miller
Category:
Stock Scanners
Using inside bars, Is there a way to scan for the first bar that closes above / below the mother bar? Usually price action will bring it back in to the range of the mother bar within a few bars after the close above / below and then take off in the d...
0
votes
1
answer
83
views
asked 8 years ago by Mike D'Antonio
Category:
Chart Studies
I have the code: def highestMonthlyHigh = Highest(high[1], 21); def highestMonthlyLow = Lowest(low[1], 21); How would I plot this on a lower chart study? plot highestMonthlyLow; doesn't work