This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@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()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@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 |