├── .gitignore ├── DrawingTools └── irArrowLine.cs ├── ExportNinjaScript └── BigCandle.zip ├── Indicators ├── BigCandle.cs ├── ColumnPanel.cs ├── CumulativeDelta.cs ├── CumulativeDeltaDifference.cs ├── Delta.cs ├── FootprintChart.cs ├── Level2Column.cs ├── ProfileColumns.cs ├── Spread.cs ├── VolumeProfileColumn.cs └── ZipperLength.cs ├── SuperDomColumns ├── CurrentTrades.cs └── NumTouches.cs └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /DrawingTools/irArrowLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/DrawingTools/irArrowLine.cs -------------------------------------------------------------------------------- /ExportNinjaScript/BigCandle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/ExportNinjaScript/BigCandle.zip -------------------------------------------------------------------------------- /Indicators/BigCandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/BigCandle.cs -------------------------------------------------------------------------------- /Indicators/ColumnPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/ColumnPanel.cs -------------------------------------------------------------------------------- /Indicators/CumulativeDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/CumulativeDelta.cs -------------------------------------------------------------------------------- /Indicators/CumulativeDeltaDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/CumulativeDeltaDifference.cs -------------------------------------------------------------------------------- /Indicators/Delta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/Delta.cs -------------------------------------------------------------------------------- /Indicators/FootprintChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/FootprintChart.cs -------------------------------------------------------------------------------- /Indicators/Level2Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/Level2Column.cs -------------------------------------------------------------------------------- /Indicators/ProfileColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/ProfileColumns.cs -------------------------------------------------------------------------------- /Indicators/Spread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/Spread.cs -------------------------------------------------------------------------------- /Indicators/VolumeProfileColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/VolumeProfileColumn.cs -------------------------------------------------------------------------------- /Indicators/ZipperLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/Indicators/ZipperLength.cs -------------------------------------------------------------------------------- /SuperDomColumns/CurrentTrades.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/SuperDomColumns/CurrentTrades.cs -------------------------------------------------------------------------------- /SuperDomColumns/NumTouches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/SuperDomColumns/NumTouches.cs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twdsje/Ninjatrader-scripts/HEAD/readme.md --------------------------------------------------------------------------------