Questions (2352)

Votes
Answers
Views
Question
0
votes
0
answers
27
views
Be first to answer!
asked 5 years ago by
Category: Chart Studies
can you give me a direction to do that ? for example,  if AAPL then plot EMA21, if AMZN then plot EMA34 otherwise no ploting EMA .  
0
votes
1
answer
27
views
asked 4 years ago by
Category: Watch Lists
On all the securities I have, I have GTC stop orders. Every morning, I look at the TOS watchlist "All account positions" and click on each ticker to bring up a chart so I can see where my stop is in relation to the pre-market bid/ask. This is a tedio...
0
votes
1
answer
27
views
asked 2 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...
0
votes
1
answer
26
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, Is there a way to scan stocks approaching within $0.25 to a half (ie $19.25) or a full ($19.75) whole number? I would also like a second scan of crossing a half (ie $19.50) or full ($20.00)? Thank you again!
0
votes
1
answer
26
views
asked 4 years ago by
Category: Chart Studies
Is there a way to show a label or bubble with the amount of pips between both bands? #Code: input displace = 0; input length = 20; plot LowerBand = Lowest(low[-displace + 1], length); plot UpperBand = Highest(high[-displace + 1], length);
0
votes
1
answer
26
views
asked 1 year ago by
Category: Chart Studies
Hi Pete, I have a label of the total volume for the day, which displays it in unnecessarily long form, e.g., 315,774,788. This takes up too much space as a label. I would like to convert the number in the label to a short form (based on millions, wit...
0
votes
1
answer
26
views
asked 1 month ago by
Category: Chart Studies
I watch premarket action.  But the volume is low and often non related to after open activity, plus it skews many indicators to vary from their "non extended hours" levels. Is there an easy way to turn on /off extended hours display across all charts...
0
votes
1
answer
25
views
asked 3 years ago by
Category: Chart Studies
Getting "Value never assgined to" on  my variables vSignalCandleClose and vSignalCandleStop. What am I doing wrong? #-----MyIndicator-- def vSignalCandleClose;def vSignalCandleStop; def vEMA = MovingAverage(AverageType.EXPONENTIAL, close, 20);de...
0
votes
1
answer
23
views
asked 4 years ago by
Category: Chart Studies
I want to read in a few external parameters as inputs to a study. What is the best way to do that? These parameters would vary from one stock to another and are generated by an external program. I can add these as inputs, but then I have to manually ...
0
votes
1
answer
23
views
asked 3 months ago by
Category: Strategy Guide
Can we compare multiple FPL in Single Strategy to see which one works better for a particular Stock. Ex, def conditionOne = Average(close, 8) crosses above Average(close, 21); def conditionOneClose = Average(close, 8) crosses below Average(close, 21)...