Skip to content

Instantly share code, notes, and snippets.

//@version=6
indicator("0000: FVG", overlay=true, max_boxes_count=500, max_lines_count=500)
type FVG
bool bull
box[] boxes
line[] ce_lines
var fvg_bull = FVG.new(true, array.new_box(), array.new_line())
var fvg_bear = FVG.new(false, array.new_box(), array.new_line())
//@version=6
indicator("0000: ICT Order Flow", overlay=true, max_bars_back=5000, max_lines_count=500, max_labels_count=500, max_boxes_count=500)
////////////
////////////
//////////// Type
////////////
////////////
type Global_Settings