├── .gitattributes ├── .gitignore ├── LICENSE ├── PATStrategy.cs ├── README.md ├── SecondEntryShortStrategy.cs ├── SimpleMovingAverageCrossover.cs ├── SimpleShortStrategy.cs ├── futurePullbackScalping.cs └── scalpingUpTrend.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/LICENSE -------------------------------------------------------------------------------- /PATStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/PATStrategy.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/README.md -------------------------------------------------------------------------------- /SecondEntryShortStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/SecondEntryShortStrategy.cs -------------------------------------------------------------------------------- /SimpleMovingAverageCrossover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/SimpleMovingAverageCrossover.cs -------------------------------------------------------------------------------- /SimpleShortStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/SimpleShortStrategy.cs -------------------------------------------------------------------------------- /futurePullbackScalping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/futurePullbackScalping.cs -------------------------------------------------------------------------------- /scalpingUpTrend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodalli/NT8-PAT-Strategy/HEAD/scalpingUpTrend.cs --------------------------------------------------------------------------------