Votes
Answers
Views
Question
0
1
176
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
281
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
213
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
181
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
85
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...
0
1
437
asked 4 years ago by Corey
Category:
Watch Lists
Hi Pete, Thanks to your awesome tutorial videos I was able to create a custom column that changes color if the pre market cumulative volume is greater than the 5 day average. My problem is that the watch list color disappears after the premarket is o...
0
1
139
asked 4 years ago by drako
Category:
Alerts and Notifications
Hi how are you man? I hope safe ! Do you know if is possible to set an alert related with the qty in the option times and sales? For example with the ES , set an sound alert every time than someone put a position of 300 or more. Thanks man!
0
1
148
asked 4 years ago by Piotr Komorowski
Category:
Stock Scanners
Hi! I’m looking for a custom scan where you can search for stocks that have the green candlestick completely crossed above the SimpleMovingAverage (CLOSE, 9, 0) on a 1hr chart (within 1 bar). I attached the example. I hope this makes sense :) T...
2
1
550
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 ...
0
1
235
asked 4 years ago by Andrew Liranzo
Category:
Strategy Guide
Tags:
Sorry if its a bit much.... Just finished building a strategy only thing left is to set up how many lots i would like to trade (FX) with it, and I dont know how to begin with that. This is my buy code: (I defined it too) addOrder(OrderType.BUY_TO_OPE...