Can someone please give some example code that I would need to add to Perkyasctrend1 so that it would return a 1 when a buy alert occurs, a 2 when a sell alert occurs, and a 0 all other times.
Can you also give the sample iCustom code needed to get to that data from an expert?
Everytime I try to pull data via iCustom from Perkyasctrend1 I get the number 2147483647.
For example, with the following code both Buy1_1 and CloseBuy1_1 are at 2147483647 all the time. Please help me understand what I'm doing wrong.
Code:
double Buy1_1 = iCustom(NULL, 0, "PerkyAsctrend1", 1, Current + 0);
double Buy1_2 = 0.00;
double CloseBuy1_1 = iCustom(NULL, 0, "PerkyAsctrend1", 0, Current + 0);
double CloseBuy1_2 = 0.00;
Thanks!