Questions (2349)

Votes
Answers
Views
Question
0
votes
2
answers
62
views
asked 7 years ago by
Category: Stock Scanners
I was going to scan to make sure that there is positive moneyflow into a stock. I try and go def price = close; def MoneyTotal= MoneyFlow(price); The compiler complains no default value for "low" and no default value for "volume". I tried MoneyFlow(p...
0
votes
1
answer
62
views
asked 6 years ago by
Category: Strategy Guide
This is complex in my head, but surely there is a simple solution. I am working on exit orders for back testing. Specifically I want to exit when one of two or more conditions presents itself first, exiting at a hard target OR when another particular...
0
votes
1
answer
62
views
asked 4 years ago by
Category: Chart Studies
Hi there, I'm wondering if anyone knows how to divide 2 separate issues such as /ZN divided by /YM on the TOS trading platform. Or, can it be done in excel after exporting from TOS. I'm interested in ratios, and this info would be good to have. Thank...
0
votes
1
answer
62
views
asked 4 years ago by
Category: Stock Scanners
Is there a way to run script only on these symbols /ES or /CL or /HG? And the script I am looking to run is something simple like this: ATR()[1] >= 0.25 I looked online and discovered if GetSymbol() but unsure if this is what I am supposed to be u...
0
votes
1
answer
62
views
asked 3 years ago by
Category: Chart Studies
Want to add RSI for "SPY" as a lower study on stock charts.  Have searched the web and site for secondary or different stock ticker but nothing comes up. Is there anyway to display a study for a stock ticker other than the one being shown on the...
0
votes
1
answer
62
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, I'm looking for a scan that gives the total value based on parameters of the daily RSI(14) + Slow Stochastics(14). Example: Scan for a total of less than 50 between the two. Thanks again!
0
votes
1
answer
62
views
asked 2 years ago by
Category: Chart Studies
Is it possible to plot futures options using Thinkscript? For example, the first line below plots an SPX option correctly, but the second line does not produce any output: plot pr1 = close(symbol = ".SPXW220331P4495", pricetype = "MARK"); plot pr2 = ...
0
votes
1
answer
62
views
asked 1 year ago by
Category: Chart Studies
Hi, i have the original code for the Advanced Decline Cumulative Average study on TOS. However, i will like to add a label to the upper study charts to indicate that the lines have crossed above or below. Is it possible? Thanks for your help The code...
1
vote
1
answer
62
views
asked 7 months ago by
Category: Chart Studies
When using the TOS VolumeProfile study, is it possible to hide the volume figures? From the shape of the volume profile, it's easy to see which prices had the most volume, so the actual numbers aren't necessary, and just add clutter to the chart. Exa...
0
votes
1
answer
61
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, This code idea is taken from your previous solutions. I am not getting the correct values if I select the start time 1800- when future opens. input StartTime = 1800; input EndTime = 859; input StartDate= 20190116; input EndDate = 20190117; i...