Skip to content

Commit c8182b2

Browse files
author
root
committed
update
1 parent 1d48e31 commit c8182b2

File tree

780 files changed

+8739
-6078
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

780 files changed

+8739
-6078
lines changed

001单平台均衡策略-研究.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11

2-
> 策略名称
2+
> Name
33
44
001单平台均衡策略-研究
55

6-
> 策略作者
6+
> Author
77
88
风利
99

10-
> 策略描述
10+
> Strategy Description
1111
1212
这个需要建仓,比如账户有5000块钱,跟1个币,如果币的价值大于账户的余额5000了并且差价超过阀值,比如币现在值6000块钱,就卖掉(6000-5000)/6000/2个币,说明币升值了,把钱兑换回来,如果币贬值了,比如4000块钱了,就买入(5000-4000)/4000/2个币, 币跌的时候买一些回来,如果再涨了,就再卖掉,好像天平一样,两边不同的对冲,所以我命名为均衡策略
1313

14-
> 策略参数
14+
> Strategy Arguments
1515
1616

1717

18-
|参数|默认值|描述|
18+
|Argument|Default|Description|
1919
|----|----|----|
2020
|threshold|10|阀值|
2121
|Interval|2000|出错重试间隔(毫秒)|
2222
|LoopInterval|60|轮询间隔(秒)|
2323

2424

25-
> 源码 (javascript)
25+
> Source (javascript)
2626
2727
``` javascript
2828

@@ -137,10 +137,10 @@ function main() { //这里调用了主函数进
137137
}
138138
```
139139

140-
> 策略出处
140+
> Detail
141141
142142
https://www.fmz.com/strategy/82325
143143

144-
> 更新时间
144+
> Last Modified
145145
146146
2018-03-24 00:41:40

15MIN-BTCUSDTPERP-BOT.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
> 策略名称
2+
> Name
33
44
15MIN-BTCUSDTPERP-BOT
55

6-
> 策略作者
6+
> Author
77
88
张超
99

10-
> 策略描述
10+
> Strategy Description
1111
1212
This is my BTCUSDTPERP 15 min bot
1313
Best results are on BTCUSDTPERP at binancefutures
@@ -50,11 +50,11 @@ Enjoy ;)
5050
**backtest**
5151
![IMG](https://www.fmz.com/upload/asset/16ed324d9172131e373.png)
5252

53-
> 策略参数
53+
> Strategy Arguments
5454
5555

5656

57-
|参数|默认值|描述|
57+
|Argument|Default|Description|
5858
|----|----|----|
5959
|v_input_1_ohlc4|0|src: ohlc4|high|low|open|hl2|hlc3|hlcc4|close|
6060
|v_input_2|true|AVERAGE DIRECTIONAL INDEX|
@@ -97,7 +97,7 @@ Enjoy ;)
9797
|v_input_39|0.8| Take profit [BT]|
9898

9999

100-
> 源码 (PineScript)
100+
> Source (PineScript)
101101
102102
``` javascript
103103
/*backtest
@@ -461,10 +461,10 @@ strategy.exit("tp", qty_percent = q, profit = per(tp), loss = los)
461461

462462
```
463463

464-
> 策略出处
464+
> Detail
465465
466466
https://www.fmz.com/strategy/365126
467467

468-
> 更新时间
468+
> Last Modified
469469
470470
2022-06-20 10:25:03

1btc起Fmex空头解锁策略后市看空.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
> 策略名称
2+
> Name
33
44
1btc起Fmex空头解锁策略后市看空
55

6-
> 策略作者
6+
> Author
77
88
gulishiduan_高频排序
99

