Skip to content

Commit

Permalink
Merge pull request #6 from maxmeng93/feature/v0.4.0
Browse files Browse the repository at this point in the history
Feature/v0.4.0
  • Loading branch information
maxmeng93 authored Jul 21, 2024
2 parents aafb57f + a032d5d commit 26f5804
Show file tree
Hide file tree
Showing 11 changed files with 526 additions and 85 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
# production
/dist
*.zip

.DS_Store
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## [0.3.2] - 2025-07-21

- 新增生成自定义网格策略功能
- 网格策略遵循E大的网格三篇,为了增加网格利润有三个策略,分别是:`逐级加码``一网打尽``留利润`
- 显示网格策略的压力测试和盈利测算

## [0.3.2] - 2025-06-22

- 修复一个bug。
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
4. 重启浏览器。
5. 安装插件。拖拽第一步中预先下载的浏览器插件安装包至 `chrome://extensions` 页面即可。

## 使用方法
## 功能

1. 一键延期华宝条件单
2. 利用 K 线图显示 E大(ETF拯救世界)关键点位
3. 自定义网格策略

## 华宝条件单自动延期

1. 点击插件小图标,显示插件弹窗。
2. 点击“查看条件单”,自动打开“华宝智投条件单”网页。
Expand Down
2 changes: 1 addition & 1 deletion manifest-chrome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "ETF投资助手",
"version": "0.3.2",
"version": "0.4.0",
"description": "一键延期华宝条件单;利用K线图显示E大(ETF拯救世界)关键点位;自定义网格策略",
"action": {
"default_popup": "popup.html",
Expand Down
2 changes: 1 addition & 1 deletion manifest-firefox.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "ETF投资助手",
"version": "0.3.2",
"version": "0.4.0",
"description": "一键延期华宝条件单;利用K线图显示E大(ETF拯救世界)关键点位;自定义网格策略",
"action": {
"default_popup": "popup.html",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "etf-helper",
"version": "0.3.2",
"version": "0.4.0",
"description": "ETF投资助手。一键延期华宝条件单;利用K线图显示E大关键点位;自定义网格策略。",
"scripts": {
"build": "webpack --env production",
Expand Down Expand Up @@ -44,6 +44,7 @@
"antd": "^5.17.4",
"classnames": "^2.5.1",
"echarts": "^5.5.0",
"mathjs": "^13.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>华宝条件单助手</title>
<title>ETF投资助手</title>
</head>
<body>
<div id="root"></div>
Expand Down
19 changes: 19 additions & 0 deletions src/popup/grid/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.result {
p {
margin: 0 0;
}
.icon {
color: rgba(0, 0, 0, 0.45);
cursor: help;
}
}

.article {
ul {
margin: 0;
padding: 0;
li {
list-style: none;
}
}
}
Loading

0 comments on commit 26f5804

Please sign in to comment.