Support Board
Date/Time: Mon, 15 Sep 2025 20:51:18 +0000
Post From: Troubles with creating an automated trading system
[2022-03-14 21:48:57] |
Sawtooth - Posts: 4263 |
This is the basic way to identify an up and down bar: Up bar: =C > O Down bar: =C < O Previous bar: =C[-1] > O[-1] =C[-1] < O[-1] 3 consecutive up bars: =AND(C > O , C[-1] > O[-1] , C[-2] > O[-2] ) |