PureBytes Links
Trading Reference Links
|
This means you need to assign it to a value:
Condiction1=Avg1 crosses above Avg2 Then
value1 = Pager_Send("CrossesOver","BuySignal");
Chris
Joe Jansen wrote:
Hello everyone,
Can someone please help with this code? I have tried everything
and when I try to verify it, it said This word "Pager_Send" cannot
start
a
statement.
Input: Len1(9),Len2(16);
Vars: Avg1(0),Avg2(0);
Avg1=Xaverage(Close,Len1);
Avg2=Xaverage(Close,Len2);
Condiction1=Avg1 crosses above Avg2 Then
Pager_Send("CrossesOver","BuySignal");
Thanks in advance for any help, Joe
|