Questions (861)

Votes
Answers
Views
Question
1
vote
1
answer
145
views
asked 3 years ago by
Category: Chart Studies
Hi Hahn! I made TOS indicators, scanner, watchlist codes. I wanted to protect it as an intellectual property of some sort. Is there a way to do this?
1
vote
1
answer
253
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, I am trying to create a script that will find stocks that have been below the 50 Ema for at least 75 bars, but have crossed back over and have remained above the 50 EMA for at least 5 bars. I came across a scanner you had posted before to sc...
1
vote
1
answer
106
views
asked 3 years ago by
Category: Stock Scanners
Hey there! I have some fairly crude code, but it gets me what I want. I can grab the volume of the first 20 minutes with this, and it will show up on my label. However, when I try to scan using the plot in my study and set it to search for > 20, i...
1
vote
1
answer
63
views
asked 3 years ago by
Category: Chart Studies
Hi Pete .Question. I have a script here I wrote that has no errors before applying, and it won't plot the labels onto a chart. It keeps saying" Two different secondary periods cannot be used in a single variable" in the upper left hand corner. I don'...
1
vote
2
answers
611
views
asked 3 years ago by
Category: Chart Studies
Hi, Pete: is there a way to change how date labels appear?  here's a bit of code: # Prior date of indicator change def prior_X_Up_Date = if X_Status == 1 AND X_Status[1] == 0 then GetYYYYMMDD() else prior_X_Up_Date[1]; def prior_X_Down_Date = if X_St...
1
vote
1
answer
200
views
asked 3 years ago by
Category: Stock Scanners
Hi, I'm trying to build a scan where the AccumulationDistribution indicator is in accumulation mode or Consolidation (Green bars). I have tried to do it using the below options but don't know how to select the consolidation from the scan list. Any he...
1
vote
1
answer
1045
views
asked 3 years ago by
Category: Chart Studies
So I have some code that does exactly what I want (paints two horizontal lines on the chart with the previous day's high and low), but... I would love to be able to add a bubble underneath each with text like 'PD High' or 'PD Low'. I think this is po...
1
vote
1
answer
31
views
asked 3 years ago by
Category: Chart Studies
I have this code so far: declare lower; input symbol1 = "/GC"; plot smb1 = close(symbol1); This plots the standard gold futures contract. I want to plot specific gold contracts with different expirations, namely 6 months and 12 months out until expir...
1
vote
1
answer
89
views
asked 3 years ago by
Category: Chart Studies
I have been trying to figure this for awhile. Wondering if there is a way to harvest the size of the large and small size  contracts via T&S on TOS. We know +25 contract sizes are in ES are professional trades and single to 5 sizes are amateurs'(...
1
vote
1
answer
139
views
asked 3 years ago by
Category: Chart Studies
I'm requesting a horizontal line on the low of the first 5 minute bar that extends across the entire chart intraday only no premarket Thanks Pete