Support Board
Date/Time: Mon, 10 Mar 2025 07:25:54 +0000
Post From: Troubles with creating an automated trading system
[2022-03-14 21:48:57] |
Sawtooth - Posts: 4181 |
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] ) |