Hi,
I have an indicator for pin bars, but I am having difficulty in the pro screener to only show the pin bars that have completed (previous candle), as the indicator will show pin bars as the current candle is forming. I would like the screener to only show completed pin bars after the price has closed to reduce the false signals.
Can this be done?
Thanks
Derek
So if your pinbar trigger is included in a variable, just screen this variable with a lookback period of “1”. That way, you make sure that the pinbar trigger was true at the end of the last bar.
Example: (variable “mypinbar”)
SCREENER [mypinbar[1]>0]