Login Page - Create Account

Support Board


Date/Time: Thu, 16 May 2024 19:12:26 +0000



Post From: Alert Formula to filter out bars touching Moving Average too many times

[2020-08-08 15:39:27]
Sawtooth - Posts: 3997
Try this for a touch from below:
=AND(H>=ID1.SG1-TICKSIZE*2,H[-1]<ID1.SG1[-1]-TICKSIZE*2)

And this for a touch from above:
=AND(L<=ID1.SG1+TICKSIZE*2,L[-1]>ID1.SG1[-1]+TICKSIZE*2)