├── Extensions ├── PT-1.0 │ └── all.js └── PT-2.0-Web-GUI │ ├── README.md │ ├── all.js │ └── estimated-usd.js ├── README.md ├── Version 1 ├── PT │ ├── BTC │ │ ├── DCA.properties │ │ ├── INDICATORS.properties │ │ └── PAIRS.properties │ ├── ETH │ │ ├── DCA.properties │ │ ├── INDICATORS.properties │ │ └── PAIRS.properties │ └── Reference │ │ └── ETH - Fogazi │ │ ├── Fogazi DCA LowBB.properties │ │ ├── Fogazi INDICATORS LowBB.properties │ │ └── Fogazi PAIRS LowBB.properties ├── PTFeeder │ ├── BTC │ │ ├── 1. SUPER-BEAR │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 2. STRONG-BEAR │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 3. BEAR │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 4. SIDEWAY │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 5. BULL │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 6. STRONG-BULL │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 7. SUPER-BULL │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ └── appsettings.json │ ├── ETH │ │ ├── 1. SUPER-BEAR │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 2. STRONG-BEAR │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 3. BEAR │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 4. SIDEWAY │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 5. BULL │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 6. STRONG-BULL │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ ├── 7. SUPER-BULL │ │ │ ├── dca.txt │ │ │ ├── indicator.txt │ │ │ └── pairs.txt │ │ └── appsettings.json │ └── hostsettings_guideV1.json └── PTMagic │ └── Reference │ ├── ETH - BenGaming │ ├── DCA.properties │ ├── INDICATORS.properties │ ├── PAIRS.properties │ └── settings.analyzer.json │ └── ETH - m0dded │ ├── DCA.properties │ ├── INDICATORS.properties │ ├── PAIRS.properties │ ├── generated │ └── PAIRS.properties │ └── settings.analyzer.json └── Version 2 ├── PT ├── BTC │ ├── DCA.properties │ ├── INDICATORS.properties │ └── PAIRS.properties ├── ETH │ ├── DCA.properties │ ├── INDICATORS.properties │ └── PAIRS.properties ├── Reference │ ├── BTC - Armchair Guru │ │ ├── DCA.properties │ │ ├── INDICATORS.properties │ │ └── PAIRS.properties │ ├── BTC - ChipCrypto │ │ ├── DCA.properties │ │ ├── INDICATORS.properties │ │ └── PAIRS.properties │ └── ETH - BenGaming │ │ ├── DCA.properties │ │ ├── INDICATORS.properties │ │ └── PAIRS.properties └── application_guideV2.properties ├── PTFeeder └── hostsettings_guideV2.json ├── PTFeeder_Advanced ├── BTC │ └── appsettings.json └── ETH │ └── appsettings.json └── _old ├── PTFeeder ├── BTC │ └── appsettings.json └── ETH │ └── appsettings.json └── PTFeeder_Bear_Market ├── BTC └── appsettings.json └── ETH └── appsettings.json /Extensions/PT-1.0/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Extensions/PT-1.0/all.js -------------------------------------------------------------------------------- /Extensions/PT-2.0-Web-GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Extensions/PT-2.0-Web-GUI/README.md -------------------------------------------------------------------------------- /Extensions/PT-2.0-Web-GUI/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Extensions/PT-2.0-Web-GUI/all.js -------------------------------------------------------------------------------- /Extensions/PT-2.0-Web-GUI/estimated-usd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Extensions/PT-2.0-Web-GUI/estimated-usd.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/README.md -------------------------------------------------------------------------------- /Version 1/PT/BTC/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/BTC/DCA.properties -------------------------------------------------------------------------------- /Version 1/PT/BTC/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/BTC/INDICATORS.properties -------------------------------------------------------------------------------- /Version 1/PT/BTC/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/BTC/PAIRS.properties -------------------------------------------------------------------------------- /Version 1/PT/ETH/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/ETH/DCA.properties -------------------------------------------------------------------------------- /Version 1/PT/ETH/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/ETH/INDICATORS.properties -------------------------------------------------------------------------------- /Version 1/PT/ETH/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/ETH/PAIRS.properties -------------------------------------------------------------------------------- /Version 1/PT/Reference/ETH - Fogazi/Fogazi DCA LowBB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/Reference/ETH - Fogazi/Fogazi DCA LowBB.properties -------------------------------------------------------------------------------- /Version 1/PT/Reference/ETH - Fogazi/Fogazi INDICATORS LowBB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/Reference/ETH - Fogazi/Fogazi INDICATORS LowBB.properties -------------------------------------------------------------------------------- /Version 1/PT/Reference/ETH - Fogazi/Fogazi PAIRS LowBB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PT/Reference/ETH - Fogazi/Fogazi PAIRS LowBB.properties -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/1. SUPER-BEAR/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/1. SUPER-BEAR/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/1. SUPER-BEAR/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/1. SUPER-BEAR/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/1. SUPER-BEAR/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/1. SUPER-BEAR/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/2. STRONG-BEAR/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/2. STRONG-BEAR/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/2. STRONG-BEAR/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/2. STRONG-BEAR/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/2. STRONG-BEAR/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/2. STRONG-BEAR/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/3. BEAR/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/3. BEAR/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/3. BEAR/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/3. BEAR/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/3. BEAR/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/3. BEAR/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/4. SIDEWAY/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/4. SIDEWAY/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/4. SIDEWAY/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/4. SIDEWAY/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/4. SIDEWAY/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/4. SIDEWAY/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/5. BULL/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/5. BULL/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/5. BULL/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/5. BULL/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/5. BULL/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/5. BULL/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/6. STRONG-BULL/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/6. STRONG-BULL/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/6. STRONG-BULL/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/6. STRONG-BULL/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/6. STRONG-BULL/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/6. STRONG-BULL/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/7. SUPER-BULL/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/7. SUPER-BULL/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/7. SUPER-BULL/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/7. SUPER-BULL/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/7. SUPER-BULL/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/7. SUPER-BULL/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/BTC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/BTC/appsettings.json -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/1. SUPER-BEAR/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/1. SUPER-BEAR/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/1. SUPER-BEAR/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/1. SUPER-BEAR/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/1. SUPER-BEAR/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/1. SUPER-BEAR/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/2. STRONG-BEAR/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/2. STRONG-BEAR/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/2. STRONG-BEAR/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/2. STRONG-BEAR/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/2. STRONG-BEAR/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/2. STRONG-BEAR/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/3. BEAR/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/3. BEAR/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/3. BEAR/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/3. BEAR/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/3. BEAR/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/3. BEAR/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/4. SIDEWAY/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/4. SIDEWAY/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/4. SIDEWAY/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/4. SIDEWAY/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/4. SIDEWAY/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/4. SIDEWAY/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/5. BULL/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/5. BULL/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/5. BULL/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/5. BULL/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/5. BULL/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/5. BULL/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/6. STRONG-BULL/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/6. STRONG-BULL/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/6. STRONG-BULL/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/6. STRONG-BULL/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/6. STRONG-BULL/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/6. STRONG-BULL/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/7. SUPER-BULL/dca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/7. SUPER-BULL/dca.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/7. SUPER-BULL/indicator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/7. SUPER-BULL/indicator.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/7. SUPER-BULL/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/7. SUPER-BULL/pairs.txt -------------------------------------------------------------------------------- /Version 1/PTFeeder/ETH/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/ETH/appsettings.json -------------------------------------------------------------------------------- /Version 1/PTFeeder/hostsettings_guideV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTFeeder/hostsettings_guideV1.json -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - BenGaming/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - BenGaming/DCA.properties -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - BenGaming/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - BenGaming/INDICATORS.properties -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - BenGaming/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - BenGaming/PAIRS.properties -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - BenGaming/settings.analyzer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - BenGaming/settings.analyzer.json -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - m0dded/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - m0dded/DCA.properties -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - m0dded/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - m0dded/INDICATORS.properties -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - m0dded/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - m0dded/PAIRS.properties -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - m0dded/generated/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - m0dded/generated/PAIRS.properties -------------------------------------------------------------------------------- /Version 1/PTMagic/Reference/ETH - m0dded/settings.analyzer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 1/PTMagic/Reference/ETH - m0dded/settings.analyzer.json -------------------------------------------------------------------------------- /Version 2/PT/BTC/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/BTC/DCA.properties -------------------------------------------------------------------------------- /Version 2/PT/BTC/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/BTC/INDICATORS.properties -------------------------------------------------------------------------------- /Version 2/PT/BTC/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/BTC/PAIRS.properties -------------------------------------------------------------------------------- /Version 2/PT/ETH/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/ETH/DCA.properties -------------------------------------------------------------------------------- /Version 2/PT/ETH/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/ETH/INDICATORS.properties -------------------------------------------------------------------------------- /Version 2/PT/ETH/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/ETH/PAIRS.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/BTC - Armchair Guru/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/BTC - Armchair Guru/DCA.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/BTC - Armchair Guru/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/BTC - Armchair Guru/INDICATORS.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/BTC - Armchair Guru/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/BTC - Armchair Guru/PAIRS.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/BTC - ChipCrypto/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/BTC - ChipCrypto/DCA.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/BTC - ChipCrypto/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/BTC - ChipCrypto/INDICATORS.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/BTC - ChipCrypto/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/BTC - ChipCrypto/PAIRS.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/ETH - BenGaming/DCA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/ETH - BenGaming/DCA.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/ETH - BenGaming/INDICATORS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/ETH - BenGaming/INDICATORS.properties -------------------------------------------------------------------------------- /Version 2/PT/Reference/ETH - BenGaming/PAIRS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/Reference/ETH - BenGaming/PAIRS.properties -------------------------------------------------------------------------------- /Version 2/PT/application_guideV2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PT/application_guideV2.properties -------------------------------------------------------------------------------- /Version 2/PTFeeder/hostsettings_guideV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PTFeeder/hostsettings_guideV2.json -------------------------------------------------------------------------------- /Version 2/PTFeeder_Advanced/BTC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PTFeeder_Advanced/BTC/appsettings.json -------------------------------------------------------------------------------- /Version 2/PTFeeder_Advanced/ETH/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/PTFeeder_Advanced/ETH/appsettings.json -------------------------------------------------------------------------------- /Version 2/_old/PTFeeder/BTC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/_old/PTFeeder/BTC/appsettings.json -------------------------------------------------------------------------------- /Version 2/_old/PTFeeder/ETH/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/_old/PTFeeder/ETH/appsettings.json -------------------------------------------------------------------------------- /Version 2/_old/PTFeeder_Bear_Market/BTC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/_old/PTFeeder_Bear_Market/BTC/appsettings.json -------------------------------------------------------------------------------- /Version 2/_old/PTFeeder_Bear_Market/ETH/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonhunters/ProfitTrailerSettings/HEAD/Version 2/_old/PTFeeder_Bear_Market/ETH/appsettings.json --------------------------------------------------------------------------------