- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
171
asked 5 years ago by BigBoy
Category:
Chart Studies
Hi Pete, I hope everything is great with you! Thanks for all the great work you do, everyone absolutely appreciates it a lot! My question is, how I could set up to display a symbol such as a circle with a color blue (at some position such as below) o...
0
1
162
asked 5 years ago by Chad Mail
Category:
Chart Studies
Hi Pete, Can you pls provide a script that a chart text bubble will appear on a candle in the chart if a condition is true? I am looking to start labelling some of my Studies using a text bubble, because when i try to place them in the lower chart, T...
0
1
159
asked 5 years ago by Mike DAntonio
Category:
Chart Studies
Hey guys! I am having trouble developing a script. I want it to plot some basic price levels for the stock I am looking at. Let's say the stock is at 200. I would want it to plot a price level at two levels (by 10's) both up and down. However,...
0
1
129
asked 5 years ago by Chad Mail
Category:
Chart Studies
Hi Pete, Can you pls help me create a script similar to this script below to plot the lowest low from the last 5 candles. Thank you. Example plot ClosingPriceForHighestHigh = GetValue(close, GetMaxValueOffset(high, 12), 12); The example script plots ...
0
1
42
asked 5 years ago by Karl Wolff
Category:
Chart Studies
Hi Pete - Is there a way in TOS to restrict calculations to the close of a bar. This can be done in TS; I want a confirmed (crossover) signal without the intra bar noise (and repainting). Thanks for any suggestions!
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
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
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 ...
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 –...