Custom Indicator A
bool goLong if(Close[0] > Close[1]) goLong = true else goLong=false
Here I want to get the value of goLong from Indicator A.
Currently what I'm doing is putting the goLong variable into an iseries and then have the strategy just pull the value every bar. I was just unsure if there is a more efficient way of doing this.
Thank you!

Comment