Questions (2367)

Votes
Answers
Views
Question
0
votes
4
answers
1785
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete!  I'm trying to run a Gap down scan on TOS with the same format that Barchart offers.  I know that i can find the gap downs on TOS but i'm trying to find the size of the gap and can't seem to find it when i run it on TOS.  Can you please help...
0
votes
1
answer
3196
views
asked 7 years ago by
A viewer asks: Hi Pete, I see you are doing some indicators now on TradeStation.  How are you liking their platform compared to TOS (Think or Swim)?
0
votes
7
answers
2324
views
asked 7 years ago by
I'm looking  or would like to know how to  create sound alerts for studies with arrows.
0
votes
5
answers
411
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, See attached screen shot. Please show how to convert this MetaStock code to Thinkscript scanner using RSI(2). Thank you.  
1
vote
3
answers
4238
views
asked 7 years ago by
Category: Strategy Guide
Hi Pete, I watched your tutorial on how to do semi-auto orders on tos yesterday. I have a custom studies, which I want to place my conditional order based. But when I followed the step and put below script into New Studies, it just says "expected dou...
1
vote
2
answers
140
views
asked 7 years ago by
Category: Stock Scanners
Hello Pete, whats the best way to scan for stocks that have the following criteria:- Avg. open price for the last 30 days is .30 cents of the Avg. close price. for example . in the last 30 days , the Avg. open price is $15.20 and Avg. close price is ...
0
votes
2
answers
734
views
Hi, i'm going to try this here since I've posted everywhere with no luck.  Was wondering if it was possible to receive a text alert when the chart makes a new high or a new low on a specific time frame.  I've provided an example.  It would make my li...
0
votes
2
answers
725
views
asked 7 years ago by
Category: Watch Lists
I am trying to make the TTM_ScalperAlert more apparent in my watchlist when it fires. This is what I am running, def AlertSig = if (ttm_ScalperAlert().pivotlow[3]) then 1 else 0; #def AlertSig = if (ttm_ScalperAlert().pivotHigh[3]) then 1 else 0; plo...
0
votes
1
answer
389
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, How to translate the attached MetaStock code to thinkscript scanner? Thanks! Editors Note: The title of this post has been changed to better reflect the context of the question. This makes it easier for others to search for a locate the solu...
0
votes
1
answer
369
views
asked 7 years ago by
Hi Hahn, I found below thinkorswim script on website. — input price = close; input Shorter_Time = 10; input Longer_Time = 21; Def difference = average(data = price[1], length = Longer_Time) – average(data = price[1], length = Shorter_Time); plot time...