Questions (862)

Votes
Answers
Views
Question
0
votes
1
answer
141
views
asked 3 years ago by
Category: Chart Studies
def lastbar = IsNaN(close[-5]) and !IsNaN(close[-5+1]); plot N1_dot = lastbar[-5]; N1_dot.setDefaultColor (CreateColor(100, 250, 250)); N1_dot.SetLineWeight(2); N1_dot.SetPaintingStrategy(PaintingStrategy.points); ####################################...
0
votes
1
answer
243
views
asked 3 years ago by
Category: Chart Studies
Hello Pete I wanted to know if it was possible to have a MACD Histogram Label that follows the colors for the MACD Histogram? Label "MACD" Green, Light-Green, Red, Light-Red Thanks for any help with this. Ellis
0
votes
1
answer
73
views
asked 3 years ago by
Category: Stock Scanners
Please help me understand how to determine how much data does a scan pulls in for each security for a scan and what can I do, if anything, to minimize this amount of data to make scans more efficient. I realize that the answer would depend on, at lea...
0
votes
1
answer
87
views
asked 3 years ago by
Category: Stock Scanners
Hello, I saw this post Flatbase breakout but I didn't have any luck getting it to work on a monthly timeframe. I'm not sure if the solution is as simple as changing some of the inputs Here are a few charts with examples of what I'm looking for. I'm m...
0
votes
1
answer
36
views
asked 3 years ago by
Category: Stock Scanners
Many custom scripts have input statements like: input intraDaySpan = {Default "SameDay" , "OverNight"}; I understand that built-in scripts have drop-downs to select one of these values. How is one value specified in a custom script? You said, in one ...
0
votes
1
answer
833
views
asked 3 years ago by
Category: Stock Scanners
I came across the youtube video posted by the Right Way option about the 3/8 trap.  He provided the script for TC2000 for the scan to find the 3/8 trap scanner, which is : L <= XAVGC8 and C > XAVGC8 and (C < XAVGC3.1) or (C < XAVGC3.2) or...
0
votes
1
answer
118
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, Please guide me to a scan for a 52 week high occuring intraday. This scan should show securities whose 52 week high was exceeded intraday. Thank you
0
votes
1
answer
777
views
asked 3 years ago by
Category: Strategy Guide
Hi I am wondering if it is possible to use thinkscript to close all my open positions when my "Net Liquidation" falls to a certain value ? So its like thinkscript will loop through all my open orders, if its a buy order, then sell at market. And if i...
0
votes
1
answer
59
views
asked 3 years ago by
Category: Chart Studies
Hi Pete, I am trying to make the Pivot Points study in thinkorswim to include the extended hours prices. As defined in TOS, it only considers regular trading hours. Could you please help me with this? What changes should I make to the original code? ...
0
votes
1
answer
51
views
asked 3 years ago by
Category: Chart Studies
I am doing  a calculation risk amount base on a Inside Bar For example if the risk  is PRevHigh-PrevLow then If I want to no loose more thank 50 dollars for example I divide 50/risk  then it gives me the total shares I need to buy. I would like to ro...