Optuma Forums › Optuma Scripting › Two Inside bar Script › Reply To: Two Inside bar Script
July 23, 2019 at 9:39 pm
#54119
- Topics: 118
- Replies: 344
- Posts: 462
Hi Jamie,
The script is very simple for use with SHOWBAR on a chart:
// Double Inside Bar
Inside0 = High(0) < High(1) and LOW(0) > LOW(1);
Inside1 = High(1) < High(2) and LOW(1) > LOW(2);
Inside0 and Inside1
Cheers
Trevor