Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

No Inside Bars Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
traderlady
Posted : Tuesday, November 28, 2017 8:31:15 PM
Registered User
Joined: 10/7/2004
Posts: 1,178

Bruce, can you provide a Custom Indicator or a Custom Condition for no inside bars within today's bar and 1-bar ago, 2-bars-ago, etc. through 9-bars ago?  I would like to use this in an Easy Scan or as a Column.

Bruce_L
Posted : Wednesday, November 29, 2017 9:15:32 AM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

If you want a single column displaying the number of bars in a row with no inside bars.

TrueInRow(NOT((100 * L1) \ 1 <= (100 * L) \ 1 AND (100 * H) \ 1 <= (100 * H1) \ 1), 10)

If you want individual formulas for 0 through 9 bars ago.

NOT((100 * L1) \ 1 <= (100 * L) \ 1 AND (100 * H) \ 1 <= (100 * H1) \ 1)
NOT((100 * L2) \ 1 <= (100 * L1) \ 1 AND (100 * H1) \ 1 <= (100 * H2) \ 1)
NOT((100 * L3) \ 1 <= (100 * L2) \ 1 AND (100 * H2) \ 1 <= (100 * H3) \ 1)
NOT((100 * L4) \ 1 <= (100 * L3) \ 1 AND (100 * H3) \ 1 <= (100 * H4) \ 1)
NOT((100 * L5) \ 1 <= (100 * L4) \ 1 AND (100 * H4) \ 1 <= (100 * H5) \ 1)
NOT((100 * L6) \ 1 <= (100 * L5) \ 1 AND (100 * H5) \ 1 <= (100 * H6) \ 1)
NOT((100 * L7) \ 1 <= (100 * L6) \ 1 AND (100 * H6) \ 1 <= (100 * H7) \ 1)
NOT((100 * L8) \ 1 <= (100 * L7) \ 1 AND (100 * H7) \ 1 <= (100 * H8) \ 1)
NOT((100 * L9) \ 1 <= (100 * L8) \ 1 AND (100 * H8) \ 1 <= (100 * H9) \ 1)
NOT((100 * L10) \ 1 <= (100 * L9) \ 1 AND (100 * H9) \ 1 <= (100 * H10) \ 1)


-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.