Questions (2367)

Votes
Answers
Views
Question
0
votes
0
answers
462
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
146
views
asked 7 years ago by
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
votes
1
answer
68
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
61
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
44
views
asked 7 years ago by
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
votes
2
answers
27
views
asked 7 years ago by
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
votes
1
answer
217
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
676
views
asked 7 years ago by
Category: Chart Studies
Hi Pete, Have you done any study regarding trendlines? Please advise.
0
votes
1
answer
528
views
asked 7 years ago by
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...
0
votes
1
answer
711
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?