├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs └── index.html.in └── python ├── common.py ├── tv_watchlist_binance_btc.py └── tv_watchlist_bittrex_btc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/docs/index.html.in -------------------------------------------------------------------------------- /python/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/python/common.py -------------------------------------------------------------------------------- /python/tv_watchlist_binance_btc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/python/tv_watchlist_binance_btc.py -------------------------------------------------------------------------------- /python/tv_watchlist_bittrex_btc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonoob42/TradingViewTools/HEAD/python/tv_watchlist_bittrex_btc.py --------------------------------------------------------------------------------