Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
162
views
asked 1 year ago by
Category: Chart Studies
Hello, I was wondering if you can show me how to correctly addclouds outside bollingerband and color them accordingly, green if trending up and red if its trending down. I can only seem to color half portion of the background,  and my color condition...
0
votes
1
answer
161
views
asked 5 years ago by
Category: Chart Studies
Tags:
Hi guys, Anyone able to help for this.. Am trying to create a script that will plot the yearly Fibonacci levels on your chart no matter what timeframe you are on.. input price = close; input high = high; input low = low; input onExpansion = Yes; inpu...
0
votes
1
answer
161
views
asked 5 years ago by
Category: Chart Studies
Not sure how deep in the code this goes and if its possible, but I just had a thought about if I have large grid of FX pairs like so https://i.imgur.com/AP8c8eQ.png  if it would be possible to have the background color  of the chart change based on a...
0
votes
1
answer
161
views
asked 3 years ago by
Category: Chart Studies
Settings would be Wilders ADXLength – 14 TriggerLevel – 20 UsePlotColoring – True AboveTrigColor – Yellow BelowTrigColor – Red EqualTrigColor – Cyan ColorCellBGOnAlert – true See pic shows line colors as it t...
0
votes
0
answers
160
views
Be first to answer!
asked 5 years ago by
Category: Chart Studies
Pete, Can you transfer this code in to thinkscripts? study(title="The Pivot Detector Oscillator, by Giorgos E. Siligardos") Length_MA = input(200, minval=1) Length_RSI = input(14, minval=1) UpBand = input(100, minval=1) DnBand = input(0) MidlleBand =...
0
votes
1
answer
160
views
asked 4 years ago by
Category: Chart Studies
Label with prices based on perfect increase from open Hello Pete, I wanted to know if you create an indicator that auto calculates the price at predefined percent increases from the open price  with the following conditions: The first condition is th...
0
votes
1
answer
158
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, how do we create a chart indicator study that highlights the highest volume candle on the 1 minute chart? The condition is highlighting the candle with the greatest volume on the 1 minute chart purple. The minimum volume on that candle mu...
1
vote
1
answer
158
views
asked 5 years ago by
Category: Chart Studies
I’ve calculated a variable called "slope", which is a number that can be positive or negative. For each new day I’d like the script to test if the polarity flips (+ to - or - to +), and if so, to indicate that on the chart. I'm not sure how best to d...
0
votes
1
answer
158
views
asked 3 years ago by
Category: Chart Studies
Hi Pete, I am trying to do something seemingly straight forward, but unable to get the desired plot. I want to plot the usual 1 or 0 in the lower study which corresponds to the in-built ProfitTargetLX strategy. I copied the code (pasted below for you...
0
votes
1
answer
156
views
asked 4 years ago by
Category: Chart Studies
I have a simple backtest I'm trying to build that simply prints an arrow above the first candle the break out of the 5 minute opening range either high or low. I want to visually see it working before I move onto a strategy test. <code>def shor...