├── .DS_Store ├── .gitignore ├── .idea ├── binance-quant-robot.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── DoubleAverageLines_static.py ├── README.md ├── __init__.py ├── app ├── BinanceAPI.py ├── OrderManager.py ├── __init__.py ├── __pycache__ │ ├── BinanceAPI.cpython-38.pyc │ ├── __init__.cpython-38.pyc │ ├── authorization.cpython-38.pyc │ └── dingding.cpython-38.pyc ├── authorization.py └── dingding.py ├── requirements.txt ├── robot-run.py └── strategyConfig.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoyanbei/binance-quant-robot/993ef0e199435db74320e4dac2d9ac2fc990757a/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | -------------------------------------------------------------------------------- /.idea/binance-quant-robot.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 14 | 15 | 16 | 19 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 122 | 123 | 124 | 125 | 均线 126 | api_key 127 | time 128 | coin_base 129 | has_key 130 | buy_limit 131 | pytest 132 | assetOfTestAccount 133 | get_ticker_price 134 | float( 135 | time_str 136 | true 137 | test_kline 138 | sellStrategy3 139 | writeOrderInfo 140 | isDefaultToken 141 | sellStrategy 142 | df.size 143 | df数据行数2 144 | dateTime_interval 145 | iterrows 146 | 读取-- 147 | gain_kline 148 | True 149 | gain_k 150 | self.coin_base 151 | judgeToBuyCommand 152 | orderInfo_path 153 | orderManager 154 | DoubleAverageLines 155 | 156 | 157 | 158 | 160 | 161 | 179 | 180 | 181 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 |