Hi
I am trying to change these 3 lines from Hammer indicator to my personal settings.
If Open and close both are in top third of bar, I would like to see an arrow on that bar.
if (High < Math.min(Open1, Close1) &&
Math.abs(Open - Close) * 3 < (Math.min(Open, Close) - Low) &&
(High - Math.max(Open, Close)) < 0.05 * (Math.abs(Open - Close)))
Kindly help me out here please.
Cheers
I am trying to change these 3 lines from Hammer indicator to my personal settings.
If Open and close both are in top third of bar, I would like to see an arrow on that bar.
if (High < Math.min(Open1, Close1) &&
Math.abs(Open - Close) * 3 < (Math.min(Open, Close) - Low) &&
(High - Math.max(Open, Close)) < 0.05 * (Math.abs(Open - Close)))
Kindly help me out here please.
Cheers
Comment