Votes
Answers
Views
Question
0
1
28
asked 4 years ago by Sam T
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
1
94
asked 4 years ago by Chanan Siegel
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
1
256
asked 4 years ago by RICHARD KINGSLEY
Category:
Alerts and Notifications
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
1
116
asked 4 years ago by Ram
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
1
186
asked 4 years ago by James Walton
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
1
75
asked 4 years ago by Leo Ortega
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
1
166
asked 4 years ago by Heath Wade
Category:
Alerts and Notifications
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
1
140
asked 4 years ago by Tom Danaher
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
2
389
asked 4 years ago by Mehnaz Singh
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
1
156
asked 4 years ago by Cc W
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...