xref: /AOO41X/main/scaddins/source/analysis/analysis.src (revision feb8f10975b4720025f9099db7aa24be4ffe8cc8)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24
25#include "analysis.hrc"
26
27
28Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
29{
30    Resource ANALYSIS_Workday
31    {
32        String 1    // description Workday
33        {
34            Text [ en-US ] = "Returns the serial number of the date before or after a specified number of workdays";
35        };
36
37        String 2 // name of parameter 1         Workday
38        {
39            Text [ en-US ] = "Start date";
40        };
41
42        String 3 // description of parameter 1  Workday
43        {
44            Text [ en-US ] = "The start date";
45        };
46
47        String 4 // name of parameter 2         Workday
48        {
49            Text [ en-US ] = "Days";
50        };
51
52        String 5 // description of parameter 2  Workday
53        {
54            Text [ en-US ] = "The number of workdays before or after the start date";
55        };
56
57        String 6 // name of parameter 3         Workday
58        {
59            Text [ en-US ] = "Holidays";
60        };
61
62        String 7 // description of parameter 3  Workday
63        {
64            Text [ en-US ] = "List of date values of days off (vacation, holidays, etc.)";
65        };
66    };
67
68    Resource ANALYSIS_Yearfrac
69    {
70        String 1    // description Yearfrac
71        {
72            Text [ en-US ] = "Returns the number of whole days between 'start date' and 'end date' as a year fraction";
73        };
74
75        String 2 // name of parameter 1         Yearfrac
76        {
77            Text [ en-US ] = "Start date";
78        };
79
80        String 3 // description of parameter 1  Yearfrac
81        {
82            Text [ en-US ] = "The start date";
83        };
84
85        String 4 // name of parameter 2         Yearfrac
86        {
87            Text [ en-US ] = "End date";
88        };
89
90        String 5 // description of parameter 2  Yearfrac
91        {
92            Text [ en-US ] = "The end date";
93        };
94
95        String 6 // name of parameter 3         Yearfrac
96        {
97            Text [ en-US ] = "Basis";
98        };
99
100        String 7 // description of parameter 3  Yearfrac
101        {
102            Text [ en-US ] = "Basis for determining the interest days";
103        };
104    };
105
106    Resource ANALYSIS_Edate
107    {
108        String 1    // description Edate
109        {
110            Text [ en-US ] = "Returns the serial number of the date that is a specified number of months before or after the start date";
111        };
112
113        String 2 // name of parameter 1         Edate
114        {
115            Text [ en-US ] = "Start date";
116        };
117
118        String 3 // description of parameter 1  Edate
119        {
120            Text [ en-US ] = "The start date";
121        };
122
123        String 4 // name of parameter 2         Edate
124        {
125            Text [ en-US ] = "Months";
126        };
127
128        String 5 // description of parameter 2  Edate
129        {
130            Text [ en-US ] = "Number of months before or after the start date";
131        };
132    };
133
134    Resource ANALYSIS_Weeknum
135    {
136        String 1    // description Weeknum_add
137        {
138            Text [ en-US ] = "Returns the number of the calendar week in which the specified date occurs.";
139        };
140
141        String 2 // name of parameter 1         Weeknum_add
142        {
143            Text [ en-US ] = "Date";
144        };
145
146        String 3 // description of parameter 1  Weeknum_add
147        {
148            Text [ en-US ] = "The date";
149        };
150
151        String 4 // name of parameter 2         Weeknum_add
152        {
153            Text [ en-US ] = "Return type";
154        };
155
156        String 5 // description of parameter 2  Weeknum_add
157        {
158            Text [ en-US ] = "A number from 1 to 3 that specifies the day with which a week begins";
159        };
160    };
161
162    Resource ANALYSIS_Eomonth
163    {
164        String 1    // description EoMonth
165        {
166            Text[ en-US ] = "Returns the serial number of the last day of the month that comes a certain number of months before or after the start date";
167        };
168
169        String 2 // name of parameter 1         EoMonth
170        {
171            Text [ en-US ] = "Start date";
172        };
173
174        String 3 // description of parameter 1  EoMonth
175        {
176            Text [ en-US ] = "The start date";
177        };
178
179        String 4 // name of parameter 2         EoMonth
180        {
181            Text [ en-US ] = "Months";
182        };
183
184        String 5 // description of parameter 2  EoMonth
185        {
186            Text [ en-US ] = "Number of months before or after the start date";
187        };
188    };
189
190    Resource ANALYSIS_Networkdays
191    {
192        String 1    // description Networkdays
193        {
194            Text [ en-US ] = "Returns the number of workdays between two dates";
195        };
196
197        String 2 // name of parameter 1         Networkdays
198        {
199            Text [ en-US ] = "Start date";
200        };
201
202        String 3 // description of parameter 1  Networkdays
203        {
204            Text [ en-US ] = "The start date";
205        };
206
207        String 4 // name of parameter 2         Networkdays
208        {
209            Text [ en-US ] = "End date";
210        };
211
212        String 5 // description of parameter 2  Networkdays
213        {
214            Text [ en-US ] = "The end date";
215        };
216
217        String 6 // name of parameter 3         Networkdays
218        {
219            Text [ en-US ] = "Holidays";
220        };
221
222        String 7 // description of parameter 3  Networkdays
223        {
224            Text [ en-US ] = "List of date values representing days off (vacation, holidays, etc.)";
225        };
226    };
227
228    Resource ANALYSIS_Iseven
229    {
230        String 1    // description Iseven_add
231        {
232            Text [ en-US ] = "Returns the value 'true' if the number is even";
233        };
234
235        String 2 // name of parameter 1         Iseven_add
236        {
237            Text [ en-US ] = "Number";
238        };
239
240        String 3 // description of parameter 1  Iseven_add
241        {
242            Text [ en-US ] = "The number";
243        };
244    };
245
246    Resource ANALYSIS_Isodd
247    {
248        String 1    // description Isodd_add
249        {
250            Text [ en-US ] = "Returns the value 'true' if the number is odd";
251        };
252
253        String 2 // name of parameter 1         Isodd_add
254        {
255            Text [ en-US ] = "Number";
256        };
257
258        String 3 // description of parameter 1  Isodd_add
259        {
260            Text [ en-US ] = "The number";
261        };
262    };
263
264    Resource ANALYSIS_Multinomial
265    {
266        String 1    // description Multinomial
267        {
268            Text [ en-US ] = "Returns the multinomial coefficient of a set of numbers";
269        };
270
271        String 2 // name of parameter 1         Multinomial
272        {
273            Text [ en-US ] = "Number(s)";
274        };
275
276        String 3 // description of parameter 1  Multinomial
277        {
278            Text [ en-US ] = "Number or list of numbers for which you want the multinomial coefficient";
279        };
280    };
281
282    Resource ANALYSIS_Seriessum
283    {
284        String 1    // description Seriessum
285        {
286            Text [ en-US ] = "Returns the sum of a power series";
287        };
288
289        String 2 // name of parameter 1         Seriessum
290        {
291            Text [ en-US ] = "X";
292        };
293
294        String 3 // description of parameter 1  Seriessum
295        {
296            Text [ en-US ] = "The independent variable of the power series";
297        };
298
299        String 4 // name of parameter 2         Seriessum
300        {
301            Text [ en-US ] = "N";
302        };
303
304        String 5 // description of parameter 2  Seriessum
305        {
306            Text [ en-US ] = "The initial power to which x is to be raised";
307        };
308
309        String 6 // name of parameter 3         Seriessum
310        {
311            Text [ en-US ] = "M";
312        };
313
314        String 7 // description of parameter 3  Seriessum
315        {
316            Text [ en-US ] = "The increment by which to increase n for each term in the series";
317        };
318
319        String 8 // name of parameter 4         Seriessum
320        {
321            Text [ en-US ] = "Coefficients";
322        };
323
324        String 9 // description of parameter 4  Seriessum
325        {
326            Text [ en-US ] = "Set of coefficients by which each successive power of the variable x is multiplied";
327        };
328    };
329
330    Resource ANALYSIS_Quotient
331    {
332        String 1    // description Quotient
333        {
334            Text [ en-US ] = "Returns the integer portion of a division";
335        };
336
337        String 2 // name of parameter 1         Quotient
338        {
339            Text [ en-US ] = "Numerator";
340        };
341
342        String 3 // description of parameter 1  Quotient
343        {
344            Text [ en-US ] = "The dividend";
345        };
346
347        String 4 // name of parameter 2         Quotient
348        {
349            Text [ en-US ] = "Denominator";
350        };
351
352        String 5 // description of parameter 2  Quotient
353        {
354            Text [ en-US ] = "The divisor";
355        };
356    };
357
358    Resource ANALYSIS_Mround
359    {
360        String 1    // description Mround
361        {
362            Text [ en-US ] = "Returns a number rounded to a specified multiple";
363        };
364
365        String 2 // name of parameter 1         Mround
366        {
367            Text [ en-US ] = "Number";
368        };
369
370        String 3 // description of parameter 1  Mround
371        {
372            Text [ en-US ] = "The number to round off";
373        };
374
375        String 4 // name of parameter 2         Mround
376        {
377            Text [ en-US ] = "Multiple";
378        };
379
380        String 5 // description of parameter 2  Mround
381        {
382            Text [ en-US ] = "The multiple to which you want to round number";
383        };
384    };
385
386    Resource ANALYSIS_Sqrtpi
387    {
388        String 1    // description SqrtPI
389        {
390            Text [ en-US ] = "Returns the square root of a number which has been multiplied by pi";
391        };
392
393        String 2 // name of parameter 1         SqrtPI
394        {
395            Text [ en-US ] = "Number";
396        };
397
398        String 3 // description of parameter 1  SqrtPI
399        {
400            Text [ en-US ] = "The number by which pi is multiplied";
401        };
402    };
403
404    Resource ANALYSIS_Randbetween
405    {
406        String 1    // description Randbetween
407        {
408            Text [ en-US ] = "Returns a random integer between the numbers you specify";
409        };
410
411        String 2 // name of parameter 1         Randbetween
412        {
413            Text [ en-US ] = "Bottom";
414        };
415
416        String 3 // description of parameter 1  Randbetween
417        {
418            Text [ en-US ] = "The smallest integer returned";
419        };
420
421        String 4 // name of parameter 2         Randbetween
422        {
423            Text [ en-US ] = "Top";
424        };
425
426        String 5 // description of parameter 2  Randbetween
427        {
428            Text [ en-US ] = "The largest integer returned";
429        };
430    };
431
432    Resource ANALYSIS_Gcd
433    {
434        String 1    // description Gcd_add
435        {
436            Text [ en-US ] = "Returns the greatest common divisor";
437        };
438
439        String 2 // name of parameter 1         Gcd_add
440        {
441            Text [ en-US ] = "Number(s)";
442        };
443
444        String 3 // description of parameter 1  Gcd_add
445        {
446            Text [ en-US ] = "Number or list of numbers";
447        };
448    };
449
450    Resource ANALYSIS_Lcm
451    {
452        String 1    // description Lcm_add
453        {
454            Text [ en-US ] = "Returns the least common multiple";
455        };
456
457        String 2 // name of parameter 1         Lcm_add
458        {
459            Text [ en-US ] = "Number(s)";
460        };
461
462        String 3 // description of parameter 1  Lcm_add
463        {
464            Text [ en-US ] = "Number or list of numbers";
465        };
466    };
467
468    Resource ANALYSIS_Besseli
469    {
470        String 1    // description BesselI
471        {
472            Text [ en-US ] = "Returns the modified Bessel function In(x)";
473        };
474
475        String 2 // name of parameter 1         BesselI
476        {
477            Text [ en-US ] = "X";
478        };
479
480        String 3 // description of parameter 1  BesselI
481        {
482            Text [ en-US ] = "The value at which the function is to be evaluated";
483        };
484
485        String 4 // name of parameter 2         BesselI
486        {
487            Text [ en-US ] = "N";
488        };
489
490        String 5 // description of parameter 2  BesselI
491        {
492            Text [ en-US ] = "The order of the Bessel function";
493        };
494    };
495
496    Resource ANALYSIS_Besselj
497    {
498        String 1    // description BesselJ
499        {
500            Text [ en-US ] = "Returns the Bessel function Jn(x)";
501        };
502
503        String 2 // name of parameter 1         BesselJ
504        {
505            Text [ en-US ] = "X";
506        };
507
508        String 3 // description of parameter 1  BesselJ
509        {
510            Text [ en-US ] = "The value at which the function is to be evaluated";
511        };
512
513        String 4 // name of parameter 2         BesselJ
514        {
515            Text [ en-US ] = "N";
516        };
517
518        String 5 // description of parameter 2  BesselJ
519        {
520            Text [ en-US ] = "The order of the Bessel function";
521        };
522    };
523
524    Resource ANALYSIS_Besselk
525    {
526        String 1    // description BesselK
527        {
528            Text [ en-US ] = "Returns the Bessel function Kn(x)";
529        };
530
531        String 2 // name of parameter 1         BesselK
532        {
533            Text [ en-US ] = "X";
534        };
535
536        String 3 // description of parameter 1  BesselK
537        {
538            Text [ en-US ] = "The value at which the function is to be evaluated";
539        };
540
541        String 4 // name of parameter 2         BesselK
542        {
543            Text [ en-US ] = "N";
544        };
545
546        String 5 // description of parameter 2  BesselK
547        {
548            Text [ en-US ] = "The order of the Bessel function";
549        };
550    };
551
552    Resource ANALYSIS_Bessely
553    {
554        String 1    // description BesselY
555        {
556            Text [ en-US ] = "Returns the Bessel function Yn(x)";
557        };
558
559        String 2 // name of parameter 1         BesselY
560        {
561            Text [ en-US ] = "X";
562        };
563
564        String 3 // description of parameter 1  BesselY
565        {
566            Text [ en-US ] = "The value at which the function is to be evaluated";
567        };
568
569        String 4 // name of parameter 2         BesselY
570        {
571            Text [ en-US ] = "N";
572        };
573
574        String 5 // description of parameter 2  BesselY
575        {
576            Text [ en-US ] = "The order of the Bessel function";
577        };
578    };
579
580    Resource ANALYSIS_Bin2Oct
581    {
582        String 1    // description Bin2Oct
583        {
584            Text [ en-US ] = "Converts a binary number to an octal number";
585        };
586
587        String 2 // name of parameter 1         Bin2Oct
588        {
589            Text [ en-US ] = "Number";
590        };
591
592        String 3 // description of parameter 1  Bin2Oct
593        {
594            Text [ en-US ] = "The binary number to be converted (as text)";
595        };
596
597        String 4 // name of parameter 2         Bin2Oct
598        {
599            Text [ en-US ] = "Places";
600        };
601
602        String 5 // description of parameter 2  Bin2Oct
603        {
604            Text [ en-US ] = "Number of places used";
605        };
606    };
607
608    Resource ANALYSIS_Bin2Dec
609    {
610        String 1    // description Bin2Dec
611        {
612            Text [ en-US ] = "Converts a binary number to a decimal number";
613        };
614
615        String 2 // name of parameter 1         Bin2Dec
616        {
617            Text [ en-US ] = "Number";
618        };
619
620        String 3 // description of parameter 1  Bin2Dec
621        {
622            Text [ en-US ] = "The binary number to be converted (as text)";
623        };
624    };
625
626    Resource ANALYSIS_Bin2Hex
627    {
628        String 1    // description Bin2Hex
629        {
630            Text [ en-US ] = "Converts a binary number to a hexadecimal number";
631        };
632
633        String 2 // name of parameter 1         Bin2Hex
634        {
635            Text [ en-US ] = "Number";
636        };
637
638        String 3 // description of parameter 1  Bin2Hex
639        {
640            Text [ en-US ] = "The binary number to be converted (as text)";
641        };
642
643        String 4 // name of parameter 2         Bin2Hex
644        {
645            Text [ en-US ] = "Places";
646        };
647
648        String 5 // description of parameter 2  Bin2Hex
649        {
650            Text [ en-US ] = "Number of places used.";
651        };
652    };
653
654    Resource ANALYSIS_Oct2Bin
655    {
656        String 1    // description Oct2Bin
657        {
658            Text [ en-US ] = "Converts an octal number to a binary number";
659        };
660
661        String 2 // name of parameter 1         Oct2Bin
662        {
663            Text [ en-US ] = "Number";
664        };
665
666        String 3 // description of parameter 1  Oct2Bin
667        {
668            Text [ en-US ] = "The octal number to be converted (as text)";
669        };
670
671        String 4 // name of parameter 2         Oct2Bin
672        {
673            Text [ en-US ] = "Places";
674        };
675
676        String 5 // description of parameter 2  Oct2Bin
677        {
678            Text [ en-US ] = "Number of places used";
679        };
680    };
681
682    Resource ANALYSIS_Oct2Dec
683    {
684        String 1    // description Oct2Dec
685        {
686            Text [ en-US ] = "Converts an octal number to a decimal number";
687        };
688
689        String 2 // name of parameter 1         Oct2Dec
690        {
691            Text [ en-US ] = "Number";
692        };
693
694        String 3 // description of parameter 1  Oct2Dec
695        {
696            Text [ en-US ] = "The octal number to be converted (as text)";
697        };
698    };
699
700    Resource ANALYSIS_Oct2Hex
701    {
702        String 1    // description Oct2Hex
703        {
704            Text [ en-US ] = "Converts an octal number to a hexadecimal number";
705        };
706
707        String 2 // name of parameter 1         Oct2Hex
708        {
709            Text [ en-US ] = "Number";
710        };
711
712        String 3 // description of parameter 1  Oct2Hex
713        {
714            Text [ en-US ] = "The octal number to be converted (as text)";
715        };
716
717        String 4 // name of parameter 2         Oct2Hex
718        {
719            Text [ en-US ] = "Places";
720        };
721
722        String 5 // description of parameter 2  Oct2Hex
723        {
724            Text [ en-US ] = "Number of places used";
725        };
726    };
727
728    Resource ANALYSIS_Dec2Bin
729    {
730        String 1    // description Dec2Bin
731        {
732            Text [ en-US ] = "Converts a decimal number to a binary number";
733        };
734
735        String 2 // name of parameter 1         Dec2Bin
736        {
737            Text [ en-US ] = "Number";
738        };
739
740        String 3 // description of parameter 1  Dec2Bin
741        {
742            Text [ en-US ] = "The decimal integer to be converted";
743        };
744
745        String 4 // name of parameter 2         Dec2Bin
746        {
747            Text [ en-US ] = "Places";
748        };
749
750        String 5 // description of parameter 2  Dec2Bin
751        {
752            Text [ en-US ] = "Number of places used";
753        };
754    };
755
756    Resource ANALYSIS_Dec2Hex
757    {
758        String 1    // description Dec2Hex
759        {
760            Text [ en-US ] = "Converts a decimal number to a hexadecimal number";
761        };
762
763        String 2 // name of parameter 1         Dec2Hex
764        {
765            Text [ en-US ] = "Number";
766        };
767
768        String 3 // description of parameter 1  Dec2Hex
769        {
770            Text [ en-US ] = "The decimal integer to be converted";
771        };
772
773        String 4 // name of parameter 2         Dec2Hex
774        {
775            Text [ en-US ] = "Places";
776        };
777
778        String 5 // description of parameter 2  Dec2Hex
779        {
780            Text [ en-US ] = "Number of places used";
781        };
782    };
783
784    Resource ANALYSIS_Dec2Oct
785    {
786        String 1    // description Dec2Oct
787        {
788            Text [ en-US ] = "Converts a decimal number into an octal number";
789        };
790
791        String 2 // name of parameter 1         Dec2Oct
792        {
793            Text [ en-US ] = "Number";
794        };
795
796        String 3 // description of parameter 1  Dec2Oct
797        {
798            Text [ en-US ] = "The decimal number";
799        };
800
801        String 4 // name of parameter 2         Dec2Oct
802        {
803            Text [ en-US ] = "Places";
804        };
805
806        String 5 // description of parameter 2  Dec2Oct
807        {
808            Text [ en-US ] = "Number of places used";
809        };
810    };
811
812    Resource ANALYSIS_Hex2Bin
813    {
814        String 1    // description Hex2Bin
815        {
816            Text [ en-US ] = "Converts a hexadecimal number to a binary number";
817        };
818
819        String 2 // name of parameter 1         Hex2Bin
820        {
821            Text [ en-US ] = "Number";
822        };
823
824        String 3 // description of parameter 1  Hex2Bin
825        {
826            Text [ en-US ] = "The hexadecimal number to be converted (as text)";
827        };
828
829        String 4 // name of parameter 2         Hex2Bin
830        {
831            Text [ en-US ] = "Places";
832        };
833
834        String 5 // description of parameter 2  Hex2Bin
835        {
836            Text [ en-US ] = "Number of places used";
837        };
838    };
839
840    Resource ANALYSIS_Hex2Dec
841    {
842        String 1    // description Hex2Dec
843        {
844            Text [ en-US ] = "Converts a hexadecimal number to a decimal number";
845        };
846
847        String 2 // name of parameter 1         Hex2Dec
848        {
849            Text [ en-US ] = "Number";
850        };
851
852        String 3 // description of parameter 1  Hex2Dec
853        {
854            Text [ en-US ] = "The hexadecimal number to be converted (as text)";
855        };
856    };
857
858    Resource ANALYSIS_Hex2Oct
859    {
860        String 1    // description Hex2Oct
861        {
862            Text [ en-US ] = "Converts a hexadecimal number to an octal number";
863        };
864
865        String 2 // name of parameter 1         Hex2Oct
866        {
867            Text [ en-US ] = "Number";
868        };
869
870        String 3 // description of parameter 1  Hex2Oct
871        {
872            Text [ en-US ] = "The hexadecimal number to be converted (as text)";
873        };
874
875        String 4 // name of parameter 2         Hex2Oct
876        {
877            Text [ en-US ] = "Places";
878        };
879
880        String 5 // description of parameter 2  Hex2Oct
881        {
882            Text [ en-US ] = "Number of places used";
883        };
884    };
885
886    Resource ANALYSIS_Delta
887    {
888        String 1    // description Delta
889        {
890            Text [ en-US ] = "Tests whether two values are equal";
891        };
892
893        String 2 // name of parameter 1         Delta
894        {
895            Text [ en-US ] = "Number 1";
896        };
897
898        String 3 // description of parameter 1  Delta
899        {
900            Text [ en-US ] = "The first number";
901        };
902
903        String 4 // name of parameter 2         Delta
904        {
905            Text [ en-US ] = "Number 2";
906        };
907
908        String 5 // description of parameter 2  Delta
909        {
910            Text [ en-US ] = "The second number";
911        };
912    };
913
914    Resource ANALYSIS_Erf
915    {
916        String 1    // description Erf
917        {
918            Text [ en-US ] = "Returns the error function";
919        };
920
921        String 2 // name of parameter 1         Erf
922        {
923            Text [ en-US ] = "Lower limit";
924        };
925
926        String 3 // description of parameter 1  Erf
927        {
928            Text [ en-US ] = "The lower limit for integration";
929        };
930
931        String 4 // name of parameter 2         Erf
932        {
933            Text [ en-US ] = "Upper limit";
934        };
935
936        String 5 // description of parameter 2  Erf
937        {
938            Text [ en-US ] = "The upper limit for integration";
939        };
940    };
941
942    Resource ANALYSIS_Erfc
943    {
944        String 1    // description Erfc
945        {
946            Text [ en-US ] = "Returns the complementary error function";
947        };
948
949        String 2 // name of parameter 1         Erfc
950        {
951            Text [ en-US ] = "Lower limit";
952        };
953
954        String 3 // description of parameter 1  Erfc
955        {
956            Text [ en-US ] = "The lower limit for integration";
957        };
958    };
959
960    Resource ANALYSIS_Gestep
961    {
962        String 1    // description GeStep
963        {
964            Text [ en-US ] = "Tests whether a number is greater than a threshold value";
965        };
966
967        String 2 // name of parameter 1         GeStep
968        {
969            Text [ en-US ] = "Number";
970        };
971
972        String 3 // description of parameter 1  GeStep
973        {
974            Text [ en-US ] = "The value to test against step";
975        };
976
977        String 4 // name of parameter 2         GeStep
978        {
979            Text [ en-US ] = "Step";
980        };
981
982        String 5 // description of parameter 2  GeStep
983        {
984            Text [ en-US ] = "The threshhold value";
985        };
986    };
987
988    Resource ANALYSIS_Factdouble
989    {
990        String 1    // description Factdouble
991        {
992            Text [ en-US ] = "Returns the double factorial of Number";
993        };
994
995        String 2 // name of parameter 1         Factdouble
996        {
997            Text [ en-US ] = "Number";
998        };
999
1000        String 3 // description of parameter 1  Factdouble
1001        {
1002            Text [ en-US ] = "The number";
1003        };
1004    };
1005
1006    Resource ANALYSIS_Imabs
1007    {
1008        String 1    // description Imabs
1009        {
1010            Text [ en-US ] = "Returns the absolute value (modulus) of a complex number";
1011        };
1012
1013        String 2 // name of parameter 1         Imabs
1014        {
1015            Text [ en-US ] = "Complex number";
1016        };
1017
1018        String 3 // description of parameter 1  Imabs
1019        {
1020            Text [ en-US ] = "The complex number";
1021        };
1022    };
1023
1024    Resource ANALYSIS_Imaginary
1025    {
1026        String 1    // description Imaginary
1027        {
1028            Text [ en-US ] = "Returns the imaginary coefficient of a complex number";
1029        };
1030
1031        String 2 // name of parameter 1         Imaginary
1032        {
1033            Text [ en-US ] = "Complex number";
1034        };
1035
1036        String 3 // description of parameter 1  Imaginary
1037        {
1038            Text [ en-US ] = "The complex number";
1039        };
1040    };
1041
1042    Resource ANALYSIS_Impower
1043    {
1044        String 1    // description Impower
1045        {
1046            Text [ en-US ] = "Returns a complex number raised to an integer power";
1047        };
1048
1049        String 2 // name of parameter 1         Impower
1050        {
1051            Text [ en-US ] = "Complex number";
1052        };
1053
1054        String 3 // description of parameter 1  Impower
1055        {
1056            Text [ en-US ] = "The complex number";
1057        };
1058
1059        String 4 // name of parameter 2         Impower
1060        {
1061            Text [ en-US ] = "Number";
1062        };
1063
1064        String 5 // description of parameter 2  Impower
1065        {
1066            Text [ en-US ] = "Power to which the complex number is raised";
1067        };
1068    };
1069
1070    Resource ANALYSIS_Imargument
1071    {
1072        String 1    // description Imargument
1073        {
1074            Text [ en-US ] = "Returns the argument theta, an angle expressed in radians";
1075        };
1076
1077        String 2 // name of parameter 1         Imargument
1078        {
1079            Text [ en-US ] = "Complex number";
1080        };
1081
1082        String 3 // description of parameter 1  Imargument
1083        {
1084            Text [ en-US ] = "A complex number";
1085        };
1086    };
1087
1088    Resource ANALYSIS_Imcos
1089    {
1090        String 1    // description Imcos
1091        {
1092            Text [ en-US ] = "Returns the cosine of a complex number";
1093        };
1094
1095        String 2 // name of parameter 1         Imcos
1096        {
1097            Text [ en-US ] = "Complex number";
1098        };
1099
1100        String 3 // description of parameter 1  Imcos
1101        {
1102            Text [ en-US ] = "A complex number";
1103        };
1104    };
1105
1106    Resource ANALYSIS_Imdiv
1107    {
1108        String 1    // description Imdiv
1109        {
1110            Text [ en-US ] = "Returns the quotient of two complex numbers";
1111        };
1112
1113        String 2 // name of parameter 1         Imdiv
1114        {
1115            Text [ en-US ] = "Numerator";
1116        };
1117
1118        String 3 // description of parameter 1  Imdiv
1119        {
1120            Text [ en-US ] = "The dividend";
1121        };
1122
1123        String 4 // name of parameter 2         Imdiv
1124        {
1125            Text [ en-US ] = "Denominator";
1126        };
1127
1128        String 5 // description of parameter 2  Imdiv
1129        {
1130            Text [ en-US ] = "The divisor";
1131        };
1132    };
1133
1134    Resource ANALYSIS_Imexp
1135    {
1136        String 1    // description Imexp
1137        {
1138            Text [ en-US ] = "Returns the algebraic form of the exponential of a complex number";
1139        };
1140
1141        String 2 // name of parameter 1         Imexp
1142        {
1143            Text [ en-US ] = "Complex number";
1144        };
1145
1146        String 3 // description of parameter 1  Imexp
1147        {
1148            Text [ en-US ] = "The complex number";
1149        };
1150    };
1151
1152    Resource ANALYSIS_Imconjugate
1153    {
1154        String 1    // description Imconjugate
1155        {
1156            Text [ en-US ] = "Returns the complex conjugate of a complex number";
1157        };
1158
1159        String 2 // name of parameter 1         Imconjugate
1160        {
1161            Text [ en-US ] = "Complex number";
1162        };
1163
1164        String 3 // description of parameter 1  Imconjugate
1165        {
1166            Text [ en-US ] = "The complex number";
1167        };
1168    };
1169
1170    Resource ANALYSIS_Imln
1171    {
1172        String 1    // description Imln
1173        {
1174            Text [ en-US ] = "Returns the natural logarithm of a complex number";
1175        };
1176
1177        String 2 // name of parameter 1         Imln
1178        {
1179            Text [ en-US ] = "Complex number";
1180        };
1181
1182        String 3 // description of parameter 1  Imln
1183        {
1184            Text [ en-US ] = "The complex number";
1185        };
1186    };
1187
1188    Resource ANALYSIS_Imlog10
1189    {
1190        String 1    // description Imlog10
1191        {
1192            Text [ en-US ] = "Returns the base-10 logarithm of a complex number";
1193        };
1194
1195        String 2 // name of parameter 1         Imlog10
1196        {
1197            Text [ en-US ] = "Complex number";
1198        };
1199
1200        String 3 // description of parameter 1  Imlog10
1201        {
1202            Text [ en-US ] = "The complex number";
1203        };
1204    };
1205
1206    Resource ANALYSIS_Imlog2
1207    {
1208        String 1    // description Imlog2
1209        {
1210            Text [ en-US ] = "Returns the base-2 logarithm of a complex number";
1211        };
1212
1213        String 2 // name of parameter 1         Imlog2
1214        {
1215            Text [ en-US ] = "Complex number";
1216        };
1217
1218        String 3 // description of parameter 1  Imlog2
1219        {
1220            Text [ en-US ] = "The complex number";
1221        };
1222    };
1223
1224    Resource ANALYSIS_Improduct
1225    {
1226        String 1    // description Improduct
1227        {
1228            Text [ en-US ] = "Returns the product of several complex numbers";
1229        };
1230
1231        String 2 // name of parameter 1         Improduct
1232        {
1233            Text [ en-US ] = "Complex number";
1234        };
1235
1236        String 3 // description of parameter 1  Improduct
1237        {
1238            Text [ en-US ] = "The first complex number";
1239        };
1240
1241        String 4 // name of parameter 2         Improduct
1242        {
1243            Text [ en-US ] = "Complex number";
1244        };
1245
1246        String 5 // description of parameter 2  Improduct
1247        {
1248            Text [ en-US ] = "Another complex number";
1249        };
1250    };
1251
1252    Resource ANALYSIS_Imreal
1253    {
1254        String 1    // description Imreal
1255        {
1256            Text [ en-US ] = "Returns the real coefficient of a complex number";
1257        };
1258
1259        String 2 // name of parameter 1         Imreal
1260        {
1261            Text [ en-US ] = "Complex number";
1262        };
1263
1264        String 3 // description of parameter 1  Imreal
1265        {
1266            Text [ en-US ] = "The complex number";
1267        };
1268    };
1269
1270    Resource ANALYSIS_Imsin
1271    {
1272        String 1    // description Imsin
1273        {
1274            Text [ en-US ] = "Returns the sine of a complex number";
1275        };
1276
1277        String 2 // name of parameter 1         Imsin
1278        {
1279            Text [ en-US ] = "Complex number";
1280        };
1281
1282        String 3 // description of parameter 1  Imsin
1283        {
1284            Text [ en-US ] = "The complex number";
1285        };
1286    };
1287
1288    Resource ANALYSIS_Imsub
1289    {
1290        String 1    // description Imsub
1291        {
1292            Text [ en-US ] = "Returns the difference of two complex numbers";
1293        };
1294
1295        String 2 // name of parameter 1         Imsub
1296        {
1297            Text [ en-US ] = "Complex number 1";
1298        };
1299
1300        String 3 // description of parameter 1  Imsub
1301        {
1302            Text [ en-US ] = "Complex number 1";
1303        };
1304
1305        String 4 // name of parameter 2         Imsub
1306        {
1307            Text [ en-US ] = "Complex number 2";
1308        };
1309
1310        String 5 // description of parameter 2  Imsub
1311        {
1312            Text [ en-US ] = "Complex number 2";
1313        };
1314    };
1315
1316    Resource ANALYSIS_Imsqrt
1317    {
1318        String 1    // description Imsqrt
1319        {
1320            Text [ en-US ] = "Returns the square root of a complex number";
1321        };
1322
1323        String 2 // name of parameter 1         Imsqrt
1324        {
1325            Text [ en-US ] = "Complex number";
1326        };
1327
1328        String 3 // description of parameter 1  Imsqrt
1329        {
1330            Text [ en-US ] = "The complex number";
1331        };
1332    };
1333
1334    Resource ANALYSIS_Imsum
1335    {
1336        String 1    // description Imsum
1337        {
1338            Text [ en-US ] = "Returns the sum of complex numbers";
1339        };
1340
1341        String 2 // name of parameter 1         Imsum
1342        {
1343            Text [ en-US ] = "Complex number";
1344        };
1345
1346        String 3 // description of parameter 1  Imsum
1347        {
1348            Text [ en-US ] = "The complex number";
1349        };
1350
1351    };
1352
1353    Resource ANALYSIS_Imtan
1354    {
1355        String 1    // description Imtan
1356        {
1357            Text [ en-US ] = "Returns the tangent of a complex number";
1358        };
1359
1360        String 2 // name of parameter 1         Imtan
1361        {
1362            Text [ en-US ] = "Complex number";
1363        };
1364
1365        String 3 // description of parameter 1  Imtan
1366        {
1367            Text [ en-US ] = "A complex number";
1368        };
1369    };
1370
1371    Resource ANALYSIS_Imsec
1372    {
1373        String 1    // description Imsec
1374        {
1375            Text [ en-US ] = "Returns the secant of a complex number";
1376        };
1377
1378        String 2 // name of parameter 1         Imsec
1379        {
1380            Text [ en-US ] = "Complex number";
1381        };
1382
1383        String 3 // description of parameter 1  Imsec
1384        {
1385            Text [ en-US ] = "A complex number";
1386        };
1387    };
1388
1389    Resource ANALYSIS_Imcsc
1390    {
1391        String 1    // description Imcsc
1392        {
1393            Text [ en-US ] = "Returns the cosecant of a complex number";
1394        };
1395
1396        String 2 // name of parameter 1         Imcsc
1397        {
1398            Text [ en-US ] = "Complex number";
1399        };
1400
1401        String 3 // description of parameter 1  Imcsc
1402        {
1403            Text [ en-US ] = "A complex number";
1404        };
1405    };
1406
1407    Resource ANALYSIS_Imcot
1408    {
1409        String 1    // description Imcot
1410        {
1411            Text [ en-US ] = "Returns the cotangent of a complex number";
1412        };
1413
1414        String 2 // name of parameter 1         Imcot
1415        {
1416            Text [ en-US ] = "Complex number";
1417        };
1418
1419        String 3 // description of parameter 1  Imcot
1420        {
1421            Text [ en-US ] = "A complex number";
1422        };
1423    };
1424
1425    Resource ANALYSIS_Imsinh
1426    {
1427        String 1    // description Imsinh
1428        {
1429            Text [ en-US ] = "Returns the hyperbolic sine of a complex number";
1430        };
1431
1432        String 2 // name of parameter 1         Imsinh
1433        {
1434            Text [ en-US ] = "Complex number";
1435        };
1436
1437        String 3 // description of parameter 1  Imsinh
1438        {
1439            Text [ en-US ] = "A complex number";
1440        };
1441    };
1442
1443    Resource ANALYSIS_Imcosh
1444    {
1445        String 1    // description Imcosh
1446        {
1447            Text [ en-US ] = "Returns the hyperbolic cosine of a complex number";
1448        };
1449
1450        String 2 // name of parameter 1         Imcosh
1451        {
1452            Text [ en-US ] = "Complex number";
1453        };
1454
1455        String 3 // description of parameter 1  Imcosh
1456        {
1457            Text [ en-US ] = "A complex number";
1458        };
1459    };
1460
1461    Resource ANALYSIS_Imsech
1462    {
1463        String 1    // description Imsech
1464        {
1465            Text [ en-US ] = "Returns the hyperbolic secant of a complex number";
1466        };
1467
1468        String 2 // name of parameter 1         Imsech
1469        {
1470            Text [ en-US ] = "Complex number";
1471        };
1472
1473        String 3 // description of parameter 1  Imsech
1474        {
1475            Text [ en-US ] = "A complex number";
1476        };
1477    };
1478
1479    Resource ANALYSIS_Imcsch
1480    {
1481        String 1    // description Imcsch
1482        {
1483            Text [ en-US ] = "Returns the hyperbolic cosecant of a complex number";
1484        };
1485
1486        String 2 // name of parameter 1         Imcsch
1487        {
1488            Text [ en-US ] = "Complex number";
1489        };
1490
1491        String 3 // description of parameter 1  Imcsch
1492        {
1493            Text [ en-US ] = "A complex number";
1494        };
1495    };
1496
1497    Resource ANALYSIS_Complex
1498    {
1499        String 1    // description Complex
1500        {
1501            Text [ en-US ] = "Converts real and imaginary coefficients into a complex number";
1502        };
1503
1504        String 2 // name of parameter 1         Complex
1505        {
1506            Text [ en-US ] = "Real num";
1507        };
1508
1509        String 3 // description of parameter 1  Complex
1510        {
1511            Text [ en-US ] = "The real coefficient";
1512        };
1513
1514        String 4 // name of parameter 2         Complex
1515        {
1516            Text [ en-US ] = "I num";
1517        };
1518
1519        String 5 // description of parameter 2  Complex
1520        {
1521            Text [ en-US ] = "The imaginary coefficient";
1522        };
1523
1524        String 6 // name of parameter 3         Complex
1525        {
1526            Text [ en-US ] = "Suffix";
1527        };
1528
1529        String 7 // description of parameter 3  Complex
1530        {
1531            Text [ en-US ] = "The suffix";
1532        };
1533    };
1534
1535    Resource ANALYSIS_Convert
1536    {
1537        String 1    // description Convert_add
1538        {
1539            Text [ en-US ] = "Converts a number from one measurement system to another";
1540        };
1541
1542        String 2 // name of parameter 1         Convert_add
1543        {
1544            Text [ en-US ] = "Number";
1545        };
1546
1547        String 3 // description of parameter 1  Convert_add
1548        {
1549            Text [ en-US ] = "The number";
1550        };
1551
1552        String 4 // name of parameter 2         Convert_add
1553        {
1554            Text [ en-US ] = "From unit";
1555        };
1556
1557        String 5 // description of parameter 2  Convert_add
1558        {
1559            Text [ en-US ] = "Unit of measure for number";
1560        };
1561
1562        String 6 // name of parameter 3         Convert_add
1563        {
1564            Text [ en-US ] = "To unit";
1565        };
1566
1567        String 7 // description of parameter 3  Convert_add
1568        {
1569            Text [ en-US ] = "Unit of measure for the result";
1570        };
1571    };
1572
1573    Resource ANALYSIS_Amordegrc
1574    {
1575        String 1    // description Amordegrc
1576        {
1577            Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1578        };
1579
1580        String 2 // name of parameter 1         Amordegrc
1581        {
1582            Text [ en-US ] = "Cost";
1583        };
1584
1585        String 3 // description of parameter 1  Amordegrc
1586        {
1587            Text [ en-US ] = "Cost of the asset";
1588        };
1589
1590        String 4 // name of parameter 2         Amordegrc
1591        {
1592            Text [ en-US ] = "Date purchased";
1593        };
1594
1595        String 5 // description of parameter 2  Amordegrc
1596        {
1597            Text [ en-US ] = "Purchase date of the asset";
1598        };
1599
1600        String 6 // name of parameter 3         Amordegrc
1601        {
1602            Text [ en-US ] = "First period";
1603        };
1604
1605        String 7 // description of parameter 3  Amordegrc
1606        {
1607            Text [ en-US ] = "Date the first period ends";
1608        };
1609
1610        String 8 // name of parameter 4         Amordegrc
1611        {
1612            Text [ en-US ] = "Salvage";
1613        };
1614
1615        String 9 // description of parameter 4  Amordegrc
1616        {
1617            Text [ en-US ] = "Salvage value of an asset at the end of its life";
1618        };
1619
1620        String 10 // name of parameter 5        Amordegrc
1621        {
1622            Text [ en-US ] = "Period";
1623        };
1624
1625        String 11 // description of parameter 5 Amordegrc
1626        {
1627            Text [ en-US ] = "The period";
1628        };
1629
1630        String 12 // name of parameter 6        Amordegrc
1631        {
1632            Text [ en-US ] = "Rate";
1633        };
1634
1635        String 13 // description of parameter 6 Amordegrc
1636        {
1637            Text [ en-US ] = "The rate of depreciation";
1638        };
1639
1640        String 14 // name of parameter 7        Amordegrc
1641        {
1642            Text [ en-US ] = "Basis";
1643        };
1644
1645        String 15 // description of parameter 7 Amordegrc
1646        {
1647            Text [ en-US ] = "The year basis to be used";
1648        };
1649    };
1650
1651    Resource ANALYSIS_Amorlinc
1652    {
1653        String 1    // description Amorlinc
1654        {
1655            Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1656        };
1657
1658        String 2 // name of parameter 1         Amorlinc
1659        {
1660            Text [ en-US ] = "Cost";
1661        };
1662
1663        String 3 // description of parameter 1  Amorlinc
1664        {
1665            Text [ en-US ] = "Cost of the asset";
1666        };
1667
1668        String 4 // name of parameter 2         Amorlinc
1669        {
1670            Text [ en-US ] = "Date purchased";
1671        };
1672
1673        String 5 // description of parameter 2  Amorlinc
1674        {
1675            Text [ en-US ] = "Purchase date of the asset";
1676        };
1677
1678        String 6 // name of parameter 3         Amorlinc
1679        {
1680            Text [ en-US ] = "First period";
1681        };
1682
1683        String 7 // description of parameter 3  Amorlinc
1684        {
1685            Text [ en-US ] = "The date the first period ends";
1686        };
1687
1688        String 8 // name of parameter 4         Amorlinc
1689        {
1690            Text [ en-US ] = "Salvage";
1691        };
1692
1693        String 9 // description of parameter 4  Amorlinc
1694        {
1695            Text [ en-US ] = "The salvage value of an asset at the end of its life";
1696        };
1697
1698        String 10 // name of parameter 5        Amorlinc
1699        {
1700            Text [ en-US ] = "Period";
1701        };
1702
1703        String 11 // description of parameter 5 Amorlinc
1704        {
1705            Text [ en-US ] = "The period";
1706        };
1707
1708        String 12 // name of parameter 6        Amorlinc
1709        {
1710            Text [ en-US ] = "Rate";
1711        };
1712
1713        String 13 // description of parameter 6 Amorlinc
1714        {
1715            Text [ en-US ] = "The rate of depreciation";
1716        };
1717
1718        String 14 // name of parameter 7        Amorlinc
1719        {
1720            Text [ en-US ] = "Basis";
1721        };
1722
1723        String 15 // description of parameter 7 Amorlinc
1724        {
1725            Text [ en-US ] = "The year basis to be used";
1726        };
1727    };
1728
1729    Resource ANALYSIS_Accrint
1730    {
1731        String 1    // description Accrint
1732        {
1733            Text [ en-US ] = "Returns the accrued interest for a security that pays periodic interest";
1734        };
1735
1736        String 2 // name of parameter 1         Accrint
1737        {
1738            Text [ en-US ] = "Issue";
1739        };
1740
1741        String 3 // description of parameter 1  Accrint
1742        {
1743            Text [ en-US ] = "Issue date of the security";
1744        };
1745
1746        String 4 // name of parameter 2         Accrint
1747        {
1748            Text [ en-US ] = "First interest";
1749        };
1750
1751        String 5 // description of parameter 2  Accrint
1752        {
1753            Text [ en-US ] = "First interest date of the security";
1754        };
1755
1756        String 6 // name of parameter 3         Accrint
1757        {
1758            Text [ en-US ] = "Settlement";
1759        };
1760
1761        String 7 // description of parameter 3  Accrint
1762        {
1763            Text [ en-US ] = "The settlement";
1764        };
1765
1766        String 8 // name of parameter 4         Accrint
1767        {
1768            Text [ en-US ] = "Rate";
1769        };
1770
1771        String 9 // description of parameter 4  Accrint
1772        {
1773            Text [ en-US ] = "The rate";
1774        };
1775
1776        String 10 // name of parameter 5        Accrint
1777        {
1778            Text [ en-US ] = "Par";
1779        };
1780
1781        String 11 // description of parameter 5 Accrint
1782        {
1783            Text [ en-US ] = "The par value";
1784        };
1785
1786        String 12 // name of parameter 6        Accrint
1787        {
1788            Text [ en-US ] = "Frequency";
1789        };
1790
1791        String 13 // description of parameter 6 Accrint
1792        {
1793            Text [ en-US ] = "The frequency";
1794        };
1795
1796        String 14 // name of parameter 7        Accrint
1797        {
1798            Text [ en-US ] = "Basis";
1799        };
1800
1801        String 15 // description of parameter 7 Accrint
1802        {
1803            Text [ en-US ] = "The basis";
1804        };
1805    };
1806
1807    Resource ANALYSIS_Accrintm
1808    {
1809        String 1    // description Accrintm
1810        {
1811            Text [ en-US ] = "Returns the accrued interest for a security that pays interest at maturity";
1812        };
1813
1814        String 2 // name of parameter 1         Accrintm
1815        {
1816            Text [ en-US ] = "Issue";
1817        };
1818
1819        String 3 // description of parameter 1  Accrintm
1820        {
1821            Text [ en-US ] = "The issue date";
1822        };
1823
1824        String 4 // name of parameter 2         Accrintm
1825        {
1826            Text [ en-US ] = "Settlement";
1827        };
1828
1829        String 5 // description of parameter 2  Accrintm
1830        {
1831            Text [ en-US ] = "The settlement";
1832        };
1833
1834        String 6 // name of parameter 3         Accrintm
1835        {
1836            Text [ en-US ] = "Rate";
1837        };
1838
1839        String 7 // description of parameter 3  Accrintm
1840        {
1841            Text [ en-US ] = "The rate";
1842        };
1843
1844        String 8 // name of parameter 4         Accrintm
1845        {
1846            Text [ en-US ] = "Par";
1847        };
1848
1849        String 9 // description of parameter 4  Accrintm
1850        {
1851            Text [ en-US ] = "The par value";
1852        };
1853
1854        String 10 // name of parameter 5        Accrintm
1855        {
1856            Text [ en-US ] = "Basis";
1857        };
1858
1859        String 11 // description of parameter 5 Accrintm
1860        {
1861            Text [ en-US ] = "The basis";
1862        };
1863    };
1864
1865    Resource ANALYSIS_Received
1866    {
1867        String 1    // description Received
1868        {
1869            Text [ en-US ] = "Returns the amount paid out at maturity for a fully invested security";
1870        };
1871
1872        String 2 // name of parameter 1         Received
1873        {
1874            Text [ en-US ] = "Settlement";
1875        };
1876
1877        String 3 // description of parameter 1  Received
1878        {
1879            Text [ en-US ] = "The settlement";
1880        };
1881
1882        String 4 // name of parameter 2         Received
1883        {
1884            Text [ en-US ] = "Maturity";
1885        };
1886
1887        String 5 // description of parameter 2  Received
1888        {
1889            Text [ en-US ] = "The maturity";
1890        };
1891
1892        String 6 // name of parameter 3         Received
1893        {
1894            Text [ en-US ] = "Investment";
1895        };
1896
1897        String 7 // description of parameter 3  Received
1898        {
1899            Text [ en-US ] = "The investment";
1900        };
1901
1902        String 8 // name of parameter 4         Received
1903        {
1904            Text [ en-US ] = "Discount";
1905        };
1906
1907        String 9 // description of parameter 4  Received
1908        {
1909            Text [ en-US ] = "The discount";
1910        };
1911
1912        String 10 // name of parameter 5        Received
1913        {
1914            Text [ en-US ] = "Basis";
1915        };
1916
1917        String 11 // description of parameter 5 Received
1918        {
1919            Text [ en-US ] = "The basis";
1920        };
1921    };
1922
1923    Resource ANALYSIS_Disc
1924    {
1925        String 1    // description Disc
1926        {
1927            Text [ en-US ] = "Returns the discount rate for a security";
1928        };
1929
1930        String 2 // name of parameter 1         Disc
1931        {
1932            Text [ en-US ] = "Settlement";
1933        };
1934
1935        String 3 // description of parameter 1  Disc
1936        {
1937            Text [ en-US ] = "The settlement";
1938        };
1939
1940        String 4 // name of parameter 2         Disc
1941        {
1942            Text [ en-US ] = "Maturity";
1943        };
1944
1945        String 5 // description of parameter 2  Disc
1946        {
1947            Text [ en-US ] = "The maturity";
1948        };
1949
1950        String 6 // name of parameter 3         Disc
1951        {
1952            Text [ en-US ] = "Price";
1953        };
1954
1955        String 7 // description of parameter 3  Disc
1956        {
1957            Text [ en-US ] = "The price";
1958        };
1959
1960        String 8 // name of parameter 4         Disc
1961        {
1962            Text [ en-US ] = "Redemption";
1963        };
1964
1965        String 9 // description of parameter 4  Disc
1966        {
1967            Text [ en-US ] = "The redemption value";
1968        };
1969
1970        String 10 // name of parameter 5        Disc
1971        {
1972            Text [ en-US ] = "Basis";
1973        };
1974
1975        String 11 // description of parameter 5 Disc
1976        {
1977            Text [ en-US ] = "The basis";
1978        };
1979    };
1980
1981    Resource ANALYSIS_Duration
1982    {
1983        String 1    // description Duration
1984        {
1985            Text [ en-US ] = "Returns the annual Macaulay duration of a security with periodic interest payments";
1986        };
1987
1988        String 2 // name of parameter 1         Duration
1989        {
1990            Text [ en-US ] = "Settlement";
1991        };
1992
1993        String 3 // description of parameter 1  Duration
1994        {
1995            Text [ en-US ] = "The settlement";
1996        };
1997
1998        String 4 // name of parameter 2         Duration
1999        {
2000            Text [ en-US ] = "Maturity";
2001        };
2002
2003        String 5 // description of parameter 2  Duration
2004        {
2005            Text [ en-US ] = "The maturity";
2006        };
2007
2008        String 6 // name of parameter 3         Duration
2009        {
2010            Text [ en-US ] = "Coupon";
2011        };
2012
2013        String 7 // description of parameter 3  Duration
2014        {
2015            Text [ en-US ] = "The coupon rate";
2016        };
2017
2018        String 8 // name of parameter 4         Duration
2019        {
2020            Text [ en-US ] = "Yield";
2021        };
2022
2023        String 9 // description of parameter 4  Duration
2024        {
2025            Text [ en-US ] = "The yield";
2026        };
2027
2028        String 10 // name of parameter 5        Duration
2029        {
2030            Text [ en-US ] = "Frequency";
2031        };
2032
2033        String 11 // description of parameter 5 Duration
2034        {
2035            Text [ en-US ] = "The frequency";
2036        };
2037
2038        String 12 // name of parameter 6        Duration
2039        {
2040            Text [ en-US ] = "Basis";
2041        };
2042
2043        String 13 // description of parameter 6 Duration
2044        {
2045            Text [ en-US ] = "The basis";
2046        };
2047    };
2048
2049    Resource ANALYSIS_Effect
2050    {
2051        String 1    // description Effect_add
2052        {
2053            Text [ en-US ] = "Returns the effective annual interest rate";
2054        };
2055
2056        String 2 // name of parameter 1         Effect_add
2057        {
2058            Text [ en-US ] = "Nominal rate";
2059        };
2060
2061        String 3 // description of parameter 1  Effect_add
2062        {
2063            Text [ en-US ] = "The nominal rate";
2064        };
2065
2066        String 4 // name of parameter 2         Effect_add
2067        {
2068            Text [ en-US ] = "Npery";
2069        };
2070
2071        String 5 // description of parameter 2  Effect_add
2072        {
2073            Text [ en-US ] = "The periods";
2074        };
2075    };
2076
2077    Resource ANALYSIS_Cumprinc
2078    {
2079        String 1    // description Cumprinc_add
2080        {
2081            Text [ en-US ] = "Returns the cumulative principal on a loan to be paid between two periods";
2082        };
2083
2084        String 2 // name of parameter 1         Cumprinc_add
2085        {
2086            Text [ en-US ] = "Rate";
2087        };
2088
2089        String 3 // description of parameter 1  Cumprinc_add
2090        {
2091            Text [ en-US ] = "The rate";
2092        };
2093
2094        String 4 // name of parameter 2         Cumprinc_add
2095        {
2096            Text [ en-US ] = "Nper";
2097        };
2098
2099        String 5 // description of parameter 2  Cumprinc_add
2100        {
2101            Text [ en-US ] = "Number of payment periods";
2102        };
2103
2104        String 6 // name of parameter 3         Cumprinc_add
2105        {
2106            Text [ en-US ] = "Pv";
2107        };
2108
2109        String 7 // description of parameter 3  Cumprinc_add
2110        {
2111            Text [ en-US ] = "The present value";
2112        };
2113
2114        String 8 // name of parameter 4         Cumprinc_add
2115        {
2116            Text [ en-US ] = "Start period";
2117        };
2118
2119        String 9 // description of parameter 4  Cumprinc_add
2120        {
2121            Text [ en-US ] = "The start period";
2122        };
2123
2124        String 10 // name of parameter 5        Cumprinc_add
2125        {
2126            Text [ en-US ] = "End period";
2127        };
2128
2129        String 11 // description of parameter 5 Cumprinc_add
2130        {
2131            Text [ en-US ] = "The end period";
2132        };
2133
2134        String 12 // name of parameter 6        Cumprinc_add
2135        {
2136            Text [ en-US ] = "Type";
2137        };
2138
2139        String 13 // description of parameter 6 Cumprinc_add
2140        {
2141            Text [ en-US ] = "The type of maturity";
2142        };
2143    };
2144
2145    Resource ANALYSIS_Cumipmt
2146    {
2147        String 1    // description Cumipmt_add
2148        {
2149            Text [ en-US ] = "Returns the cumulative interest to be paid between two periods";
2150        };
2151
2152        String 2 // name of parameter 1         Cumipmt_add
2153        {
2154            Text [ en-US ] = "Rate";
2155        };
2156
2157        String 3 // description of parameter 1  Cumipmt_add
2158        {
2159            Text [ en-US ] = "The rate";
2160        };
2161
2162        String 4 // name of parameter 2         Cumipmt_add
2163        {
2164            Text [ en-US ] = "Nper";
2165        };
2166
2167        String 5 // description of parameter 2  Cumipmt_add
2168        {
2169            Text [ en-US ] = "Number of payment periods";
2170        };
2171
2172        String 6 // name of parameter 3         Cumipmt_add
2173        {
2174            Text [ en-US ] = "Pv";
2175        };
2176
2177        String 7 // description of parameter 3  Cumipmt_add
2178        {
2179            Text [ en-US ] = "The present value";
2180        };
2181
2182        String 8 // name of parameter 4         Cumipmt_add
2183        {
2184            Text [ en-US ] = "Start period";
2185        };
2186
2187        String 9 // description of parameter 4  Cumipmt_add
2188        {
2189            Text [ en-US ] = "The start period";
2190        };
2191
2192        String 10 // name of parameter 5        Cumipmt_add
2193        {
2194            Text [ en-US ] = "End period";
2195        };
2196
2197        String 11 // description of parameter 5 Cumipmt_add
2198        {
2199            Text [ en-US ] = "The end period";
2200        };
2201
2202        String 12 // name of parameter 6        Cumipmt_add
2203        {
2204            Text [ en-US ] = "Type";
2205        };
2206
2207        String 13 // description of parameter 6 Cumipmt_add
2208        {
2209            Text [ en-US ] = "The type of maturity";
2210        };
2211    };
2212
2213    Resource ANALYSIS_Price
2214    {
2215        String 1    // description Price
2216        {
2217            Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays periodic interest";
2218        };
2219
2220        String 2 // name of parameter 1         Price
2221        {
2222            Text [ en-US ] = "Settlement";
2223        };
2224
2225        String 3 // description of parameter 1  Price
2226        {
2227            Text [ en-US ] = "The settlement";
2228        };
2229
2230        String 4 // name of parameter 2         Price
2231        {
2232            Text [ en-US ] = "Maturity";
2233        };
2234
2235        String 5 // description of parameter 2  Price
2236        {
2237            Text [ en-US ] = "The maturity";
2238        };
2239
2240        String 6 // name of parameter 3         Price
2241        {
2242            Text [ en-US ] = "Rate";
2243        };
2244
2245        String 7 // description of parameter 3  Price
2246        {
2247            Text [ en-US ] = "The rate";
2248        };
2249
2250        String 8 // name of parameter 4         Price
2251        {
2252            Text [ en-US ] = "Yield";
2253        };
2254
2255        String 9 // description of parameter 4  Price
2256        {
2257            Text [ en-US ] = "The yield";
2258        };
2259
2260        String 10 // name of parameter 5        Price
2261        {
2262            Text [ en-US ] = "Redemption";
2263        };
2264
2265        String 11 // description of parameter 5 Price
2266        {
2267            Text [ en-US ] = "The redemption value";
2268        };
2269
2270        String 12 // name of parameter 6        Price
2271        {
2272            Text [ en-US ] = "Frequency";
2273        };
2274
2275        String 13 // description of parameter 6 Price
2276        {
2277            Text [ en-US ] = "The frequency";
2278        };
2279
2280        String 14 // name of parameter 7        Price
2281        {
2282            Text [ en-US ] = "Basis";
2283        };
2284
2285        String 15 // description of parameter 7 Price
2286        {
2287            Text [ en-US ] = "The basis";
2288        };
2289    };
2290
2291    Resource ANALYSIS_Pricedisc
2292    {
2293        String 1    // description Pricedisc
2294        {
2295            Text [ en-US ] = "Returns the price per 100 currency units face value of a discounted security";
2296        };
2297
2298        String 2 // name of parameter 1         Pricedisc
2299        {
2300            Text [ en-US ] = "Settlement";
2301        };
2302
2303        String 3 // description of parameter 1  Pricedisc
2304        {
2305            Text [ en-US ] = "The settlement";
2306        };
2307
2308        String 4 // name of parameter 2         Pricedisc
2309        {
2310            Text [ en-US ] = "Maturity";
2311        };
2312
2313        String 5 // description of parameter 2  Pricedisc
2314        {
2315            Text [ en-US ] = "The maturity";
2316        };
2317
2318        String 6 // name of parameter 3         Pricedisc
2319        {
2320            Text [ en-US ] = "Discount";
2321        };
2322
2323        String 7 // description of parameter 3  Pricedisc
2324        {
2325            Text [ en-US ] = "The discount";
2326        };
2327
2328        String 8 // name of parameter 4         Pricedisc
2329        {
2330            Text [ en-US ] = "Redemption";
2331        };
2332
2333        String 9 // description of parameter 4  Pricedisc
2334        {
2335            Text [ en-US ] = "The redemption value";
2336        };
2337
2338        String 10 // name of parameter 5        Pricedisc
2339        {
2340            Text [ en-US ] = "Basis";
2341        };
2342
2343        String 11 // description of parameter 5 Pricedisc
2344        {
2345            Text [ en-US ] = "The basis";
2346        };
2347    };
2348
2349    Resource ANALYSIS_Pricemat
2350    {
2351        String 1    // description Pricemat
2352        {
2353            Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays interest at maturity";
2354        };
2355
2356        String 2 // name of parameter 1         Pricemat
2357        {
2358            Text [ en-US ] = "Settlement";
2359        };
2360
2361        String 3 // description of parameter 1  Pricemat
2362        {
2363            Text [ en-US ] = "The settlement";
2364        };
2365
2366        String 4 // name of parameter 2         Pricemat
2367        {
2368            Text [ en-US ] = "Maturity";
2369        };
2370
2371        String 5 // description of parameter 2  Pricemat
2372        {
2373            Text [ en-US ] = "The maturity";
2374        };
2375
2376        String 6 // name of parameter 3         Pricemat
2377        {
2378            Text [ en-US ] = "Issue";
2379        };
2380
2381        String 7 // description of parameter 3  Pricemat
2382        {
2383            Text [ en-US ] = "The issue date";
2384        };
2385
2386        String 8 // name of parameter 4         Pricemat
2387        {
2388            Text [ en-US ] = "Rate";
2389        };
2390
2391        String 9 // description of parameter 4  Pricemat
2392        {
2393            Text [ en-US ] = "The rate";
2394        };
2395
2396        String 10 // name of parameter 5        Pricemat
2397        {
2398            Text [ en-US ] = "Yield";
2399        };
2400
2401        String 11 // description of parameter 5 Pricemat
2402        {
2403            Text [ en-US ] = "The yield";
2404        };
2405
2406        String 12 // name of parameter 6        Pricemat
2407        {
2408            Text [ en-US ] = "Basis";
2409        };
2410
2411        String 13 // description of parameter 6 Pricemat
2412        {
2413            Text [ en-US ] = "The basis";
2414        };
2415    };
2416
2417    Resource ANALYSIS_Mduration
2418    {
2419        String 1    // description Mduration
2420        {
2421            Text [ en-US ] = "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units";
2422        };
2423
2424        String 2 // name of parameter 1         Mduration
2425        {
2426            Text [ en-US ] = "Settlement";
2427        };
2428
2429        String 3 // description of parameter 1  Mduration
2430        {
2431            Text [ en-US ] = "The settlement";
2432        };
2433
2434        String 4 // name of parameter 2         Mduration
2435        {
2436            Text [ en-US ] = "Maturity";
2437        };
2438
2439        String 5 // description of parameter 2  Mduration
2440        {
2441            Text [ en-US ] = "The maturity";
2442        };
2443
2444        String 6 // name of parameter 3         Mduration
2445        {
2446            Text [ en-US ] = "Coupon";
2447        };
2448
2449        String 7 // description of parameter 3  Mduration
2450        {
2451            Text [ en-US ] = "The coupon rate";
2452        };
2453
2454        String 8 // name of parameter 4         Mduration
2455        {
2456            Text [ en-US ] = "Yield";
2457        };
2458
2459        String 9 // description of parameter 4  Mduration
2460        {
2461            Text [ en-US ] = "The yield";
2462        };
2463
2464        String 10 // name of parameter 5        Mduration
2465        {
2466            Text [ en-US ] = "Frequency";
2467        };
2468
2469        String 11 // description of parameter 5 Mduration
2470        {
2471            Text [ en-US ] = "The frequency";
2472        };
2473
2474        String 12 // name of parameter 6        Mduration
2475        {
2476            Text [ en-US ] = "Basis";
2477        };
2478
2479        String 13 // description of parameter 6 Mduration
2480        {
2481            Text [ en-US ] = "The basis";
2482        };
2483    };
2484
2485    Resource ANALYSIS_Nominal
2486    {
2487        String 1    // description Nominal_add
2488        {
2489            Text [ en-US ] = "Returns the annual nominal interest rate";
2490        };
2491
2492        String 2 // name of parameter 1         Nominal_add
2493        {
2494            Text [ en-US ] = "Effective rate";
2495        };
2496
2497        String 3 // description of parameter 1  Nominal_add
2498        {
2499            Text [ en-US ] = "The effective interest rate";
2500        };
2501
2502        String 4 // name of parameter 2         Nominal_add
2503        {
2504            Text [ en-US ] = "Npery";
2505        };
2506
2507        String 5 // description of parameter 2  Nominal_add
2508        {
2509            Text [ en-US ] = "The periods";
2510        };
2511    };
2512
2513    Resource ANALYSIS_Dollarfr
2514    {
2515        String 1    // description Dollarfr
2516        {
2517            Text [ en-US ] = "Converts a price expressed as a decimal into a price expressed as a fraction";
2518        };
2519
2520        String 2 // name of parameter 1         Dollarfr
2521        {
2522            Text [ en-US ] = "Decimal dollar";
2523        };
2524
2525        String 3 // description of parameter 1  Dollarfr
2526        {
2527            Text [ en-US ] = "The decimal number";
2528        };
2529
2530        String 4 // name of parameter 2         Dollarfr
2531        {
2532            Text [ en-US ] = "Fraction";
2533        };
2534
2535        String 5 // description of parameter 2  Dollarfr
2536        {
2537            Text [ en-US ] = "The divisor";
2538        };
2539    };
2540
2541    Resource ANALYSIS_Dollarde
2542    {
2543        String 1    // description Dollarde
2544        {
2545            Text [ en-US ] = "Converts a price expressed as a fraction into a price expressed as a decimal";
2546        };
2547
2548        String 2 // name of parameter 1         Dollarde
2549        {
2550            Text [ en-US ] = "Fractional dollar";
2551        };
2552
2553        String 3 // description of parameter 1  Dollarde
2554        {
2555            Text [ en-US ] = "The number as a fraction";
2556        };
2557
2558        String 4 // name of parameter 2         Dollarde
2559        {
2560            Text [ en-US ] = "Fraction";
2561        };
2562
2563        String 5 // description of parameter 2  Dollarde
2564        {
2565            Text [ en-US ] = "The divisor";
2566        };
2567    };
2568
2569    Resource ANALYSIS_Yield
2570    {
2571        String 1    // description Yield
2572        {
2573            Text [ en-US ] = "Returns the yield on a security that pays periodic interest";
2574        };
2575
2576        String 2 // name of parameter 1         Yield
2577        {
2578            Text [ en-US ] = "Settlement";
2579        };
2580
2581        String 3 // description of parameter 1  Yield
2582        {
2583            Text [ en-US ] = "The settlement";
2584        };
2585
2586        String 4 // name of parameter 2         Yield
2587        {
2588            Text [ en-US ] = "Maturity";
2589        };
2590
2591        String 5 // description of parameter 2  Yield
2592        {
2593            Text [ en-US ] = "The maturity";
2594        };
2595
2596        String 6 // name of parameter 3         Yield
2597        {
2598            Text [ en-US ] = "Rate";
2599        };
2600
2601        String 7 // description of parameter 3  Yield
2602        {
2603            Text [ en-US ] = "The rate";
2604        };
2605
2606        String 8 // name of parameter 4         Yield
2607        {
2608            Text [ en-US ] = "Price";
2609        };
2610
2611        String 9 // description of parameter 4  Yield
2612        {
2613            Text [ en-US ] = "The price";
2614        };
2615
2616        String 10 // name of parameter 5        Yield
2617        {
2618            Text [ en-US ] = "Redemption";
2619        };
2620
2621        String 11 // description of parameter 5 Yield
2622        {
2623            Text [ en-US ] = "The redemption value";
2624        };
2625
2626        String 12 // name of parameter 6        Yield
2627        {
2628            Text [ en-US ] = "Frequency";
2629        };
2630
2631        String 13 // description of parameter 6 Yield
2632        {
2633            Text [ en-US ] = "The frequency";
2634        };
2635
2636        String 14 // name of parameter 7        Yield
2637        {
2638            Text [ en-US ] = "Basis";
2639        };
2640
2641        String 15 // description of parameter 7 Yield
2642        {
2643            Text [ en-US ] = "The basis";
2644        };
2645    };
2646
2647    Resource ANALYSIS_Yielddisc
2648    {
2649        String 1    // description Yielddisc
2650        {
2651            Text [ en-US ] = "Returns the annual yield for a discounted security";
2652        };
2653
2654        String 2 // name of parameter 1         Yielddisc
2655        {
2656            Text [ en-US ] = "Settlement";
2657        };
2658
2659        String 3 // description of parameter 1  Yielddisc
2660        {
2661            Text [ en-US ] = "The settlement";
2662        };
2663
2664        String 4 // name of parameter 2         Yielddisc
2665        {
2666            Text [ en-US ] = "Maturity";
2667        };
2668
2669        String 5 // description of parameter 2  Yielddisc
2670        {
2671            Text [ en-US ] = "The maturity";
2672        };
2673
2674        String 6 // name of parameter 3         Yielddisc
2675        {
2676            Text [ en-US ] = "Price";
2677        };
2678
2679        String 7 // description of parameter 3  Yielddisc
2680        {
2681            Text [ en-US ] = "The price";
2682        };
2683
2684        String 8 // name of parameter 4         Yielddisc
2685        {
2686            Text [ en-US ] = "Redemption";
2687        };
2688
2689        String 9 // description of parameter 4  Yielddisc
2690        {
2691            Text [ en-US ] = "The redemption value";
2692        };
2693
2694        String 10 // name of parameter 5        Yielddisc
2695        {
2696            Text [ en-US ] = "Basis";
2697        };
2698
2699        String 11 // description of parameter 5 Yielddisc
2700        {
2701            Text [ en-US ] = "The basis";
2702        };
2703    };
2704
2705    Resource ANALYSIS_Yieldmat
2706    {
2707        String 1    // description Yieldmat
2708        {
2709            Text [ en-US ] = "Returns the annual yield of a security that pays interest at maturity";
2710        };
2711
2712        String 2 // name of parameter 1         Yieldmat
2713        {
2714            Text [ en-US ] = "Settlement";
2715        };
2716
2717        String 3 // description of parameter 1  Yieldmat
2718        {
2719            Text [ en-US ] = "The settlement";
2720        };
2721
2722        String 4 // name of parameter 2         Yieldmat
2723        {
2724            Text [ en-US ] = "Maturity";
2725        };
2726
2727        String 5 // description of parameter 2  Yieldmat
2728        {
2729            Text [ en-US ] = "The maturity";
2730        };
2731
2732        String 6 // name of parameter 3         Yieldmat
2733        {
2734            Text [ en-US ] = "Issue";
2735        };
2736
2737        String 7 // description of parameter 3  Yieldmat
2738        {
2739            Text [ en-US ] = "The issue date";
2740        };
2741
2742        String 8 // name of parameter 4         Yieldmat
2743        {
2744            Text [ en-US ] = "Rate";
2745        };
2746
2747        String 9 // description of parameter 4  Yieldmat
2748        {
2749            Text [ en-US ] = "The rate";
2750        };
2751
2752        String 10 // name of parameter 5        Yieldmat
2753        {
2754            Text [ en-US ] = "Price";
2755        };
2756
2757        String 11 // description of parameter 5 Yieldmat
2758        {
2759            Text [ en-US ] = "The price";
2760        };
2761
2762        String 12 // name of parameter 6        Yieldmat
2763        {
2764            Text [ en-US ] = "Basis";
2765        };
2766
2767        String 13 // description of parameter 6 Yieldmat
2768        {
2769            Text [ en-US ] = "The basis";
2770        };
2771    };
2772
2773    Resource ANALYSIS_Tbilleq
2774    {
2775        String 1    // description Tbilleq
2776        {
2777            Text [ en-US ] = "Returns the bond-equivalent yield for a treasury bill";
2778        };
2779
2780        String 2 // name of parameter 1         Tbilleq
2781        {
2782            Text [ en-US ] = "Settlement";
2783        };
2784
2785        String 3 // description of parameter 1  Tbilleq
2786        {
2787            Text [ en-US ] = "The settlement";
2788        };
2789
2790        String 4 // name of parameter 2         Tbilleq
2791        {
2792            Text [ en-US ] = "Maturity";
2793        };
2794
2795        String 5 // description of parameter 2  Tbilleq
2796        {
2797            Text [ en-US ] = "The maturity";
2798        };
2799
2800        String 6 // name of parameter 3         Tbilleq
2801        {
2802            Text [ en-US ] = "Discount";
2803        };
2804
2805        String 7 // description of parameter 3  Tbilleq
2806        {
2807            Text [ en-US ] = "The discount rate";
2808        };
2809    };
2810
2811    Resource ANALYSIS_Tbillprice
2812    {
2813        String 1    // description Tbillprice
2814        {
2815            Text [ en-US ] = "Returns the price of 100 currency units face value for a treasury bill";
2816        };
2817
2818        String 2 // name of parameter 1         Tbillprice
2819        {
2820            Text [ en-US ] = "Settlement";
2821        };
2822
2823        String 3 // description of parameter 1  Tbillprice
2824        {
2825            Text [ en-US ] = "The settlement";
2826        };
2827
2828        String 4 // name of parameter 2         Tbillprice
2829        {
2830            Text [ en-US ] = "Maturity";
2831        };
2832
2833        String 5 // description of parameter 2  Tbillprice
2834        {
2835            Text [ en-US ] = "The maturity";
2836        };
2837
2838        String 6 // name of parameter 3         Tbillprice
2839        {
2840            Text [ en-US ] = "Discount";
2841        };
2842
2843        String 7 // description of parameter 3  Tbillprice
2844        {
2845            Text [ en-US ] = "The discount rate";
2846        };
2847    };
2848
2849    Resource ANALYSIS_Tbillyield
2850    {
2851        String 1    // description Tbillyield
2852        {
2853            Text [ en-US ] = "Returns the yield for a treasury bill";
2854        };
2855
2856        String 2 // name of parameter 1         Tbillyield
2857        {
2858            Text [ en-US ] = "Settlement";
2859        };
2860
2861        String 3 // description of parameter 1  Tbillyield
2862        {
2863            Text [ en-US ] = "The settlement";
2864        };
2865
2866        String 4 // name of parameter 2         Tbillyield
2867        {
2868            Text [ en-US ] = "Maturity";
2869        };
2870
2871        String 5 // description of parameter 2  Tbillyield
2872        {
2873            Text [ en-US ] = "The maturity";
2874        };
2875
2876        String 6 // name of parameter 3         Tbillyield
2877        {
2878            Text [ en-US ] = "Price";
2879        };
2880
2881        String 7 // description of parameter 3  Tbillyield
2882        {
2883            Text [ en-US ] = "The price";
2884        };
2885    };
2886
2887    Resource ANALYSIS_Oddfprice
2888    {
2889        String 1    // description Oddfprice
2890        {
2891            Text [ en-US ] = "Returns the price per $100 face value of a security with an odd first period";
2892        };
2893
2894        String 2 // name of parameter 1         Oddfprice
2895        {
2896            Text [ en-US ] = "Settlement";
2897        };
2898
2899        String 3 // description of parameter 1  Oddfprice
2900        {
2901            Text [ en-US ] = "The settlement";
2902        };
2903
2904        String 4 // name of parameter 2         Oddfprice
2905        {
2906            Text [ en-US ] = "Maturity";
2907        };
2908
2909        String 5 // description of parameter 2  Oddfprice
2910        {
2911            Text [ en-US ] = "The maturity";
2912        };
2913
2914        String 6 // name of parameter 3         Oddfprice
2915        {
2916            Text [ en-US ] = "Issue";
2917        };
2918
2919        String 7 // description of parameter 3  Oddfprice
2920        {
2921            Text [ en-US ] = "The issue date";
2922        };
2923
2924        String 8 // name of parameter 4         Oddfprice
2925        {
2926            Text [ en-US ] = "First coupon";
2927        };
2928
2929        String 9 // description of parameter 4  Oddfprice
2930        {
2931            Text [ en-US ] = "The first coupon date";
2932        };
2933
2934        String 10 // name of parameter 5        Oddfprice
2935        {
2936            Text [ en-US ] = "Rate";
2937        };
2938
2939        String 11 // description of parameter 5 Oddfprice
2940        {
2941            Text [ en-US ] = "The rate";
2942        };
2943
2944        String 12 // name of parameter 6        Oddfprice
2945        {
2946            Text [ en-US ] = "Yield";
2947        };
2948
2949        String 13 // description of parameter 6 Oddfprice
2950        {
2951            Text [ en-US ] = "The yield";
2952        };
2953
2954        String 14 // name of parameter 7        Oddfprice
2955        {
2956            Text [ en-US ] = "Redemption";
2957        };
2958
2959        String 15 // description of parameter 7 Oddfprice
2960        {
2961            Text [ en-US ] = "The redemption value";
2962        };
2963
2964        String 16 // name of parameter 8        Oddfprice
2965        {
2966            Text [ en-US ] = "Frequency";
2967        };
2968
2969        String 17 // description of parameter 8 Oddfprice
2970        {
2971            Text [ en-US ] = "The frequency";
2972        };
2973
2974        String 18 // name of parameter 9        Oddfprice
2975        {
2976            Text [ en-US ] = "Basis";
2977        };
2978
2979        String 19 // description of parameter 9 Oddfprice
2980        {
2981            Text [ en-US ] = "The basis";
2982        };
2983    };
2984
2985    Resource ANALYSIS_Oddfyield
2986    {
2987        String 1    // description Oddfyield
2988        {
2989            Text [ en-US ] = "Returns the yield of a security with an odd first period";
2990        };
2991
2992        String 2 // name of parameter 1         Oddfyield
2993        {
2994            Text [ en-US ] = "Settlement";
2995        };
2996
2997        String 3 // description of parameter 1  Oddfyield
2998        {
2999            Text [ en-US ] = "The settlement";
3000        };
3001
3002        String 4 // name of parameter 2         Oddfyield
3003        {
3004            Text [ en-US ] = "Maturity";
3005        };
3006
3007        String 5 // description of parameter 2  Oddfyield
3008        {
3009            Text [ en-US ] = "The maturity";
3010        };
3011
3012        String 6 // name of parameter 3         Oddfyield
3013        {
3014            Text [ en-US ] = "Issue";
3015        };
3016
3017        String 7 // description of parameter 3  Oddfyield
3018        {
3019            Text [ en-US ] = "The issue date";
3020        };
3021
3022        String 8 // name of parameter 4         Oddfyield
3023        {
3024            Text [ en-US ] = "First coupon";
3025        };
3026
3027        String 9 // description of parameter 4  Oddfyield
3028        {
3029            Text [ en-US ] = "The first coupon date";
3030        };
3031
3032        String 10 // name of parameter 5        Oddfyield
3033        {
3034            Text [ en-US ] = "Rate";
3035        };
3036
3037        String 11 // description of parameter 5 Oddfyield
3038        {
3039            Text [ en-US ] = "The rate";
3040        };
3041
3042        String 12 // name of parameter 6        Oddfyield
3043        {
3044            Text [ en-US ] = "Price";
3045        };
3046
3047        String 13 // description of parameter 6 Oddfyield
3048        {
3049            Text [ en-US ] = "The price";
3050        };
3051
3052        String 14 // name of parameter 7        Oddfyield
3053        {
3054            Text [ en-US ] = "Redemption";
3055        };
3056
3057        String 15 // description of parameter 7 Oddfyield
3058        {
3059            Text [ en-US ] = "The redemption value";
3060        };
3061
3062        String 16 // name of parameter 8        Oddfyield
3063        {
3064            Text [ en-US ] = "Frequency";
3065        };
3066
3067        String 17 // description of parameter 8 Oddfyield
3068        {
3069            Text [ en-US ] = "The frequency";
3070        };
3071
3072        String 18 // name of parameter 9        Oddfyield
3073        {
3074            Text [ en-US ] = "Basis";
3075        };
3076
3077        String 19 // description of parameter 9 Oddfyield
3078        {
3079            Text [ en-US ] = "The basis";
3080        };
3081    };
3082
3083    Resource ANALYSIS_Oddlprice
3084    {
3085        String 1    // description Oddlprice
3086        {
3087            Text [ en-US ] = "Returns the price per $100 face value of a security with an odd last period";
3088        };
3089
3090        String 2 // name of parameter 1         Oddlprice
3091        {
3092            Text [ en-US ] = "Settlement";
3093        };
3094
3095        String 3 // description of parameter 1  Oddlprice
3096        {
3097            Text [ en-US ] = "The settlement";
3098        };
3099
3100        String 4 // name of parameter 2         Oddlprice
3101        {
3102            Text [ en-US ] = "Maturity";
3103        };
3104
3105        String 5 // description of parameter 2  Oddlprice
3106        {
3107            Text [ en-US ] = "The maturity";
3108        };
3109
3110        String 6 // name of parameter 3         Oddlprice
3111        {
3112            Text [ en-US ] = "Last interest";
3113        };
3114
3115        String 7 // description of parameter 3  Oddlprice
3116        {
3117            Text [ en-US ] = "The last interest date";
3118        };
3119
3120        String 8 // name of parameter 4         Oddlprice
3121        {
3122            Text [ en-US ] = "Rate";
3123        };
3124
3125        String 9 // description of parameter 4  Oddlprice
3126        {
3127            Text [ en-US ] = "The rate";
3128        };
3129
3130        String 10 // name of parameter 5        Oddlprice
3131        {
3132            Text [ en-US ] = "Yield";
3133        };
3134
3135        String 11 // description of parameter 5 Oddlprice
3136        {
3137            Text [ en-US ] = "The yield";
3138        };
3139
3140        String 12 // name of parameter 6        Oddlprice
3141        {
3142            Text [ en-US ] = "Redemption";
3143        };
3144
3145        String 13 // description of parameter 6 Oddlprice
3146        {
3147            Text [ en-US ] = "The redemption value";
3148        };
3149
3150        String 14 // name of parameter 7        Oddlprice
3151        {
3152            Text [ en-US ] = "Frequency";
3153        };
3154
3155        String 15 // description of parameter 7 Oddlprice
3156        {
3157            Text [ en-US ] = "The frequency";
3158        };
3159
3160        String 16 // name of parameter 8        Oddlprice
3161        {
3162            Text [ en-US ] = "Basis";
3163        };
3164
3165        String 17 // description of parameter 8 Oddlprice
3166        {
3167            Text [ en-US ] = "The basis";
3168        };
3169    };
3170
3171    Resource ANALYSIS_Oddlyield
3172    {
3173        String 1    // description Oddlyield
3174        {
3175            Text [ en-US ] = "Returns the yield of a security with an odd last period";
3176        };
3177
3178        String 2 // name of parameter 1         Oddlyield
3179        {
3180            Text [ en-US ] = "Settlement";
3181        };
3182
3183        String 3 // description of parameter 1  Oddlyield
3184        {
3185            Text [ en-US ] = "The settlement";
3186        };
3187
3188        String 4 // name of parameter 2         Oddlyield
3189        {
3190            Text [ en-US ] = "Maturity";
3191        };
3192
3193        String 5 // description of parameter 2  Oddlyield
3194        {
3195            Text [ en-US ] = "The maturity";
3196        };
3197
3198        String 6 // name of parameter 3         Oddlyield
3199        {
3200            Text [ en-US ] = "Last interest";
3201        };
3202
3203        String 7 // description of parameter 3  Oddlyield
3204        {
3205            Text [ en-US ] = "The last interest date";
3206        };
3207
3208        String 8 // name of parameter 4         Oddlyield
3209        {
3210            Text [ en-US ] = "Rate";
3211        };
3212
3213        String 9 // description of parameter 4  Oddlyield
3214        {
3215            Text [ en-US ] = "The rate";
3216        };
3217
3218        String 10 // name of parameter 5        Oddlyield
3219        {
3220            Text [ en-US ] = "Price";
3221        };
3222
3223        String 11 // description of parameter 5 Oddlyield
3224        {
3225            Text [ en-US ] = "The price";
3226        };
3227
3228        String 12 // name of parameter 6        Oddlyield
3229        {
3230            Text [ en-US ] = "Redemption";
3231        };
3232
3233        String 13 // description of parameter 6 Oddlyield
3234        {
3235            Text [ en-US ] = "The redemption value";
3236        };
3237
3238        String 14 // name of parameter 7        Oddlyield
3239        {
3240            Text [ en-US ] = "Frequency";
3241        };
3242
3243        String 15 // description of parameter 7 Oddlyield
3244        {
3245            Text [ en-US ] = "The frequency";
3246        };
3247
3248        String 16 // name of parameter 8        Oddlyield
3249        {
3250            Text [ en-US ] = "Basis";
3251        };
3252
3253        String 17 // description of parameter 8 Oddlyield
3254        {
3255            Text [ en-US ] = "The basis";
3256        };
3257    };
3258
3259    Resource ANALYSIS_Xirr
3260    {
3261        String 1    // description Xirr
3262        {
3263            Text [ en-US ] = "Returns the internal rate of return for a non-periodic schedule of payments";
3264        };
3265
3266        String 2 // name of parameter 1         Xirr
3267        {
3268            Text [ en-US ] = "Values";
3269        };
3270
3271        String 3 // description of parameter 1  Xirr
3272        {
3273            Text [ en-US ] = "The values";
3274        };
3275
3276        String 4 // name of parameter 2         Xirr
3277        {
3278            Text [ en-US ] = "Dates";
3279        };
3280
3281        String 5 // description of parameter 2  Xirr
3282        {
3283            Text [ en-US ] = "The dates";
3284        };
3285
3286        String 6 // name of parameter 3         Xirr
3287        {
3288            Text [ en-US ] = "Guess";
3289        };
3290
3291        String 7 // description of parameter 3  Xirr
3292        {
3293            Text [ en-US ] = "The guess";
3294        };
3295    };
3296
3297    Resource ANALYSIS_Xnpv
3298    {
3299        String 1    // description Xnpv
3300        {
3301            Text [ en-US ] = "Returns the net present value for a non-periodic schedule of payments";
3302        };
3303
3304        String 2 // name of parameter 1         Xnpv
3305        {
3306            Text [ en-US ] = "Rate";
3307        };
3308
3309        String 3 // description of parameter 1  Xnpv
3310        {
3311            Text [ en-US ] = "The rate";
3312        };
3313
3314        String 4 // name of parameter 2         Xnpv
3315        {
3316            Text [ en-US ] = "Values";
3317        };
3318
3319        String 5 // description of parameter 2  Xnpv
3320        {
3321            Text [ en-US ] = "The values";
3322        };
3323
3324        String 6 // name of parameter 3         Xnpv
3325        {
3326            Text [ en-US ] = "Dates";
3327        };
3328
3329        String 7 // description of parameter 3  Xnpv
3330        {
3331            Text [ en-US ] = "The dates";
3332        };
3333    };
3334
3335    Resource ANALYSIS_Intrate
3336    {
3337        String 1    // description Intrate
3338        {
3339            Text [ en-US ] = "Returns the interest rate for a fully invested security";
3340        };
3341
3342        String 2 // name of parameter 1         Intrate
3343        {
3344            Text [ en-US ] = "Settlement";
3345        };
3346
3347        String 3 // description of parameter 1  Intrate
3348        {
3349            Text [ en-US ] = "The settlement";
3350        };
3351
3352        String 4 // name of parameter 2         Intrate
3353        {
3354            Text [ en-US ] = "Maturity";
3355        };
3356
3357        String 5 // description of parameter 2  Intrate
3358        {
3359            Text [ en-US ] = "The maturity";
3360        };
3361
3362        String 6 // name of parameter 3         Intrate
3363        {
3364            Text [ en-US ] = "Investment";
3365        };
3366
3367        String 7 // description of parameter 3  Intrate
3368        {
3369            Text [ en-US ] = "The investment";
3370        };
3371
3372        String 8 // name of parameter 4         Intrate
3373        {
3374            Text [ en-US ] = "Redemption";
3375        };
3376
3377        String 9 // description of parameter 4  Intrate
3378        {
3379            Text [ en-US ] = "The redemption value";
3380        };
3381
3382        String 10 // name of parameter 5        Intrate
3383        {
3384            Text [ en-US ] = "Basis";
3385        };
3386
3387        String 11 // description of parameter 5 Intrate
3388        {
3389            Text [ en-US ] = "The basis";
3390        };
3391    };
3392
3393    Resource ANALYSIS_Coupncd
3394    {
3395        String 1    // description Coupncd
3396        {
3397            Text [ en-US ] = "Returns the first coupon date after the settlement date";
3398        };
3399
3400        String 2 // name of parameter 1         Coupncd
3401        {
3402            Text [ en-US ] = "Settlement";
3403        };
3404
3405        String 3 // description of parameter 1  Coupncd
3406        {
3407            Text [ en-US ] = "The settlement";
3408        };
3409
3410        String 4 // name of parameter 2         Coupncd
3411        {
3412            Text [ en-US ] = "Maturity";
3413        };
3414
3415        String 5 // description of parameter 2  Coupncd
3416        {
3417            Text [ en-US ] = "The maturity";
3418        };
3419
3420        String 6 // name of parameter 3         Coupncd
3421        {
3422            Text [ en-US ] = "Frequency";
3423        };
3424
3425        String 7 // description of parameter 3  Coupncd
3426        {
3427            Text [ en-US ] = "The frequency";
3428        };
3429
3430        String 8 // name of parameter 4         Coupncd
3431        {
3432            Text [ en-US ] = "Basis";
3433        };
3434
3435        String 9 // description of parameter 4  Coupncd
3436        {
3437            Text [ en-US ] = "The basis";
3438        };
3439    };
3440
3441    Resource ANALYSIS_Coupdays
3442    {
3443        String 1    // description Coupdays
3444        {
3445            Text [ en-US ] = "Returns the number of days in the coupon period containing the settlement date";
3446        };
3447
3448        String 2 // name of parameter 1         Coupdays
3449        {
3450            Text [ en-US ] = "Settlement";
3451        };
3452
3453        String 3 // description of parameter 1  Coupdays
3454        {
3455            Text [ en-US ] = "The settlement";
3456        };
3457
3458        String 4 // name of parameter 2         Coupdays
3459        {
3460            Text [ en-US ] = "Maturity";
3461        };
3462
3463        String 5 // description of parameter 2  Coupdays
3464        {
3465            Text [ en-US ] = "The maturity";
3466        };
3467
3468        String 6 // name of parameter 3         Coupdays
3469        {
3470            Text [ en-US ] = "Frequency";
3471        };
3472
3473        String 7 // description of parameter 3  Coupdays
3474        {
3475            Text [ en-US ] = "The frequency";
3476        };
3477
3478        String 8 // name of parameter 4         Coupdays
3479        {
3480            Text [ en-US ] = "Basis";
3481        };
3482
3483        String 9 // description of parameter 4  Coupdays
3484        {
3485            Text [ en-US ] = "The basis";
3486        };
3487    };
3488
3489    Resource ANALYSIS_Coupdaysnc
3490    {
3491        String 1    // description Coupdaysnc
3492        {
3493            Text [ en-US ] = "Returns the number of days from the settlement date to the next coupon date";
3494        };
3495
3496        String 2 // name of parameter 1         Coupdaysnc
3497        {
3498            Text [ en-US ] = "Settlement";
3499        };
3500
3501        String 3 // description of parameter 1  Coupdaysnc
3502        {
3503            Text [ en-US ] = "The settlement";
3504        };
3505
3506        String 4 // name of parameter 2         Coupdaysnc
3507        {
3508            Text [ en-US ] = "Maturity";
3509        };
3510
3511        String 5 // description of parameter 2  Coupdaysnc
3512        {
3513            Text [ en-US ] = "The maturity";
3514        };
3515
3516        String 6 // name of parameter 3         Coupdaysnc
3517        {
3518            Text [ en-US ] = "Frequency";
3519        };
3520
3521        String 7 // description of parameter 3  Coupdaysnc
3522        {
3523            Text [ en-US ] = "The frequency";
3524        };
3525
3526        String 8 // name of parameter 4         Coupdaysnc
3527        {
3528            Text [ en-US ] = "Basis";
3529        };
3530
3531        String 9 // description of parameter 4  Coupdaysnc
3532        {
3533            Text [ en-US ] = "The basis";
3534        };
3535    };
3536
3537    Resource ANALYSIS_Coupdaybs
3538    {
3539        String 1    // description Coupdaybs
3540        {
3541            Text [ en-US ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
3542        };
3543
3544        String 2 // name of parameter 1         Coupdaybs
3545        {
3546            Text [ en-US ] = "Settlement";
3547        };
3548
3549        String 3 // description of parameter 1  Coupdaybs
3550        {
3551            Text [ en-US ] = "The settlement";
3552        };
3553
3554        String 4 // name of parameter 2         Coupdaybs
3555        {
3556            Text [ en-US ] = "Maturity";
3557        };
3558
3559        String 5 // description of parameter 2  Coupdaybs
3560        {
3561            Text [ en-US ] = "The maturity";
3562        };
3563
3564        String 6 // name of parameter 3         Coupdaybs
3565        {
3566            Text [ en-US ] = "Frequency";
3567        };
3568
3569        String 7 // description of parameter 3  Coupdaybs
3570        {
3571            Text [ en-US ] = "The frequency";
3572        };
3573
3574        String 8 // name of parameter 4         Coupdaybs
3575        {
3576            Text [ en-US ] = "Basis";
3577        };
3578
3579        String 9 // description of parameter 4  Coupdaybs
3580        {
3581            Text [ en-US ] = "The basis";
3582        };
3583    };
3584
3585    Resource ANALYSIS_Couppcd
3586    {
3587        String 1    // description Couppcd
3588        {
3589            Text [ en-US ] = "Returns the last coupon date preceding the settlement date";
3590        };
3591
3592        String 2 // name of parameter 1         Couppcd
3593        {
3594            Text [ en-US ] = "Settlement";
3595        };
3596
3597        String 3 // description of parameter 1  Couppcd
3598        {
3599            Text [ en-US ] = "The settlement";
3600        };
3601
3602        String 4 // name of parameter 2         Couppcd
3603        {
3604            Text [ en-US ] = "Maturity";
3605        };
3606
3607        String 5 // description of parameter 2  Couppcd
3608        {
3609            Text [ en-US ] = "The maturity";
3610        };
3611
3612        String 6 // name of parameter 3         Couppcd
3613        {
3614            Text [ en-US ] = "Frequency";
3615        };
3616
3617        String 7 // description of parameter 3  Couppcd
3618        {
3619            Text [ en-US ] = "The frequency";
3620        };
3621
3622        String 8 // name of parameter 4         Couppcd
3623        {
3624            Text [ en-US ] = "Basis";
3625        };
3626
3627        String 9 // description of parameter 4  Couppcd
3628        {
3629            Text [ en-US ] = "The basis";
3630        };
3631    };
3632
3633    Resource ANALYSIS_Coupnum
3634    {
3635        String 1    // description Coupnum
3636        {
3637            Text [ en-US ] = "Returns the number of coupons payable between the settlement and maturity dates";
3638        };
3639
3640        String 2 // name of parameter 1         Coupnum
3641        {
3642            Text [ en-US ] = "Settlement";
3643        };
3644
3645        String 3 // description of parameter 1  Coupnum
3646        {
3647            Text [ en-US ] = "The settlement";
3648        };
3649
3650        String 4 // name of parameter 2         Coupnum
3651        {
3652            Text [ en-US ] = "Maturity";
3653        };
3654
3655        String 5 // description of parameter 2  Coupnum
3656        {
3657            Text [ en-US ] = "The maturity";
3658        };
3659
3660        String 6 // name of parameter 3         Coupnum
3661        {
3662            Text [ en-US ] = "Frequency";
3663        };
3664
3665        String 7 // description of parameter 3  Coupnum
3666        {
3667            Text [ en-US ] = "The frequency";
3668        };
3669
3670        String 8 // name of parameter 4         Coupnum
3671        {
3672            Text [ en-US ] = "Basis";
3673        };
3674
3675        String 9 // description of parameter 4  Coupnum
3676        {
3677            Text [ en-US ] = "The basis";
3678        };
3679    };
3680
3681    Resource ANALYSIS_Fvschedule
3682    {
3683        String 1    // description Fvschedule
3684        {
3685            Text [ en-US ] = "Returns the future value of the initial principal after a series of compound interest rates are applied";
3686        };
3687
3688        String 2 // name of parameter 1         Fvschedule
3689        {
3690            Text [ en-US ] = "Principal";
3691        };
3692
3693        String 3 // description of parameter 1  Fvschedule
3694        {
3695            Text [ en-US ] = "The principal";
3696        };
3697
3698        String 4 // name of parameter 2         Fvschedule
3699        {
3700            Text [ en-US ] = "Schedule";
3701        };
3702
3703        String 5 // description of parameter 2  Fvschedule
3704        {
3705            Text [ en-US ] = "The schedule";
3706        };
3707    };
3708};
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745