- Questions
- Chart Studies
Votes
Answers
Views
Question
0
0
468
Be first to answer!
asked 7 years ago by Mike D'Antonio
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
1
72
asked 7 years ago by Mike D'Antonio
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
1
65
asked 7 years ago by Stephen Piper
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
1
223
asked 7 years ago by Kim Tim
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
1
682
asked 7 years ago by Kim Tim
Category:
Chart Studies
Hi Pete, Have you done any study regarding trendlines? Please advise.
0
1
735
asked 7 years ago by Stephen Piper
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
2
2120
asked 7 years ago by Kim Tim
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
1
143
asked 8 years ago by Mike D'Antonio
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
2
388
asked 8 years ago by Alex Polstra
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...
0
1
177
asked 8 years ago by C Chris
Category:
Chart Studies
I was wondering if there is a way to overlay a higher time frame chart over a smaller one. So could I overlay a 1 hour chart over a 15 minute chart? Not technically over it because I need to see both but you get what I mean. Or could I plot highs ...