├── .gitignore ├── Bak.py ├── README.md ├── stock_data_collect.py ├── stock_data_process.py ├── test_re ├── sh000904.day ├── sh000905.day ├── sh204001.day ├── sh204003.day ├── sh501005.day ├── sh501007.day ├── sh6037072.day ├── sh603708.day ├── sh603709.day ├── sh688001.day ├── sh688002sw.day ├── sh688003.day ├── sh688081.day ├── sh880001.day ├── sh880002.day ├── sh880003.day ├── sz000012.day ├── sz000014.day ├── sz000028.day ├── sz000028.lc5 ├── sz150030.day ├── sz150031.day ├── sz200512.day ├── sz200521.day ├── sz300045.day ├── sz300046.day ├── sz399608.day └── sz399612.day ├── test_talib.py ├── test_talib ├── sh601330.lc5 └── sh60133033.day ├── test_unpack_data_tdx.py └── 通达信数据文件结构.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/.gitignore -------------------------------------------------------------------------------- /Bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/Bak.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/README.md -------------------------------------------------------------------------------- /stock_data_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/stock_data_collect.py -------------------------------------------------------------------------------- /stock_data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/stock_data_process.py -------------------------------------------------------------------------------- /test_re/sh000904.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh000904.day -------------------------------------------------------------------------------- /test_re/sh000905.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh000905.day -------------------------------------------------------------------------------- /test_re/sh204001.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh204001.day -------------------------------------------------------------------------------- /test_re/sh204003.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh204003.day -------------------------------------------------------------------------------- /test_re/sh501005.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh501005.day -------------------------------------------------------------------------------- /test_re/sh501007.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh501007.day -------------------------------------------------------------------------------- /test_re/sh6037072.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh6037072.day -------------------------------------------------------------------------------- /test_re/sh603708.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh603708.day -------------------------------------------------------------------------------- /test_re/sh603709.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh603709.day -------------------------------------------------------------------------------- /test_re/sh688001.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh688001.day -------------------------------------------------------------------------------- /test_re/sh688002sw.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh688002sw.day -------------------------------------------------------------------------------- /test_re/sh688003.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh688003.day -------------------------------------------------------------------------------- /test_re/sh688081.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh688081.day -------------------------------------------------------------------------------- /test_re/sh880001.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh880001.day -------------------------------------------------------------------------------- /test_re/sh880002.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh880002.day -------------------------------------------------------------------------------- /test_re/sh880003.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sh880003.day -------------------------------------------------------------------------------- /test_re/sz000012.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz000012.day -------------------------------------------------------------------------------- /test_re/sz000014.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz000014.day -------------------------------------------------------------------------------- /test_re/sz000028.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz000028.day -------------------------------------------------------------------------------- /test_re/sz000028.lc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz000028.lc5 -------------------------------------------------------------------------------- /test_re/sz150030.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz150030.day -------------------------------------------------------------------------------- /test_re/sz150031.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz150031.day -------------------------------------------------------------------------------- /test_re/sz200512.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz200512.day -------------------------------------------------------------------------------- /test_re/sz200521.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz200521.day -------------------------------------------------------------------------------- /test_re/sz300045.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz300045.day -------------------------------------------------------------------------------- /test_re/sz300046.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz300046.day -------------------------------------------------------------------------------- /test_re/sz399608.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz399608.day -------------------------------------------------------------------------------- /test_re/sz399612.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_re/sz399612.day -------------------------------------------------------------------------------- /test_talib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_talib.py -------------------------------------------------------------------------------- /test_talib/sh601330.lc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_talib/sh601330.lc5 -------------------------------------------------------------------------------- /test_talib/sh60133033.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_talib/sh60133033.day -------------------------------------------------------------------------------- /test_unpack_data_tdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/test_unpack_data_tdx.py -------------------------------------------------------------------------------- /通达信数据文件结构.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niaicmy/gpfx/HEAD/通达信数据文件结构.txt --------------------------------------------------------------------------------