10-
> 策略描述
10+
> Strategy Description
1111
1212
FMex排序挖矿空头版本代码使用说明。(注意api地址)(微信:ying5737)
1313
(预计日缓慢跌幅1%以上,赚币赚矿,反之亏损明显)
@@ -30,11 +30,11 @@ FMex排序挖矿空头版本代码使用说明。(注意api地址)(微信
3030
//参数中的备注描述,仅供参考,另可加挡位
3131
风险自负/参数可调,微信:ying5737
3232

33-
> 策略参数
33+
> Strategy Arguments
3434
3535

3636

37-
|参数|默认值|描述|
37+
|Argument|Default|Description|
3838
|----|----|----|
3939
|Url|https://api.fmex.com|交易所api地址|
4040
|maxPrice|30000|区间最高价|
@@ -51,7 +51,7 @@ FMex排序挖矿空头版本代码使用说明。(注意api地址)(微信
5151
|ApiList|GetAccount,GetDepth,GetTicker,GetRecords,GetTrades,GetOrders,SetContractType|容错API列表(默认参数即可)|
5252

5353

54-
> 源码 (javascript)
54+
> Source (javascript)
5555
5656
``` javascript
5757
//保证金市场风险巨大,你可能随时面临100%损失。或有不明bug100%损失,概不负责。本策略使用的杠杆相对不大,可放心体验
@@ -350,10 +350,10 @@ function onexit() {
350350

351351
```
352352

353-
> 策略出处
353+
> Detail
354354
355355
https://www.fmz.com/strategy/178417
356356

357-
> 更新时间
357+
> Last Modified
358358
359359
2020-12-25 23:51:31

1btc起fmex多头解锁策略后市看多.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
> 策略名称
2+
> Name
33
44
1btc起fmex多头解锁策略后市看多
55

6-
> 策略作者
6+
> Author
77
88
gulishiduan_高频排序
99

10-
> 策略描述
10+
> Strategy Description
1111
1212
**FMex排序挖矿多头版本代码使用说明**
1313

@@ -55,11 +55,11 @@ affiliate_code: "9y40d8"
5555
******风险自负/参数可调,微信:ying5737**
5656
**优化方向:加入均线或K线对比来确定方向,挡位优化,增加自定义单量等/******
5757

58-
> 策略参数
58+
> Strategy Arguments
5959
6060

6161

62-
|参数|默认值|描述|
62+
|Argument|Default|Description|
6363
|----|----|----|
6464
|Url|https://api.fmex.com|交易所api地址,正式版改为:https://api.fmex.com|
6565
|maxPrice|30000|区间最高价|
@@ -76,7 +76,7 @@ affiliate_code: "9y40d8"
7676
|ApiList|GetAccount,GetDepth,GetTicker,GetRecords,GetTrades,GetOrders,SetContractType|容错API列表(默认参数即可)|
7777

7878

79-
> 源码 (javascript)
79+
> Source (javascript)
8080
8181
``` javascript
8282
//保证金市场风险巨大,你可能随时面临100%损失。或有不明bug100%损失,概不负责。本策略使用的杠杆相对不大,可放心体验
@@ -392,10 +392,10 @@ function onexit() {
392392
}
393393
```
394394

395-
> 策略出处
395+
> Detail
396396
397397
https://www.fmz.com/strategy/178347
398398

399-
> 更新时间
399+
> Last Modified
400400
401401
2021-12-08 13:53:31

2-Moving-Average-Color-Direction-Detection.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
> 策略名称
2+
> Name
33
44
2-Moving-Average-Color-Direction-Detection
55

6-
> 策略作者
6+
> Author
77
88
张超
99

10-
> 策略描述
10+
> Strategy Description
1111
1212
The filling option is added between the moving averages (it is deactivated by default, activate in configuration if you wish), if the 2 averages are green the filling will be green, if the 2 averages are red the filling will be red, this would confirm a trend healthy in the case that you are using a fast and a slow average, in the case that the fast average changes of direction will be filled in the purple color, this can indicate several things: a correction of the trend is being generated, possible rest of the price , possible start of laterality, possible change of trend, when the color is purple the trader will have to analyze the general context to be able to define what could be happening.
1313

@@ -25,11 +25,11 @@ The following alerts were created:
2525

2626
![IMG](https://www.fmz.com/upload/asset/1cbd3d5353e6275e6d0.png)
2727

28-
> 策略参数
28+
> Strategy Arguments
2929
3030

3131

32-
|参数|默认值|描述|
32+
|Argument|Default|Description|
3333
|----|----|----|
3434
|v_input_1|true|1-MA|
3535
|v_input_2|0|1-MA Type: : SMA|EMA|WMA|VWMA|SMMA|DEMA|TEMA|HullMA|ZEMA|TMA|SSMA|
@@ -44,7 +44,7 @@ The following alerts were created:
4444
|v_input_11|false|FILLING|
4545

4646

47-
> 源码 (PineScript)
47+
> Source (PineScript)
4848
4949
``` javascript
5050
//@version=3
@@ -154,10 +154,10 @@ else if crossunder(ma_series_b,ma_series)
154154
strategy.entry("Enter Short", strategy.short)
155155
```
156156

157-
> 策略出处
157+
> Detail
158158
159159
https://www.fmz.com/strategy/364535
160160

161-
> 更新时间
161+
> Last Modified
162162
163163
2022-05-20 16:44:13

2014年的简易比特币高频策略机器人.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
> 策略名称
2+
> Name
33
44
2014年的简易比特币高频策略机器人
55

6-
> 策略作者
6+
> Author
77
88
小草
99

10-
> 策略描述
10+
> Strategy Description
1111
1212
**策略的介绍**
1313

@@ -105,19 +105,19 @@ function onTick() {
105105
整个程序也就40多行,看上去十分简单,但当时也花了我一个多星期,这还是在botvs平台上情况下。最大的优势还是起步早,在2014年,市场上以搬砖为主,网格和抢盘口的高频也不多,使得策略如鱼得水,后来竞争不可避免越来越激烈,我的钱也越来越多,面临的挑战很多,每隔一段时间都要进行较大的改动来应对,但总体还算顺利。在交易平台不收取手续费的情况下,是程序化交易的天堂,散户因为不收手续费跟倾向于操作,为高频和套利提供了空间,这一切也基本随着动辄0.1-0.2%的双向手续费终结了,不仅是自己被收费的问题,而是整个市场活跃度下降。
106106
但不需要高频的量化策略任然有很大的空间。
107107

108-
> 策略参数
108+
> Strategy Arguments
109109
110110

111111

112-
|参数|默认值|描述|
112+
|Argument|Default|Description|
113113
|----|----|----|
114114
|sleeptime|3500|休眠时间|
115115
|floatamountbuy|8|买单深度|
116116
|floatamountsell|8|卖单高度|
117117
|diffprice|1.5|套利差价|
118118

119119

120-
> 源码 (javascript)
120+
> Source (javascript)
121121
122122
``` javascript
123123
/*
@@ -193,10 +193,10 @@ function main() {
193193
}
194194
```
195195

196-
> 策略出处
196+
> Detail
197197
198198
https://www.fmz.com/strategy/1088
199199

200-
> 更新时间
200+
> Last Modified
201201
202202
2019-06-06 12:30:10

3-Supertrend-Add-In-This-Single-Script.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
> 策略名称
2+
> Name
33
44
3-Supertrend-Add-In-This-Single-Script
55

6-
> 策略作者
6+
> Author
77
88
张超
99

10-
> 策略描述
10+
> Strategy Description
1111
1212
1st Supertrend Level 21 1
1313
2nd Supertrend Level 14 2
@@ -18,11 +18,11 @@
1818
![IMG](https://www.fmz.com/upload/asset/16364ff2277259753d7.png)
1919

2020

21-
> 策略参数
21+
> Strategy Arguments
2222
2323

2424

25-
|参数|默认值|描述|
25+
|Argument|Default|Description|
2626
|----|----|----|
2727
|v_input_1|21|ATR Length|
2828
|v_input_float_1|true|Factor|
@@ -32,7 +32,7 @@
3232
|v_input_float_3|3|Factor|
3333

3434

35-
> 源码 (PineScript)
35+
> Source (PineScript)
3636
3737
``` javascript
3838
/*backtest
@@ -93,10 +93,10 @@ else if direction_1>0 and direction_2 >0 and direction_3 >0
9393
strategy.entry("Enter Short", strategy.short)
9494
```
9595

96-
> 策略出处
96+
> Detail
9797
9898
https://www.fmz.com/strategy/362457
9999

100-
> 更新时间
100+
> Last Modified
101101
102102
2022-05-11 17:04:21

0 commit comments

Comments
 (0)