0基础开始Pine量化 止盈改进策略(附代码)
创作时间:
作者:
@小白创作中心
0基础开始Pine量化 止盈改进策略(附代码)
引用
1
来源
1.
https://www.cnblogs.com/Mephostopheles/p/18408719
0基础开始Pine量化 止盈改进策略(附代码)
可以先看前面文章里涉及到的策略
https://www.cnblogs.com/Mephostopheles/p/18406658
什么是止盈
止盈的核心思想:
当市场价格达到设定的目标后,投资者会卖出资产,防止市场波动将已经取得的利润变为损失。
通过止盈,投资者在确保一定盈利的情况下退出市场,而不是继续持有以追求更高的收益,从而避免市场行情逆转带来的风险。
止盈的常见方式:
- 固定价格止盈:设定一个具体的价格作为目标,一旦价格触及该水平就卖出资产。例如,某只股票买入价是 100,当价格上涨到 120 时卖出,锁定 20% 的利润。
- 百分比止盈:设定一个百分比目标,当资产价格上涨到预期百分比时卖出。例如,设定止盈目标为 10%,当资产价格涨幅达到 10% 时卖出。
- 技术指标止盈:使用技术分析工具(如移动平均线、相对强弱指数 RSI、布林带等)来判断市场趋势的变化,从而选择合适的时机卖出。例如,当 RSI 显示超买信号时,选择止盈。
- 动态止盈(追踪止盈):设定一个价格回撤的比例或金额,随着价格上涨,止盈价格也同步上移。当价格从高点回落到设定的比例时触发卖出。例如,设定 5% 的回撤止盈,当价格从最高点下跌 5% 时卖出。
改进前
定义了三个 EMA,分别为 9、26 和 55 周期的指数移动平均线,三种不同的 Supertrend,分别基于 7、14 和 21 个周期(length1, length2, length3)和不同的乘数(factor1, factor2, factor3)。
策略结果如下
改进后
首先把7和21个周期的Supertrend删去,然后加入止盈,这里止盈的百分比默认为 3.0%,例如,如果入场价是 100,止盈百分比为 3%,那么止盈价格就是 100 * 1.03 = 103。
改进原因
减少因为多信号导致的反应迟缓,3.0%的止盈可以防止在强趋势出现反转之前利润被侵蚀
结果如下图,可以看到各项指数均得到一定幅度的优化,最大回撤是年化收益率的六倍,2023-6-30到2024-7-30有72笔交易,k线周期为1h,符合金星策略。
源代码
/*backtest
start: 2023-06-30 00:00:00
end: 2024-07-30 00:00:00
period: 1h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("Simplified Golden Crossover with Supertrend and Take Profit", overlay=true)
// Define EMA lengths
ema9_length = 9
ema26_length = 26
ema55_length = 55
// Input parameters for different timeframes
timeFrame9 = input.timeframe('', 'Time Frame - EMA 9')
timeFrame26 = input.timeframe('', 'Time Frame - EMA 26')
timeFrame55 = input.timeframe('', 'Time Frame - EMA 55')
// Request EMA data from specified time frames
ema9 = request.security(syminfo.tickerid, timeFrame9, ta.ema(close, ema9_length))
ema26 = request.security(syminfo.tickerid, timeFrame26, ta.ema(close, ema26_length))
ema55 = request.security(syminfo.tickerid, timeFrame55, ta.ema(close, ema55_length))
// Supertrend function (single Supertrend)
supertrend(length, factor) =>
[superTrend, direction] = ta.supertrend(factor, length)
superTrend
// Supertrend parameters (only one Supertrend for simplicity)
length_supertrend = 14
factor_supertrend = 2
// Supertrend calculation
superTrend = supertrend(length_supertrend, factor_supertrend)
// Plot EMAs on the chart
plot(ema9, color=color.black, title="EMA 9")
plot(ema26, color=color.green, title="EMA 26")
plot(ema55, color=color.red, title="EMA 55")
// Plot Supertrend line on the chart
plot(superTrend, color=color.blue, title="Supertrend")
// Define buy and sell conditions combining EMA crossover and Supertrend
buy_condition_ema = ta.crossover(ema9, ema26) and ema26 > ema55
sell_condition_ema = ta.crossunder(ema9, ema26) and ema26 < ema55
buy_condition_supertrend = close > superTrend
sell_condition_supertrend = close < superTrend
// Combine the conditions (one Supertrend + EMA crossover)
buy_condition = buy_condition_ema and buy_condition_supertrend
sell_condition = sell_condition_ema or sell_condition_supertrend
// Input for Take Profit percentage
take_profit_percent = input.float(3.0, title="Take Profit %", minval=0.1) / 100
// Calculate Take Profit level based on the entry price
take_profit_level = strategy.position_avg_price * (1 + take_profit_percent)
// Execute buy and sell orders
if (buy_condition)
strategy.entry("Buy", strategy.long)
// Close position with Take Profit and normal exit conditions
strategy.exit("Take Profit", "Buy", limit=take_profit_level)
// Sell condition to close the order
if (sell_condition)
strategy.close("Buy")
// Plot buy and sell signals on the chart
plotshape(series=buy_condition, location=location.belowbar, color=color.green, style=shape.arrowup, title="Buy Signal")
plotshape(series=sell_condition, location=location.abovebar, color=color.red, style=shape.arrowdown, title="Sell Signal")
多次测试
热门推荐
自控力太差了怎样控制自己
洗眼液对眼睛好不好
西南房间风水布局
冬季大棚钓鱼技巧:从钓具到施钓全方位指南
分享5种冬季暖身奶茶做法,简单又好喝,奶香味浓郁,家人都爱喝
项目管理案例整理方法有哪些
俄罗斯海军陆战队全面重组,信息化能力缺失才是关键
2025广东高考选科物生地能报考哪些大学专业?含本科+大专
四柱都有空亡详解,空亡的化解方法
深圳充电桩电费对比:家庭充电VS公共充电
权力与傀儡:汉献帝与曹操的微妙关系
苏炳添夺冠,回应:这是“最后一场”......
春风十里不如你,十首最美春思诗词,句句经典
农村不动产权证可以贷款吗
如果发现家中被盗,该怎么办
污泥到底可以变成有机肥原料吗?好氧堆肥膜发酵技术给了答案
明成祖朱棣的生母究竟是不是朝鲜人?
网上买宠物,注意这些“坑”
探索微山:自然美景与文化之旅的完美结合
AI专利价值评估在技术创新中的重要性与应用探讨
中概股雪崩:阿里巴巴一夜蒸发3000亿,三重利空绞杀
快速找到中心点:线段中点公式详解及应用
2024年应对白发增多:有效策略助你减少白发
英国留学专业选择指南:2025年热门与新兴专业全解析
儿童肠胃炎可以吃豆浆吗
2025年创新药行业上市公司全方位对比:从布局到规划
订婚最简单三个步骤
论丹田——以杜金龙先生的观点为例
片仔癀:传统中药的现代应用与功效解析
【2024年卫生健康宣传日】世界睡眠日——健康睡眠 人人共享,附:宣传视频