Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
28
views
asked 4 years ago by
Category: Chart Studies
Quick question for you... I have annual pivots plotting on a chart, but if I go to a lower timeframe and time set, 30M 20 Days, the data is incorrect. Is it a limitation of TOS to calculate annual data that is not provided on the displayed chart's ch...
0
votes
1
answer
28
views
asked 3 years ago by
Category: Chart Studies
I watch some mutual funds and often TOS won't adjust price for dividends no matter i hit the button under settings/equities that tells it to do just that.  Take ARBIX.  On 12/11/20, it had div of .3172.  I can't get my chart to reflect that div.  ins...
0
votes
1
answer
28
views
asked 1 year ago by
Category: Chart Studies
Hello Pete, I have made a scanner in 4 hour aggregation based of heiken-aishi candles. To see if my scan works , I have defined an "alert" based of my study. The definition I used in heiken-aishi is as follows, " def haClose_4h = (open(period=aggrega...
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 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: 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
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
24
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
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 ...