简体   繁体   中英

PineScript formulation of condition?

Say I have 3 conditions, and I want to perform some action if 2 of these conditions are fulfilled. With a few number of combinations, like 3, the solution could be something like:

c1=...
c2=...
c3=...

if (c1==true and c2==true) then
elseif (c1==true and c3==true) then
elseif (c2==true and c3==true) then

This is not very practical with, say, 100 conditions of which 90 should be fulfilled. Is there a more compact way to implement this in PineScript?

If you represent the boolean true/false of your condition as 1/0 ints, you could count them to see how many are true.

The shortest way I can think of, is putting them in an array, and calculate the sum of that array.

//@version=5
indicator("My Script")

var int c0 = 1
var int c1 = 0
var int c2 = 1
var int c3 = 1
var int c4 = 1
var int c5 = 0
var int c6 = 0
var int c7 = 1
var int c8 = 1
var int c9 = 1

var int[] a = array.from(c0,c1,c2,c3,c4,c5,c6,c7,c8,c9)

mySum = array.sum(a)

plot(mySum)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM