Votes
Answers
Views
Question
3
1
335
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
1
538
asked 4 years ago by Koji A. Katakura Jr.
Category:
Frequently Asked Questions
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
1
157
asked 3 years ago by Satish Gupta
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
1
4066
asked 7 years ago by Juan Banderas
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
1
67
asked 4 years ago by Cc W
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
2
184
asked 4 years ago by Cc W
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
2
162
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
1
101
asked 4 years ago by Steve Maziarz
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
1
54
asked 4 years ago by Andrew Millson
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
2
401
asked 4 years ago by Mehnaz Singh
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...