Hello,
I would like to see all the stocks that fit the following criteria on a daily basis
- The close of the bar is higher than the opening
- The body of the bar is maximum 25% of total candle
- The high of the day is very close to the end of the day
- There is a big wick below the opening price of the bar
Gr Marco
I would like to see all the stocks that fit the following criteria on a daily basis
The close of the bar is higher than the opening
The body of the bar is maximum 25% of total candle
The high of the day is very close to the end of the day
There is a big wick below the openingprice of the day
JSParticipant
Veteran
Hello,
Don’t you have to respond to your previous question first…?
Sorry, do not understand what you mean. I posted the request but something went wrong. Thats why i posted it a second time. To summarize. My question is:
I would like to see all the stocks that fit the following criteria on a daily basis
The close of the bar is higher than the opening
The body of the bar is maximum 25% of total candle
The high of the day is very close to the end of the day
There is a big wick below the openingprice of the day
JSParticipant
Veteran
Your previous question not this one…
Polite to respond…
I understand. And you are totally right. Will do
JSParticipant
Veteran
Hi Marco,
Hereby the screener…
This condition “the high of the day is almost at the end of the day” is not possible because when you use a time frame of a day you cannot know when the “High” or “Low” occurs on that day…
TimeFrame(Daily)
C1=Close>Open
C2=(Close-Open)<=0.25*(High-Low) //Body <= 0.25 * Total Candle
C3=(Open-Low)>0.75*(High-Low) //Wick below Open is > 75% of Total Candle
Screener[C1 and C2 and C3] (C3 as "75% wick below Open")
Hi Js,
I tried the code but seems not to give the result i want to see. I am looking for hammer bars (see attachment). Can you check? Thanks
gr Marco
JSParticipant
Veteran
Hi Marco,
Here is the screener for the “Hammer” pattern…
Sometimes in condition 3 (C3) the factor 3 is used instead of 2…
TimeFrame(Daily)
C1=Close>Open
C2=(High=Close)
C3=(Open-Low) >= 2*(Close-Open)
Hammer=C1 and C2 and C3
SCREENER[Hammer](Hammer as "Hammer")