Chart Studies (880)

Votes
Answers
Views
Question
0
votes
0
answers
129
views
Be first to answer!
asked 8 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
475
views
Be first to answer!
asked 8 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
74
views
asked 8 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
70
views
asked 8 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
224
views
asked 8 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
683
views
asked 8 years ago by
Category: Chart Studies
Hi Pete, Have you done any study regarding trendlines? Please advise.
0
votes
1
answer
749
views
asked 8 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?
0
votes
2
answers
2144
views
asked 8 years ago by
Category: Chart Studies
Please see attached file. I can't figure out how to have the same RSI as the attached screenshot. Remove level 70 and 30 and just have it colors when crosses line 50. Please advise. Thank you. Editor's note: The title and URL of this post has been ch...
0
votes
1
answer
147
views
asked 8 years ago by
Category: Chart Studies
Hello, here is my code: plot edArrow = if energy > 450 and volume > 200000 then energy else Double.NaN; This is on my indicator (which is not a lower study). The problem is that the arrow plots on my volume bar and I want to plot it under my ca...
0
votes
2
answers
393
views
asked 8 years ago by
Category: Chart Studies
Hello Hahn, Real big fan of the site. A lot of the material here has helped me in trading immensely. I've recently run into an issue coding a study using RSI, which I plan to eventually turn into a strategy. Hoping that you might be able to extend me...