Votes
Answers
Views
Question
0
0
68
Be first to answer!
asked 6 years ago by Craig Habermehl
Category:
Watch Lists
Pete I was hoping to get a red or green bar in a column when all time frames are in agreement. If there are not just keep it black.. The yellows arrows are in agreement
0
1
207
asked 6 years ago by Carol W
Category:
Alerts and Notifications
Hi Pete, I use VWMA (vol weighted moving average) with the following code: input length = 30; def vwma = Sum(volume * close, length) / Sum(volume, length); plot Value = vwma; I am getting an error on this line below: input averageType2 = Typ...
0
1
167
asked 6 years ago by Kenise M
Category:
Chart Studies
Hello Pete, how do we create a chart indicator study that highlights the highest volume candle on the 1 minute chart? The condition is highlighting the candle with the greatest volume on the 1 minute chart purple. The minimum volume on that candle mu...
0
1
194
asked 6 years ago by Richard Tucek
Category:
Strategy Guide
Hello, Not sure if I am even asking this in the right forum, but if anyone could help with this it would be greatly appreciated. I am trying to setup a contingent order as follows: A buy market order at open that will trigger a 50% sell stoplimit tha...
0
1
231
asked 6 years ago by anthony tremarco
Category:
Stock Scanners
I've found a new strategy called the Stiffness Indicator. I'm trying to turn this into a scan but getting rejected at line7:1.Here's the code and you help. input price = close; input length = 60; input averageLength = 100; def avg = Average(price, a...
1
1
432
asked 6 years ago by Chris Storms
Category:
Stock Scanners
Hi Pete, I am trying to setup a scan in ToS for when the 4 EMA crosses the 9 EMA (above or below) using Renko candles set to 500 ticks. I can make the EMA crossovers easily enough with candles but am unsure how to adapt the Condition Wizard to Renko...
0
1
1237
asked 6 years ago by iO Rambo
Category:
Chart Studies
Hi Hahn i need auto fibonacci retracement from premarket high to premarket low level with the option to change/add additional retracement levels. Hopefully the request isnt too sophisticated as the previous fibonacci request. Thank you
0
1
523
asked 6 years ago by Justin Madigan
Category:
Stock Scanners
Hi Pete, In a previous post (https://www.hahn-tech.com/ans/scanning-for-heikin-ashi-bullish-candle-with-no-lower-wick/) you show for a bullish heikin ashi candle with no lower wick. I was wondering if you could expand on this and show: 1) How to scan...
0
1
231
asked 6 years ago by Forex Trader
Category:
Chart Studies
Hi Pete, I am trying to create a study to add horizontal lines across previos day high low only across US session. I want to specify the start time, end time as 0800 and 1600 hours. I tried to modify your earlier code, but it does not work. ########...
0
1
178
asked 6 years ago by Harinder Singh
Category:
Chart Studies
Tags:
Hi guys, Anyone able to help for this.. Am trying to create a script that will plot the yearly Fibonacci levels on your chart no matter what timeframe you are on.. input price = close; input high = high; input low = low; input onExpansion = Yes; inpu...