Hello,
Wonder if any of you can help me please?
I would like to write some conditions for Pro Screener but am finding it difficult.
I’m looking at daily charts, using the Keltner channel and MA Ribbons, and would like to screen for the following:
Buy conditions:
Open of current bar lower than Keltner high
Close of current bar higher than Keltner high
AND
Close of current bar higher than (all 8) MA Ribbons
Sell conditions:
Open of current bar higher than Keltner Low
Close of current bar lower than Keltner Low
AND
Close of current bar lower than (all 8) MA Ribbons
Grateful if anyone can help
Many thanks, Scott
The Keltner indicator dosn’t return any information so thats why it is hard to fix the scanner.
If you have any alternativ i can look in to it
This is the code for the Keltner channel, you can add it to your screener instead of make a CALL:
BandMovingAverage=AVERAGE[period](high-low)
MiddleMovingAverage=AVERAGE[period](TypicalPrice)
upperband=MiddleMovingAverage+BandMovingAverage
lowerband=MiddleMovingAverage-BandMovingAverage
DMA= AVERAGE[period](TypicalPrice)
RETURN upperband COLOURED (0,200,0) AS "Keltner Upper Band", lowerband COLOURED (0,200,0) AS "Keltner Lower Band", DMA COLOURED (0,0,255) AS "DMA"