Questions (2352)

Votes
Answers
Views
Question
0
votes
1
answer
583
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, could you please try adding the previous day's HLC to the code below with the same formatting? Thank you *************************************************** declare hide_on_daily; input PlotOverNightExtremes = yes; input DisplayPriceBubbleOn...
0
votes
1
answer
60
views
asked 1 year ago by
Category: Strategy Guide
Is there anything wrong with below script that is not working with conditional order? declare lower; def delta = close(period = aggregationPeriod.FIVE_MIN) - close(period = aggregationPeriod.FIVE_MIN)[1]; def deltaClose = deltaClose[1] + delta; def p...
0
votes
1
answer
61
views
asked 1 year ago by
Category: Strategy Guide
Hello Pete, I hope you are doing well. I have tried to do study based order with TOS using HiLoActivator. Had the settings for MKT, GTC, 15 min chart, extended hours unchecked on both sides buy and sell. The set up was to open if it crosses above the...
0
votes
1
answer
77
views
asked 1 year ago by
Category: Watch Lists
Hello Mr. Hahn! Hope you're doing well. I am trying to create a custom column on my scans that shows the ATR(simple) over 14 bars divided by the average price over 14 bars for the respective ticker. Below is the code I came up with, however I cannot ...
0
votes
1
answer
93
views
asked 1 year ago by
Category: Chart Studies
In ToS, I have chart studies that have 5,20,50,200 days Moving averages (EMA) with alerts and I have scanner alert that I get notification for 5days crossing over 20days as example! Is there a way I can get the actual number where these crossovers or...
0
votes
1
answer
61
views
asked 1 year ago by
Category: Chart Studies
Hello Hahn, Hope you're doing well! I was wondering if you could help me modify the ToS indicator "rate of change crossover (positive to negative) & (negative to positive)" to only display for the current day. Thank you so much for your help!
0
votes
1
answer
54
views
asked 1 year ago by
Category: Strategy Guide
Do you have a review of traderspost and how it works with thinkorswim for trade automation?
0
votes
1
answer
93
views
asked 1 year ago by
Category: Watch Lists
Hi Pete, Can this code show background color on the watchlist when the following parameters are met? This was taken from this question: https://www.hahn-tech.com/ans/price-from-ema/ I want to assign background color green when the watchlist filter is...
0
votes
1
answer
92
views
asked 1 year ago by
Category: Chart Studies
I want to create a Commitment of Traders lower study for future markets. I couldn't find that data in TD Ameritrade or Thinkscript. I can download that data from CFTC. Is there a way to download and import data to create a lower study?
0
votes
1
answer
281
views
asked 1 year ago by
Category: Chart Studies
Hello Mr. Hahn, This is a conceptual question about a TOS study. I know how to get yesterdays low, close, high etc.  However, I'd like a study to be able to grab the barnumber of those points/candles and then grab the open or close of that candle bod...