The Hammer & Inverted Hammer indicator to add directly on the price chart. Only compatible with ProRealTime version 10.3 and above.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
REM Detection of Inverted hammer / White gravestone IF close>open and low=open and (high-close)>=3*(close-open) THEN DRAWARROWDOWN(barindex, high+2*pointsize) DRAWTEXT("Inverted Hammer", barindex, high+5*pointsize) ELSIF close>open and high=close and (open-low)>=3*(close-open) THEN REM Detection of Hammer / Black hanging man DRAWARROWUP(barindex, low - 2* pointsize) DRAWTEXT("Hammer", barindex, low-5*pointsize) ENDIF RETURN |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Indicator don’t work ?
This indicator is only compatible with Prorealtime 10.3
I’m using prorealtime suplied by ig markets so that’s potentially why then !
It would be possible to use this screener at the same time than the recent one about high volume?
you are doing a great job as I can see Nicolas! Congrats!
Hello,
I am in version 10.3 but it does not work
Hi all, How would i get this to work on an intra-day 5min chart?
Hi, there’s no reason why it should not work on a 5 min chart. Just apply the indicator on your price chart and you’re ok.
good evening sorry for my english but the indicator don’t work can you help me i have 10.3 version of prorealtime ; start only a new window below the screen with the price but always black nothing more
By adding it on price, it should display the pattern detection on the price chart, and not in a separated window below.