Votes
Answers
Views
Question
0
1
49
asked 5 years ago by Ratilal Haria
Category:
Chart Studies
Tags:
Hi I thought I had the count of new highs over a period resolved but my script does not give corrrect answers all the time, and I cannot figure out what could be wrong. I am attaching my code and the dates and high values for the AON for last several...
0
0
93
Be first to answer!
asked 5 years ago by Craig Habermehl
Category:
Stock Scanners
Pete is it possible to do a scan for a 2 +/- standard deviation on a 10 day 30 min chart....I can do it for the one day but not sure how to do it for a 10 day.... Thanks
0
2
42
asked 5 years ago by Venkata Nemala
Category:
Chart Studies
I have a custom study with simple 4 to 5 lines which references standard studies. My custom study stops plotting after 2 to 3 minutes on the chart. Below is the code: def LONG_BUY = (close is greater than MovAvgExponential("price" = HIGH,...
0
1
61
asked 5 years ago by Andrew M
Category:
Chart Studies
Hello, Trying to figure out how to force studies to aggregate data only using real trading hours. I cannot find a clear answer on this site or in the Google-verse. Everytime I try the below script, which looks like it should work it only plots the va...
0
1
69
asked 5 years ago by Ratilal Haria
Category:
Stock Scanners
I would appreciate any help, pointer, example that would let me scan on ToS to find the number of new highs set during a particular timeframe i.e. this/last week or this/last month. Following is the code to count new highs but do not know about setti...
0
1
121
asked 5 years ago by Craig Habermehl
Category:
Chart Studies
Pete, Could you help me add a Zero line to my chart study.... declare lower; #INPUTS input Smoother = 5; input SupResPeriod = 50; input SupResPercentage = 100; input PricePeriod = 16; input ob = 200; input os = -200; input showColorBars = no; #COLOR ...
0
1
212
asked 5 years ago by E H
Category:
Watch Lists
Hello Again Pete, I was wondering if it is possible to add the custom color signal feature, to a watchlist column I created with the condition wizard. I tried adding the 'assign color' line of code but it won't work (maybe as i haven't defined when t...
1
1
145
asked 5 years ago by Patrick Marlowe
Category:
Chart Studies
Hey Pete, Is there a way to capture the average of a volume bar for a specific time? The Idea is to calculate the average volume for a specific time within a day as opposed to calculating the sum 50 consecutive bars. lets say we are in a 4 hr chart –...
0
1
673
asked 5 years ago by Luke Wood
Category:
Frequently Asked Questions
Hi! Im trying to reduce the number of buy and sell signals triggering from this custom indicator i've created from CCI Average indicator in TOS. Im wanting to have only the initial signal and no more duplicates before a new signal is created. Here is...
0
1
59
asked 5 years ago by Tuan Pham
Category:
Watch Lists
Hi Pete, Is there a universal way to use the same verbiage looking only for the current day with any script? If not, could you please help me again so that I don't have to use the lookback? Thanks again! input lookback = 13; def pctGain = ((close - c...