Support Board
Date/Time: Sun, 22 Jun 2025 22:33:40 +0000
Post From: Troubles with creating an automated trading system
[2022-03-14 21:48:57] |
Sawtooth - Posts: 4229 |
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] ) |