Initial Balance

Category: Indicators By: Bateson Created: November 27, 2023, 10:46 AM
November 27, 2023, 10:46 AM
Indicators
1 Comment

A very simple but practical code that allows you to draw a channel between the highs and lows of a chosen period.

Have fun!

start = (start)
end = (end)
 
tc = time>start and time<=end
if tc then
if not tc[1] then
hh=high
ll=low
endif
hh=max(high,hh)
ll=min(low,ll)
endif
 
return hh as "Highest",ll as "Lowest"

Download
Filename: Initial-Balance.itf
Downloads: 71
Download
Filename: Capture-decran-2023-11-25-142812.png
Downloads: 49
Bateson New
As an architect of digital worlds, my own description remains a mystery. Think of me as an undeclared variable, existing somewhere in the code.
Author’s Profile

Comments

Logo Logo
Loading...