forked from zonquan/TradeStation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsfgf.easter.txt
44 lines (35 loc) · 1.18 KB
/
sfgf.easter.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[LegacyColorValue = true];
{
Function : sfgf.easter
Description : Identify the Easter Holiday
Copyright 2016 Scottfree Gains LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
}
Inputs:
GYear(Numeric),
HString(StringRef);
Variables:
century(0),
epacts(0),
epacta(0),
GMonth(4),
GDay(19),
RDate(0),
RSunday(0);
HString = "Easter";
century = Floor(GYear / 100) + 1;
epacts = Mod(14 + 11 * Mod(GYear, 19) - Floor(3 * century / 4) + Floor((5 + 8 * century) / 25), 30);
If epacts = 0 or (epacts = 1 and 10 < Mod(GYear, 19)) Then
epacta = epacts + 1
Else
epacta = epacts;
RDate = sfgf.gdate2rdate(GYear, GMonth, GDay) - epacta;
sfgf.easter = sfgf.kdayafter(RDate, RSunday);