├── .env ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── chart.png ├── history.json ├── images ├── ppw-image-2.png ├── ppw-image-3.png └── ppw-image.png ├── package.json ├── pancakeswap.iml ├── src ├── backtest.ts ├── bot.ts ├── download_data.ts ├── lib.ts └── typechain │ ├── PancakePredictionV2.d.ts │ ├── commons.ts │ ├── factories │ └── PancakePredictionV2__factory.ts │ └── index.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/README.md -------------------------------------------------------------------------------- /chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/chart.png -------------------------------------------------------------------------------- /history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/history.json -------------------------------------------------------------------------------- /images/ppw-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/images/ppw-image-2.png -------------------------------------------------------------------------------- /images/ppw-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/images/ppw-image-3.png -------------------------------------------------------------------------------- /images/ppw-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/images/ppw-image.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/package.json -------------------------------------------------------------------------------- /pancakeswap.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/pancakeswap.iml -------------------------------------------------------------------------------- /src/backtest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/backtest.ts -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/download_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/download_data.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/lib.ts -------------------------------------------------------------------------------- /src/typechain/PancakePredictionV2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/typechain/PancakePredictionV2.d.ts -------------------------------------------------------------------------------- /src/typechain/commons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/typechain/commons.ts -------------------------------------------------------------------------------- /src/typechain/factories/PancakePredictionV2__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/typechain/factories/PancakePredictionV2__factory.ts -------------------------------------------------------------------------------- /src/typechain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/src/typechain/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diego-tobalina/PancakeSwapBot/HEAD/tsconfig.json --------------------------------------------------------------------------------