Questions (855)

Votes
Answers
Views
Question
3
votes
1
answer
307
views
asked 3 years ago by
♥ 1
I've found with numerous backtests that a pullback to the 50 EMA (Exponential Moving Average) has a high probability of reversing to the long-side. When I see this move, I ALWAYS buy. Waiting for this to happen, if ever, on short timeframes (1 minute...
2
votes
1
answer
486
views
asked 3 years ago by
Good day, Hahn! I have been watching all your videos from Youtube and been a consistent reader in this forum. I wanted to know how you learned thinkScript and how you advanced your thinkscript knowledge. I realized that I need to be independent soon ...
2
votes
1
answer
142
views
asked 2 years ago by
Category: Stock Scanners
I'm almost embarassed to ask this question. If length = 2, does that mean 2 bars before the current bar implying that the current bar is bar 0? One example I saw seemed to indicate the current bar is bar 1 but I doubt it. Thanks
2
votes
1
answer
3922
views
asked 6 years ago by
Category: Watch Lists
Hello Hahn, For traders who are looking for very quick moves in stock prices I wanted to know if you could provide a watchlist code for Percent change in last 5 minutes. In terms of coloring If the percent change is greater than 7%, in the last 5 min...
1
vote
1
answer
59
views
asked 4 years ago by
Category: Watch Lists
plot TK = Ichimoku("tenkan period" = 18, "kijun period" = 52)."Tenkan" is greater than Ichimoku("tenkan period" = 18, "kijun period" = 52)."Kijun";   here's what i have so far. just not sure of format if this is possible. Thanks
1
vote
2
answers
156
views
asked 4 years ago by
Category: Watch Lists
Hello again and hopefully just 1 more question. I was trying to get this to work but I'm assuming you can't have more than 2 conditions? when I Plot value = "..." is when i run into errors Here is the code: def LongTK = Ichimoku("tenkan period" = 18,...
1
vote
2
answers
121
views
asked 4 years ago by
Category: Stock Scanners
♥ 1
Hey Pete!  TOS is killing me with this one.   What I'm trying to do is find a stock where the close has passed the daily 50sma within 2 15 minute bars (intraday trading).   def dma = DailySMA(FundamentalType.CLOSE,AggregationPeriod.DAY,50,0...
1
vote
1
answer
85
views
asked 4 years ago by
Category: Stock Scanners
Re-posted as requested and without formatting. Trying to implement the following in a Scan: price action has to have moved 20%, up or down, within the past year Formula in TC2000 is: (MAXH252 – MINL252) / C > 0.20 I’m new to ThinkOrSwim and after ...
1
vote
1
answer
36
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, the within reserved word only functions with an integer or length. Do you think it would be possible to write an expression that would achieve the same results as the within function while using a variable in place of an integer or length? T...
1
vote
2
answers
294
views
asked 4 years ago by
Category: Strategy Guide
Is there a way to manually (programatically) call addOrder to create orders. I have a script which creates an order based on few variables. Right now I can use it as part of a strategy but I need to run this script (and create orders) on live chart w...
1 2 3 86