Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
348
views
asked 5 years ago by
Category: Chart Studies
Hello please help me with the script below need to have post market volume addlabel currently it shows pre market volume. Thanks # PreMarket Forecast Volume # TOS def Pre = if SecondsFromTime(0100) > 0 and SecondsTillTime(0930) >= 0 then 1 else...
0
votes
1
answer
348
views
asked 4 years ago by
Category: Chart Studies
Hi Pete. I’ve defined (5) moving averages with the lengths of 8, 13, 21, 34, and 55. I want to know when the distance between the uppermost and lowest moving average is <= 2% of the stock price. Since the moving averages will not always be aligned...
0
votes
1
answer
345
views
asked 2 years ago by
Category: Chart Studies
Hello, I love this site and I just found it today; so much to watch. I searched through the forums for a few hours but haven't been able to find anything about Maximum Pain. I have been trying to calculate Max Pain in Thinkorswim but can't figure it ...
0
votes
5
answers
344
views
asked 7 years ago by
Category: Chart Studies
Pete, In regards to the ichimoku indicator, how would you plot the last given value of 'Span A' and 'Span B'? They're defined as: <pre> def "Span A" = (Tenkan[kijun_period] + Kijun[kijun_period]) / 2; def "Span B" = (Highest(high[kijun_period],...
0
votes
1
answer
341
views
asked 4 years ago by
Category: Chart Studies
input startDateYyyyMmDd = 20200805; def beyondStartDate = if GetYYYYMMDD() >= startDateYyyyMmDd then 1 else 0; plot VWAP = TotalSum(if beyondStartDate then (((high + low + close) / 3) * volume) else 0) / TotalSum(if beyondStartDate then volume els...
0
votes
1
answer
340
views
asked 3 years ago by
Category: Chart Studies
Possible to get some help on my Position Size Script getting an error at def currentPrice.  There may be more issues I'm not aware of I'm very green at this!  Code: # Position Size Calculator based on max % account risk with variable position riskPer...
0
votes
1
answer
338
views
asked 4 years ago by
Category: Chart Studies
Hello sir, I was playing around with your MTF macd study to see if i could convert to be used the elements of Ichimoku So If your looking at an hourly chart, the normal settings would place all the elements at the respective levels. Is it possible to...
0
votes
1
answer
335
views
asked 6 years ago by
Category: Chart Studies
Hi Peter, Do you have a code to plot pre-market H/L automatically? Thank you in advance. G
0
votes
1
answer
335
views
asked 5 years ago by
Category: Chart Studies
I have recently seen something with that title as I was going through John F Carter’s material, and figured someone had already done it for ToS, but I’ve found nothing similar on the internet. The idea is that you take multiple time frames, and when ...
0
votes
1
answer
334
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I am trying to get the $SPXA200R  (via comparison) onto the existing SPX line chart.  It seems that the line only goes back to 2/2020 even though I have a 20Y 1D chart up.  What am I doing wrong?  Or is that all it goes back? Thanks