Questions (2372)

Votes
Answers
Views
Question
0
votes
1
answer
132
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, It's been a while since I last checked your website. I hope you can help me in the coding I tried to compose from the previous codes you provided me before. I tried to combine them. But not getting what I want. I am using this for my scanner...
0
votes
1
answer
116
views
asked 3 years ago by
Category: Chart Studies
Greetings, In TOS Is there a way to have the ParabolicSAR  display different colors when plotting above and below the candles? The settings dialogue box only allows one color.
0
votes
1
answer
319
views
asked 3 years ago by
Category: Chart Studies
Greetings, I thought it would be a simple task but my searches have been fruitless. How can I turnoff Volume Subgraph in TOS on individual charts before I detach them. TIA.... Peter
0
votes
1
answer
82
views
asked 3 years ago by
Category: Strategy Guide
Hi Pete, I have written a simple back testing program for my strategy and I am now stuck. The program works fine, except that if an additional buy condition occurs before my sell condition is triggered, it just ignores the additional sell condition (...
0
votes
1
answer
33
views
asked 3 years ago by
Category: Chart Studies
https://www.hahn-tech.com/ans/price-for-a-specified-date/ discusses how to define a price for a previous date using the code def priceAtDate = if GetYYYYMMDD() == 20170103 then close else Double.NaN; That code gives a value only for the single day 20...
1
vote
1
answer
113
views
asked 3 years ago by
Category: Chart Studies
Hello Hahn! I was wondering if you could help me create a VWAP Script that displays only for the current trading day. For example, if I change the time length to 10 day 15 minute chart, I only need the VWAP to show for the most recent day. Thank you ...
0
votes
1
answer
95
views
asked 3 years ago by
Category: Chart Studies
Hi Hahn, I came across your youtube videos about TOS tutorials and are having a blast. Recently i read an article and saw Bloomberg Terminal has a function of displaying historical chart of an individual strike's Implied volatility since option becam...
0
votes
1
answer
133
views
asked 3 years ago by
Category: Chart Studies
I'd like to plot a line chart of the percentage of stocks in an index above a moving average. Particularly the percentage of stocks in the S&P500 above the 50SMA. Thanks for any help you can provide.
0
votes
1
answer
46
views
asked 3 years ago by
Category: Chart Studies
Hello Pete, I wanted to edit my last request and make it simple.   How do we make all candles black except the HOD candle.   Best
0
votes
1
answer
113
views
asked 3 years ago by
Category: Stock Scanners
Due to the limitation of using secondary aggregation on scans, I want to calculate the 200 weekly MA in a different way: I am trying to get 200 weekly MA with your suggested method. def newWeek = GetWeek() <> GetWeek()[1]; def firstDayOfWeek = ...