Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
104
views
asked 7 years ago by
Category: Chart Studies
Hello, I need a study that plots the closing price of the stock when the SlowK indicator crosses above the SlowD on the StochasticSlow indicator. Here is what I have so far: def KoverDcross = StochasticSlow()."SlowK" crosses above StochasticSlow()."S...
0
votes
1
answer
196
views
asked 7 years ago by
Category: Chart Studies
I have found the EPS data posted on TOS charts if often incorrect.  Sometimes posting a positive number when in fact it was a negative. (ex. EDIT, 8/9 17, shows positive $0.65/sh eps when it is actually NEGATIVE $0.65/sh).   Do you have a reliable EP...
0
votes
1
answer
94
views
asked 7 years ago by
Category: Chart Studies
How can I capture the market price at a specific time?   For example, I have a TOS study that will submit a market order when a certain condition is met.  How can I record the market price at that time so that I can use it in a trading stop?
0
votes
0
answers
115
views
Be first to answer!
asked 7 years ago by
Category: Chart Studies
Hi Pete. I would like to be able to take your MTF MACD to only look at 2 time frames (the Daily and Weekly), instead of having to look at 3 time frames. How would it be possible to make that change?
0
votes
0
answers
448
views
Be first to answer!
asked 7 years ago by
Category: Chart Studies
  This is my code for an arrow that plots for me. Is there any way I can add text under that arrow? Thanks! plot edArrow = if signal then low else Double.NaN; edArrow.SetDefaultColor(Color.PLUM); edArrow.SetPaintingStrategy(PaintingStrategy.ARRO...
0
votes
1
answer
65
views
asked 7 years ago by
Category: Chart Studies
Hahn, I have a lower study that plots a number value. How can I color code that value the same color as the candlestick for that day? So if there was a green candlestick on July 27th I need the plot color green. If there was a red candlestick on July...
0
votes
1
answer
59
views
asked 7 years ago by
Category: Chart Studies
Hi Pete, When you use a script multiple times in a quote does it run once or one for each occurrence e.g. def pcc = sp_ichimoku17072101()."price_confirmed_by_chikou"; def ccf = sp_ichimoku17072101()."chikou_crossed_first";
0
votes
1
answer
202
views
asked 7 years ago by
Category: Chart Studies
Hi Pete, Please take a look at the code below and attached images. I notices that there're times the scanner is not working correctly (I set it to scan on 15 mins.). RSI is below the centerline (50), but it alerts as above 50. Any bug? Please advise....
0
votes
1
answer
668
views
asked 7 years ago by
Category: Chart Studies
Hi Pete, Have you done any study regarding trendlines? Please advise.
0
votes
1
answer
653
views
asked 7 years ago by
Category: Chart Studies
Is there a way to get a script i.e. "script foo {}" to actually plot or change the values of a plot? Is there better documentation than the tos site?