Pinescript/TradingView 如何制作堆肥表达

时间:2021-05-09 00:28:08

标签: pine-script trading

我无法构建具有 2 个条件的表达式

在第一个示例中,我尝试使用“and”但没有成功。

dayofmonth == 1 and month == 1

enter image description here


只有当月按预期工作 enter image description here


只有 dayofmonth 按预期工作 enter image description here


再次尝试将两者一起使用,这次使用嵌套的 'if',但只执行外部。 enter image description here

有人有这方面的经验吗?

1 个答案:

答案 0 :(得分:0)

条件有效。您想要 or 而不是 anddayofmonth == 1 and month == 1 仅在 1 月 1 日为真。

//@version=4
study("conditions test", overlay=true)
a = dayofmonth == 1
b = month == 1
c = a and b

plotshape(a, style=shape.circle, color=color.purple, size=size.small)
plotshape(b, style=shape.circle, color=color.red, size=size.small)
plotshape(c, style=shape.circle, color=color.green, size=size.small)

Day and Month Test