在策略评论中换行
Wrap to new line in strategy comment
如何在策略评论中使用两个命令进行自动查看?例如,我需要在 Autoview
中查看
- 命令 1:位置 = c
- 命令 2:购买
当我对指标使用警报评论时,它起作用了
a=BINANCE c=position e=binancefutures s=FTMUSDT t=market
a=BINANCE b=buy e=binancefutures l=2 q=95% s=FTMUSDT t=market
但它在策略评论中很重要
strategy.entry('Long', strategy.long, when=Long, comment='a=BINANCE c=position e=binancefutures s=FTMUSDT t=market
a=BINANCE b=buy e=binancefutures l=2 q=95% s=FTMUSDT t=market')
您可以使用 \n
换行符在您的评论中开始一个新行。
//@version=5
strategy("My strategy", overlay=true, margin_long=100, margin_short=100)
if (close > open)
strategy.entry("Long", strategy.long, comment="First Line\nSecond Line\nThird Line")
if (close < open)
strategy.close("Long", comment="First Line\nSecond Line\nThird Line")
如何在策略评论中使用两个命令进行自动查看?例如,我需要在 Autoview
中查看- 命令 1:位置 = c
- 命令 2:购买
当我对指标使用警报评论时,它起作用了
a=BINANCE c=position e=binancefutures s=FTMUSDT t=market
a=BINANCE b=buy e=binancefutures l=2 q=95% s=FTMUSDT t=market
但它在策略评论中很重要
strategy.entry('Long', strategy.long, when=Long, comment='a=BINANCE c=position e=binancefutures s=FTMUSDT t=market
a=BINANCE b=buy e=binancefutures l=2 q=95% s=FTMUSDT t=market')
您可以使用 \n
换行符在您的评论中开始一个新行。
//@version=5
strategy("My strategy", overlay=true, margin_long=100, margin_short=100)
if (close > open)
strategy.entry("Long", strategy.long, comment="First Line\nSecond Line\nThird Line")
if (close < open)
strategy.close("Long", comment="First Line\nSecond Line\nThird Line")