I was wondering what the candlestick pattern is at the bottom of this Aston Martin chart and if there is a screener already built in prorealtime?
Thanks Roberto,
I have been looking into it.
How would I code a candlestick screener for either long white line or Marubozo, price change ≥8% and at or near recent 52 week lows?
Here is the code, beware that conditions for resting near the 52 week lows could be too restrictive. In this example, I add a 10% max at line 6 (1.10 => change it to whatever coefficient).
Timeframe(Weekly)
LL = lowest[52](low)
timeframe(default)
marubozu = abs(open-close)/range>=0.95 and range>=3*average[30](range)
nearll = close/ll<=1.1
test = marubozu and variation>=8 and nearll
screener[test](close/ll as "percent from 52weeks low")