Votes
Answers
Views
Question
0
1
157
asked 8 years ago by Noel Jensen ???
Category:
Stock Scanners
I'm new here and apologize in advance if this is a stupid question. Here's the pseudocode for the scan I'm trying to create: ADX(14) is greater than 30 ADX(14) in this period is higher than ADX(14) in the last period Current bar high is higher than S...
0
0
476
Be first to answer!
asked 8 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
156
asked 8 years ago by Kim Tim
Category:
Stock Scanners
Hi Pete, Please help to set up scan for these conditions: Scan for Buy 1) Price crosses above SMA 50 (must be a fresh cross) 2) StochasticFull (k period=8; d period=3) - k period must be below 40 at least; k period increases 5 points from the lowest ...
0
1
76
asked 8 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
70
asked 8 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
45
asked 8 years ago by Stephen Piper
Category:
Stock Scanners
Hi Pete, I want to modify a script's runtime. using a drawing or anything else would let me setup any symbol without having to edit the values on the script edit panel for each one. i.e. def foo = getdrawingvalue(type);
0
2
45
asked 8 years ago by Vivek Danielson
Category:
Strategy Guide
how do you study to buy & sell automatic on trade. I have problem with the code to generators to buy and sell on the indicator to do it automatic.
0
1
225
asked 8 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
684
asked 8 years ago by Kim Tim
Category:
Chart Studies
Hi Pete, Have you done any study regarding trendlines? Please advise.
0
1
545
asked 8 years ago by Kim Tim
Category:
Stock Scanners
Hi Pete, Using the code below, how do I set up the scanner to alert with sound when price crosses up 50 or crosses down 50 (it must be a fresh cross though to avoid chops). Please advise. declare lower; input length = 14; input price = close; input a...