摘要:
服务端 frps.ini [common] bind_port=7000 token=passwd dashboard_port=7500 dashboard_user=admin dashboard_pwd=passwd vhost_http_port=8081 vhost_https_port= 阅读全文
摘要:
安装 docker curl -fsSL https://get.docker.com | bash -s docker 修改 daemon.json { # 修改镜像地址 "registry-mirrors":["https://docker.mirrors.ustc.edu.cn/"] # 修改 阅读全文
摘要:
netstat -aon | findstr "port" tasklist | findstr "pid" 阅读全文
摘要:
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © xichengjiang //@version=4 study("MA 阅读全文
摘要:
MA5代表今天MA5线的值 MA5'代表明天MA5线的值 D'代表明日收盘价 D0代表今日收盘价 D1代表昨日收盘价 MA5 = (D0 + D1 + D2 + D3 + D4) / 5 MA5'= (D' + D0 + D1 + D2 + D3) / 5 使 MA5' > MA5 ,即明日MA5值 阅读全文
摘要:
graph LR Alpha --25%--> Beta Alpha --25%--> Gamma Beta --25%--> Alpha Beta --25%--> Gamma Gamma --50%--> CASH Alpha 高风险高回报,负责资产的质变 Beta 中风险中回报,负责资产的量变 阅读全文
摘要:
判断出一只股票是在筑底,根据量价时空原理画出箱体。 只有三种情况会发生: 震荡后向上突破箱体 震荡后向下突破箱体 一直震荡 针对以上三种情况制定如下策略: 在底部抄底,建立多头头寸 当股价反弹到箱体中上沿时,使用多头头寸的利润进行期权做空,建立空头头寸 当股价向上突破箱体时,平掉空仓,最大损失就是多 阅读全文