├── .gitignore ├── .prettierrc ├── README.md ├── abi.json ├── backtest.js ├── config.js ├── constants ├── options.js └── strategies.js ├── contract.js ├── index.js ├── package.json └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/README.md -------------------------------------------------------------------------------- /abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/abi.json -------------------------------------------------------------------------------- /backtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/backtest.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/config.js -------------------------------------------------------------------------------- /constants/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/constants/options.js -------------------------------------------------------------------------------- /constants/strategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/constants/strategies.js -------------------------------------------------------------------------------- /contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/contract.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/package.json -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffersonlicet/price-prediction-bot/HEAD/utils.js --------------------------------------------------------------------------------