- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
709
asked 3 years ago by Charles Hammer
Category:
Chart Studies
I'm using SetPaintingStrategy.VALUES_BELOW in two different studies. One is the tos sequence counter and the other a custom script. The issue I have is that the numbers paint on top of each other. Is there a way to format them to not be on top...
0
1
80
asked 3 years ago by M.G.
Category:
Chart Studies
Tags:
Would it be possible to script an indicator to start at a specified time? For instance, the bollinger bands carry the effect of prior expansion, and lag to show a full squeeze as it forms. But is it possible to add options to the code to force it t...
0
1
91
asked 3 years ago by Chris Formen
Category:
Chart Studies
Hi there! I was trying to make a simple label to give me a general feel of where NQ futures are without having to go to that chart. I believe I am close on the code, but the colors/state do not seem to match. Any thoughts? Thanks! input symbol...
0
1
102
asked 3 years ago by Audrey Cornell
Category:
Chart Studies
Hi there ! I use trendline to show me the %chg between 2 points (see attachment). There's a little popup appearing when you 're about to draw trendline, with lot of useful infos. Unfortunately, it is temporary, because it disappears as soon as I pain...
0
1
120
asked 3 years ago by Ash Rotch
Category:
Chart Studies
Hello Pete, I need help creating a VWAP script with the same function as normal default VWAP. But, this modification will only display from 9:30am 10:30am and stay plotted on the chart all day only at those times. (The line will not continue) ...
0
1
129
asked 3 years ago by Empe Ibhadeh
Category:
Chart Studies
First of all, thank you for all you have been doing. I am reaching to you on whether could be a scan using TOS on MACD Histogram bars , where MACD EMA 10 is equal HullEMA 10. meaning where MACD (EMA 10 and HULLEMA 10 are green or red at this same tim...
0
1
83
asked 3 years ago by Chris Formen
Category:
Chart Studies
Hey Pete, I searched your forums and found this very straightforward code for determining the percent change from the previous day's close. plot percentChange = 100 * (open / close[1] - 1); I am wondering if it can be modified to calculate the close ...
0
1
367
asked 3 years ago by John Norris
Category:
Chart Studies
Tags:
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
1
56
asked 3 years ago by Arlette Rosario
Category:
Chart Studies
I am doing a calculation risk amount base on a Inside Bar For example if the risk is PRevHigh-PrevLow then If I want to no loose more thank 50 dollars for example I divide 50/risk then it gives me the total shares I need to buy. I would like to ro...
0
1
63
asked 3 years ago by Pablo Pablo
Category:
Chart Studies
Hi Pete, I am trying to make the Pivot Points study in thinkorswim to include the extended hours prices. As defined in TOS, it only considers regular trading hours. Could you please help me with this? What changes should I make to the original code? ...