Questions (884)

Votes
Answers
Views
Question
0
votes
1
answer
28
views
asked 4 years ago by
Category: Chart Studies
Is there a way to show a label or bubble with the amount of pips between both bands? #Code: input displace = 0; input length = 20; plot LowerBand = Lowest(low[-displace + 1], length); plot UpperBand = Highest(high[-displace + 1], length);
0
votes
1
answer
94
views
asked 4 years ago by
Category: Stock Scanners
I attempted this with the condition icon.  But its not working the way I want. It does show the crosses. but I would like to only show me the crosses that  took place within the last  1 or 2 candles. and not going further back in time.   Thank  ...
0
votes
1
answer
251
views
asked 4 years ago by
Hi Pete, I need help with creating a script that shows a Candle closes above previous high level, indicated by an up arrow on the bottom of the candle. And i also want to be notify with an alert sound- ring. You're the best Thanks.
0
votes
1
answer
114
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, I'm not sure if this is possible also. I'm looking for a scan to find the stocks that are trading below the cash value. Here is formula I manually use to check the cash value for the stock but I don't know how to setup a scan to find them. A...
0
votes
1
answer
186
views
asked 4 years ago by
Category: Stock Scanners
Hey Pete!  Don't roast me just yet I've been through all ( I think all) the posts and I cannot find an example of just how to say +/- 2%.  I know I can use this post to find the previous close https://www.hahn-tech.com/ans/gap-to-previous-day-close-s...
1
vote
1
answer
75
views
asked 4 years ago by
Category: Stock Scanners
Hello there Mr. Hahn, I have another very simple request for you. I already found the code to scan for inside bars on your site. What I would like next would be to scan for stocks that close in the upper 40% or lower 40% of the previous bars' range a...
0
votes
1
answer
166
views
asked 4 years ago by
Hey Pete, I'm in the process of trying to create the moving average crossover alert and I have some questions about the discrepancies between where the chart says I should receive a signal and the alert values indicates I should receive a signal.  I ...
0
votes
1
answer
140
views
asked 4 years ago by
Category: Strategy Guide
Hi -   Is it possible to code up a conditional order to sell 1/2 the position (1/2 of the Buy_To_Open tradeSize) when price crosses above an EMA then then sell the rest of the position when  another condition is true (MACD Cross)? I've watched y...
1
vote
2
answers
389
views
asked 4 years ago by
Category: Strategy Guide
Is there a way to manually (programatically) call addOrder to create orders. I have a script which creates an order based on few variables. Right now I can use it as part of a strategy but I need to run this script (and create orders) on live chart w...
0
votes
1
answer
156
views
asked 4 years ago by
Category: Watch Lists
Here is what i have so far Some on my WL registered properly, others not Thanks for any assistance   input builtInPeriod = aggregationPeriod.DAY; input periodsBack = 1; Def high = close(period = aggregationPeriod.MONTH)[periodsBack]; def CrossAb...