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_Complex
1354	{
1355		String 1	// description Complex
1356		{
1357			Text [ en-US ] = "Converts real and imaginary coefficients into a complex number";
1358		};
1359
1360		String 2 // name of parameter 1			Complex
1361		{
1362			Text [ en-US ] = "Real num";
1363		};
1364
1365		String 3 // description of parameter 1	Complex
1366		{
1367			Text [ en-US ] = "The real coefficient";
1368		};
1369
1370		String 4 // name of parameter 2			Complex
1371		{
1372			Text [ en-US ] = "I num";
1373		};
1374
1375		String 5 // description of parameter 2	Complex
1376		{
1377			Text [ en-US ] = "The imaginary coefficient";
1378		};
1379
1380		String 6 // name of parameter 3			Complex
1381		{
1382			Text [ en-US ] = "Suffix";
1383		};
1384
1385		String 7 // description of parameter 3	Complex
1386		{
1387			Text [ en-US ] = "The suffix";
1388		};
1389	};
1390
1391    Resource ANALYSIS_Convert
1392	{
1393		String 1	// description Convert_add
1394		{
1395			Text [ en-US ] = "Converts a number from one measurement system to another";
1396		};
1397
1398		String 2 // name of parameter 1			Convert_add
1399		{
1400			Text [ en-US ] = "Number";
1401		};
1402
1403		String 3 // description of parameter 1	Convert_add
1404		{
1405			Text [ en-US ] = "The number";
1406		};
1407
1408		String 4 // name of parameter 2			Convert_add
1409		{
1410			Text [ en-US ] = "From unit";
1411		};
1412
1413		String 5 // description of parameter 2	Convert_add
1414		{
1415			Text [ en-US ] = "Unit of measure for number";
1416		};
1417
1418		String 6 // name of parameter 3			Convert_add
1419		{
1420			Text [ en-US ] = "To unit";
1421		};
1422
1423		String 7 // description of parameter 3	Convert_add
1424		{
1425			Text [ en-US ] = "Unit of measure for the result";
1426		};
1427	};
1428
1429	Resource ANALYSIS_Amordegrc
1430	{
1431		String 1	// description Amordegrc
1432		{
1433			Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1434		};
1435
1436		String 2 // name of parameter 1			Amordegrc
1437		{
1438			Text [ en-US ] = "Cost";
1439		};
1440
1441		String 3 // description of parameter 1	Amordegrc
1442		{
1443			Text [ en-US ] = "Cost of the asset";
1444		};
1445
1446		String 4 // name of parameter 2			Amordegrc
1447		{
1448			Text [ en-US ] = "Date purchased";
1449		};
1450
1451		String 5 // description of parameter 2	Amordegrc
1452		{
1453			Text [ en-US ] = "Purchase date of the asset";
1454		};
1455
1456		String 6 // name of parameter 3			Amordegrc
1457		{
1458			Text [ en-US ] = "First period";
1459		};
1460
1461		String 7 // description of parameter 3	Amordegrc
1462		{
1463			Text [ en-US ] = "Date the first period ends";
1464		};
1465
1466		String 8 // name of parameter 4			Amordegrc
1467		{
1468			Text [ en-US ] = "Salvage";
1469		};
1470
1471		String 9 // description of parameter 4	Amordegrc
1472		{
1473			Text [ en-US ] = "Salvage value of an asset at the end of its life";
1474		};
1475
1476		String 10 // name of parameter 5		Amordegrc
1477		{
1478			Text [ en-US ] = "Period";
1479		};
1480
1481		String 11 // description of parameter 5	Amordegrc
1482		{
1483			Text [ en-US ] = "The period";
1484		};
1485
1486		String 12 // name of parameter 6		Amordegrc
1487		{
1488			Text [ en-US ] = "Rate";
1489		};
1490
1491		String 13 // description of parameter 6	Amordegrc
1492		{
1493			Text [ en-US ] = "The rate of depreciation";
1494		};
1495
1496		String 14 // name of parameter 7		Amordegrc
1497		{
1498			Text [ en-US ] = "Basis";
1499		};
1500
1501		String 15 // description of parameter 7	Amordegrc
1502		{
1503			Text [ en-US ] = "The year basis to be used";
1504		};
1505	};
1506
1507	Resource ANALYSIS_Amorlinc
1508	{
1509		String 1	// description Amorlinc
1510		{
1511			Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1512		};
1513
1514		String 2 // name of parameter 1			Amorlinc
1515		{
1516			Text [ en-US ] = "Cost";
1517		};
1518
1519		String 3 // description of parameter 1	Amorlinc
1520		{
1521			Text [ en-US ] = "Cost of the asset";
1522		};
1523
1524		String 4 // name of parameter 2			Amorlinc
1525		{
1526			Text [ en-US ] = "Date purchased";
1527		};
1528
1529		String 5 // description of parameter 2	Amorlinc
1530		{
1531			Text [ en-US ] = "Purchase date of the asset";
1532		};
1533
1534		String 6 // name of parameter 3			Amorlinc
1535		{
1536			Text [ en-US ] = "First period";
1537		};
1538
1539		String 7 // description of parameter 3	Amorlinc
1540		{
1541			Text [ en-US ] = "The date the first period ends";
1542		};
1543
1544		String 8 // name of parameter 4			Amorlinc
1545		{
1546			Text [ en-US ] = "Salvage";
1547		};
1548
1549		String 9 // description of parameter 4	Amorlinc
1550		{
1551			Text [ en-US ] = "The salvage value of an asset at the end of its life";
1552		};
1553
1554		String 10 // name of parameter 5		Amorlinc
1555		{
1556			Text [ en-US ] = "Period";
1557		};
1558
1559		String 11 // description of parameter 5	Amorlinc
1560		{
1561			Text [ en-US ] = "The period";
1562		};
1563
1564		String 12 // name of parameter 6		Amorlinc
1565		{
1566			Text [ en-US ] = "Rate";
1567		};
1568
1569		String 13 // description of parameter 6	Amorlinc
1570		{
1571			Text [ en-US ] = "The rate of depreciation";
1572		};
1573
1574		String 14 // name of parameter 7		Amorlinc
1575		{
1576			Text [ en-US ] = "Basis";
1577		};
1578
1579		String 15 // description of parameter 7	Amorlinc
1580		{
1581			Text [ en-US ] = "The year basis to be used";
1582		};
1583	};
1584
1585	Resource ANALYSIS_Accrint
1586	{
1587		String 1	// description Accrint
1588		{
1589			Text [ en-US ] = "Returns the accrued interest for a security that pays periodic interest";
1590		};
1591
1592		String 2 // name of parameter 1			Accrint
1593		{
1594			Text [ en-US ] = "Issue";
1595		};
1596
1597		String 3 // description of parameter 1	Accrint
1598		{
1599			Text [ en-US ] = "Issue date of the security";
1600		};
1601
1602		String 4 // name of parameter 2			Accrint
1603		{
1604			Text [ en-US ] = "First interest";
1605		};
1606
1607		String 5 // description of parameter 2	Accrint
1608		{
1609			Text [ en-US ] = "First interest date of the security";
1610		};
1611
1612		String 6 // name of parameter 3			Accrint
1613		{
1614			Text [ en-US ] = "Settlement";
1615		};
1616
1617		String 7 // description of parameter 3	Accrint
1618		{
1619			Text [ en-US ] = "The settlement";
1620		};
1621
1622		String 8 // name of parameter 4			Accrint
1623		{
1624			Text [ en-US ] = "Rate";
1625		};
1626
1627		String 9 // description of parameter 4	Accrint
1628		{
1629			Text [ en-US ] = "The rate";
1630		};
1631
1632		String 10 // name of parameter 5		Accrint
1633		{
1634			Text [ en-US ] = "Par";
1635		};
1636
1637		String 11 // description of parameter 5	Accrint
1638		{
1639			Text [ en-US ] = "The par value";
1640		};
1641
1642		String 12 // name of parameter 6		Accrint
1643		{
1644			Text [ en-US ] = "Frequency";
1645		};
1646
1647		String 13 // description of parameter 6	Accrint
1648		{
1649			Text [ en-US ] = "The frequency";
1650		};
1651
1652		String 14 // name of parameter 7		Accrint
1653		{
1654			Text [ en-US ] = "Basis";
1655		};
1656
1657		String 15 // description of parameter 7	Accrint
1658		{
1659			Text [ en-US ] = "The basis";
1660		};
1661	};
1662
1663	Resource ANALYSIS_Accrintm
1664	{
1665		String 1	// description Accrintm
1666		{
1667			Text [ en-US ] = "Returns the accrued interest for a security that pays interest at maturity";
1668		};
1669
1670		String 2 // name of parameter 1			Accrintm
1671		{
1672			Text [ en-US ] = "Issue";
1673		};
1674
1675		String 3 // description of parameter 1	Accrintm
1676		{
1677			Text [ en-US ] = "The issue date";
1678		};
1679
1680		String 4 // name of parameter 2			Accrintm
1681		{
1682			Text [ en-US ] = "Settlement";
1683		};
1684
1685		String 5 // description of parameter 2	Accrintm
1686		{
1687			Text [ en-US ] = "The settlement";
1688		};
1689
1690		String 6 // name of parameter 3			Accrintm
1691		{
1692			Text [ en-US ] = "Rate";
1693		};
1694
1695		String 7 // description of parameter 3	Accrintm
1696		{
1697			Text [ en-US ] = "The rate";
1698		};
1699
1700		String 8 // name of parameter 4			Accrintm
1701		{
1702			Text [ en-US ] = "Par";
1703		};
1704
1705		String 9 // description of parameter 4	Accrintm
1706		{
1707			Text [ en-US ] = "The par value";
1708		};
1709
1710		String 10 // name of parameter 5		Accrintm
1711		{
1712			Text [ en-US ] = "Basis";
1713		};
1714
1715		String 11 // description of parameter 5	Accrintm
1716		{
1717			Text [ en-US ] = "The basis";
1718		};
1719	};
1720
1721	Resource ANALYSIS_Received
1722	{
1723		String 1	// description Received
1724		{
1725			Text [ en-US ] = "Returns the amount paid out at maturity for a fully invested security";
1726		};
1727
1728		String 2 // name of parameter 1			Received
1729		{
1730			Text [ en-US ] = "Settlement";
1731		};
1732
1733		String 3 // description of parameter 1	Received
1734		{
1735			Text [ en-US ] = "The settlement";
1736		};
1737
1738		String 4 // name of parameter 2			Received
1739		{
1740			Text [ en-US ] = "Maturity";
1741		};
1742
1743		String 5 // description of parameter 2	Received
1744		{
1745			Text [ en-US ] = "The maturity";
1746		};
1747
1748		String 6 // name of parameter 3			Received
1749		{
1750			Text [ en-US ] = "Investment";
1751		};
1752
1753		String 7 // description of parameter 3	Received
1754		{
1755			Text [ en-US ] = "The investment";
1756		};
1757
1758		String 8 // name of parameter 4			Received
1759		{
1760			Text [ en-US ] = "Discount";
1761		};
1762
1763		String 9 // description of parameter 4	Received
1764		{
1765			Text [ en-US ] = "The discount";
1766		};
1767
1768		String 10 // name of parameter 5		Received
1769		{
1770			Text [ en-US ] = "Basis";
1771		};
1772
1773		String 11 // description of parameter 5	Received
1774		{
1775			Text [ en-US ] = "The basis";
1776		};
1777	};
1778
1779	Resource ANALYSIS_Disc
1780	{
1781		String 1	// description Disc
1782		{
1783			Text [ en-US ] = "Returns the discount rate for a security";
1784		};
1785
1786		String 2 // name of parameter 1			Disc
1787		{
1788			Text [ en-US ] = "Settlement";
1789		};
1790
1791		String 3 // description of parameter 1	Disc
1792		{
1793			Text [ en-US ] = "The settlement";
1794		};
1795
1796		String 4 // name of parameter 2			Disc
1797		{
1798			Text [ en-US ] = "Maturity";
1799		};
1800
1801		String 5 // description of parameter 2	Disc
1802		{
1803			Text [ en-US ] = "The maturity";
1804		};
1805
1806		String 6 // name of parameter 3			Disc
1807		{
1808			Text [ en-US ] = "Price";
1809		};
1810
1811		String 7 // description of parameter 3	Disc
1812		{
1813			Text [ en-US ] = "The price";
1814		};
1815
1816		String 8 // name of parameter 4			Disc
1817		{
1818			Text [ en-US ] = "Redemption";
1819		};
1820
1821		String 9 // description of parameter 4	Disc
1822		{
1823			Text [ en-US ] = "The redemption value";
1824		};
1825
1826		String 10 // name of parameter 5		Disc
1827		{
1828			Text [ en-US ] = "Basis";
1829		};
1830
1831		String 11 // description of parameter 5	Disc
1832		{
1833			Text [ en-US ] = "The basis";
1834		};
1835	};
1836
1837	Resource ANALYSIS_Duration
1838	{
1839		String 1	// description Duration
1840		{
1841			Text [ en-US ] = "Returns the annual Macaulay duration of a security with periodic interest payments";
1842		};
1843
1844		String 2 // name of parameter 1			Duration
1845		{
1846			Text [ en-US ] = "Settlement";
1847		};
1848
1849		String 3 // description of parameter 1	Duration
1850		{
1851			Text [ en-US ] = "The settlement";
1852		};
1853
1854		String 4 // name of parameter 2			Duration
1855		{
1856			Text [ en-US ] = "Maturity";
1857		};
1858
1859		String 5 // description of parameter 2	Duration
1860		{
1861			Text [ en-US ] = "The maturity";
1862		};
1863
1864		String 6 // name of parameter 3			Duration
1865		{
1866			Text [ en-US ] = "Coupon";
1867		};
1868
1869		String 7 // description of parameter 3	Duration
1870		{
1871			Text [ en-US ] = "The coupon rate";
1872		};
1873
1874		String 8 // name of parameter 4			Duration
1875		{
1876			Text [ en-US ] = "Yield";
1877		};
1878
1879		String 9 // description of parameter 4	Duration
1880		{
1881			Text [ en-US ] = "The yield";
1882		};
1883
1884		String 10 // name of parameter 5		Duration
1885		{
1886			Text [ en-US ] = "Frequency";
1887		};
1888
1889		String 11 // description of parameter 5	Duration
1890		{
1891			Text [ en-US ] = "The frequency";
1892		};
1893
1894		String 12 // name of parameter 6		Duration
1895		{
1896			Text [ en-US ] = "Basis";
1897		};
1898
1899		String 13 // description of parameter 6	Duration
1900		{
1901			Text [ en-US ] = "The basis";
1902		};
1903	};
1904
1905    Resource ANALYSIS_Effect
1906	{
1907		String 1	// description Effect_add
1908		{
1909			Text [ en-US ] = "Returns the effective annual interest rate";
1910		};
1911
1912		String 2 // name of parameter 1			Effect_add
1913		{
1914			Text [ en-US ] = "Nominal rate";
1915		};
1916
1917		String 3 // description of parameter 1	Effect_add
1918		{
1919			Text [ en-US ] = "The nominal rate";
1920		};
1921
1922		String 4 // name of parameter 2			Effect_add
1923		{
1924			Text [ en-US ] = "Npery";
1925		};
1926
1927		String 5 // description of parameter 2	Effect_add
1928		{
1929			Text [ en-US ] = "The periods";
1930		};
1931	};
1932
1933    Resource ANALYSIS_Cumprinc
1934	{
1935		String 1	// description Cumprinc_add
1936		{
1937			Text [ en-US ] = "Returns the cumulative principal on a loan to be paid between two periods";
1938		};
1939
1940		String 2 // name of parameter 1			Cumprinc_add
1941		{
1942			Text [ en-US ] = "Rate";
1943		};
1944
1945		String 3 // description of parameter 1	Cumprinc_add
1946		{
1947			Text [ en-US ] = "The rate";
1948		};
1949
1950		String 4 // name of parameter 2			Cumprinc_add
1951		{
1952			Text [ en-US ] = "Nper";
1953		};
1954
1955		String 5 // description of parameter 2	Cumprinc_add
1956		{
1957			Text [ en-US ] = "Number of payment periods";
1958		};
1959
1960		String 6 // name of parameter 3			Cumprinc_add
1961		{
1962			Text [ en-US ] = "Pv";
1963		};
1964
1965		String 7 // description of parameter 3	Cumprinc_add
1966		{
1967			Text [ en-US ] = "The present value";
1968		};
1969
1970		String 8 // name of parameter 4			Cumprinc_add
1971		{
1972			Text [ en-US ] = "Start period";
1973		};
1974
1975		String 9 // description of parameter 4	Cumprinc_add
1976		{
1977			Text [ en-US ] = "The start period";
1978		};
1979
1980		String 10 // name of parameter 5		Cumprinc_add
1981		{
1982			Text [ en-US ] = "End period";
1983		};
1984
1985		String 11 // description of parameter 5	Cumprinc_add
1986		{
1987			Text [ en-US ] = "The end period";
1988		};
1989
1990		String 12 // name of parameter 6		Cumprinc_add
1991		{
1992			Text [ en-US ] = "Type";
1993		};
1994
1995		String 13 // description of parameter 6	Cumprinc_add
1996		{
1997			Text [ en-US ] = "The type of maturity";
1998		};
1999	};
2000
2001    Resource ANALYSIS_Cumipmt
2002	{
2003		String 1	// description Cumipmt_add
2004		{
2005			Text [ en-US ] = "Returns the cumulative interest to be paid between two periods";
2006		};
2007
2008		String 2 // name of parameter 1			Cumipmt_add
2009		{
2010			Text [ en-US ] = "Rate";
2011		};
2012
2013		String 3 // description of parameter 1	Cumipmt_add
2014		{
2015			Text [ en-US ] = "The rate";
2016		};
2017
2018		String 4 // name of parameter 2			Cumipmt_add
2019		{
2020			Text [ en-US ] = "Nper";
2021		};
2022
2023		String 5 // description of parameter 2	Cumipmt_add
2024		{
2025			Text [ en-US ] = "Number of payment periods";
2026		};
2027
2028		String 6 // name of parameter 3			Cumipmt_add
2029		{
2030			Text [ en-US ] = "Pv";
2031		};
2032
2033		String 7 // description of parameter 3	Cumipmt_add
2034		{
2035			Text [ en-US ] = "The present value";
2036		};
2037
2038		String 8 // name of parameter 4			Cumipmt_add
2039		{
2040			Text [ en-US ] = "Start period";
2041		};
2042
2043		String 9 // description of parameter 4	Cumipmt_add
2044		{
2045			Text [ en-US ] = "The start period";
2046		};
2047
2048		String 10 // name of parameter 5		Cumipmt_add
2049		{
2050			Text [ en-US ] = "End period";
2051		};
2052
2053		String 11 // description of parameter 5	Cumipmt_add
2054		{
2055			Text [ en-US ] = "The end period";
2056		};
2057
2058		String 12 // name of parameter 6		Cumipmt_add
2059		{
2060			Text [ en-US ] = "Type";
2061		};
2062
2063		String 13 // description of parameter 6	Cumipmt_add
2064		{
2065			Text [ en-US ] = "The type of maturity";
2066		};
2067	};
2068
2069	Resource ANALYSIS_Price
2070	{
2071		String 1	// description Price
2072		{
2073			Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays periodic interest";
2074		};
2075
2076		String 2 // name of parameter 1			Price
2077		{
2078			Text [ en-US ] = "Settlement";
2079		};
2080
2081		String 3 // description of parameter 1	Price
2082		{
2083			Text [ en-US ] = "The settlement";
2084		};
2085
2086		String 4 // name of parameter 2			Price
2087		{
2088			Text [ en-US ] = "Maturity";
2089		};
2090
2091		String 5 // description of parameter 2	Price
2092		{
2093			Text [ en-US ] = "The maturity";
2094		};
2095
2096		String 6 // name of parameter 3			Price
2097		{
2098			Text [ en-US ] = "Rate";
2099		};
2100
2101		String 7 // description of parameter 3	Price
2102		{
2103			Text [ en-US ] = "The rate";
2104		};
2105
2106		String 8 // name of parameter 4			Price
2107		{
2108			Text [ en-US ] = "Yield";
2109		};
2110
2111		String 9 // description of parameter 4	Price
2112		{
2113			Text [ en-US ] = "The yield";
2114		};
2115
2116		String 10 // name of parameter 5		Price
2117		{
2118			Text [ en-US ] = "Redemption";
2119		};
2120
2121		String 11 // description of parameter 5	Price
2122		{
2123			Text [ en-US ] = "The redemption value";
2124		};
2125
2126		String 12 // name of parameter 6		Price
2127		{
2128			Text [ en-US ] = "Frequency";
2129		};
2130
2131		String 13 // description of parameter 6	Price
2132		{
2133			Text [ en-US ] = "The frequency";
2134		};
2135
2136		String 14 // name of parameter 7		Price
2137		{
2138			Text [ en-US ] = "Basis";
2139		};
2140
2141		String 15 // description of parameter 7	Price
2142		{
2143			Text [ en-US ] = "The basis";
2144		};
2145	};
2146
2147	Resource ANALYSIS_Pricedisc
2148	{
2149		String 1	// description Pricedisc
2150		{
2151			Text [ en-US ] = "Returns the price per 100 currency units face value of a discounted security";
2152		};
2153
2154		String 2 // name of parameter 1			Pricedisc
2155		{
2156			Text [ en-US ] = "Settlement";
2157		};
2158
2159		String 3 // description of parameter 1	Pricedisc
2160		{
2161			Text [ en-US ] = "The settlement";
2162		};
2163
2164		String 4 // name of parameter 2			Pricedisc
2165		{
2166			Text [ en-US ] = "Maturity";
2167		};
2168
2169		String 5 // description of parameter 2	Pricedisc
2170		{
2171			Text [ en-US ] = "The maturity";
2172		};
2173
2174		String 6 // name of parameter 3			Pricedisc
2175		{
2176			Text [ en-US ] = "Discount";
2177		};
2178
2179		String 7 // description of parameter 3	Pricedisc
2180		{
2181			Text [ en-US ] = "The discount";
2182		};
2183
2184		String 8 // name of parameter 4			Pricedisc
2185		{
2186			Text [ en-US ] = "Redemption";
2187		};
2188
2189		String 9 // description of parameter 4	Pricedisc
2190		{
2191			Text [ en-US ] = "The redemption value";
2192		};
2193
2194		String 10 // name of parameter 5		Pricedisc
2195		{
2196			Text [ en-US ] = "Basis";
2197		};
2198
2199		String 11 // description of parameter 5	Pricedisc
2200		{
2201			Text [ en-US ] = "The basis";
2202		};
2203	};
2204
2205	Resource ANALYSIS_Pricemat
2206	{
2207		String 1	// description Pricemat
2208		{
2209			Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays interest at maturity";
2210		};
2211
2212		String 2 // name of parameter 1			Pricemat
2213		{
2214			Text [ en-US ] = "Settlement";
2215		};
2216
2217		String 3 // description of parameter 1	Pricemat
2218		{
2219			Text [ en-US ] = "The settlement";
2220		};
2221
2222		String 4 // name of parameter 2			Pricemat
2223		{
2224			Text [ en-US ] = "Maturity";
2225		};
2226
2227		String 5 // description of parameter 2	Pricemat
2228		{
2229			Text [ en-US ] = "The maturity";
2230		};
2231
2232		String 6 // name of parameter 3			Pricemat
2233		{
2234			Text [ en-US ] = "Issue";
2235		};
2236
2237		String 7 // description of parameter 3	Pricemat
2238		{
2239			Text [ en-US ] = "The issue date";
2240		};
2241
2242		String 8 // name of parameter 4			Pricemat
2243		{
2244			Text [ en-US ] = "Rate";
2245		};
2246
2247		String 9 // description of parameter 4	Pricemat
2248		{
2249			Text [ en-US ] = "The rate";
2250		};
2251
2252		String 10 // name of parameter 5		Pricemat
2253		{
2254			Text [ en-US ] = "Yield";
2255		};
2256
2257		String 11 // description of parameter 5	Pricemat
2258		{
2259			Text [ en-US ] = "The yield";
2260		};
2261
2262		String 12 // name of parameter 6		Pricemat
2263		{
2264			Text [ en-US ] = "Basis";
2265		};
2266
2267		String 13 // description of parameter 6	Pricemat
2268		{
2269			Text [ en-US ] = "The basis";
2270		};
2271	};
2272
2273	Resource ANALYSIS_Mduration
2274	{
2275		String 1	// description Mduration
2276		{
2277			Text [ en-US ] = "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units";
2278		};
2279
2280		String 2 // name of parameter 1			Mduration
2281		{
2282			Text [ en-US ] = "Settlement";
2283		};
2284
2285		String 3 // description of parameter 1	Mduration
2286		{
2287			Text [ en-US ] = "The settlement";
2288		};
2289
2290		String 4 // name of parameter 2			Mduration
2291		{
2292			Text [ en-US ] = "Maturity";
2293		};
2294
2295		String 5 // description of parameter 2	Mduration
2296		{
2297			Text [ en-US ] = "The maturity";
2298		};
2299
2300		String 6 // name of parameter 3			Mduration
2301		{
2302			Text [ en-US ] = "Coupon";
2303		};
2304
2305		String 7 // description of parameter 3	Mduration
2306		{
2307			Text [ en-US ] = "The coupon rate";
2308		};
2309
2310		String 8 // name of parameter 4			Mduration
2311		{
2312			Text [ en-US ] = "Yield";
2313		};
2314
2315		String 9 // description of parameter 4	Mduration
2316		{
2317			Text [ en-US ] = "The yield";
2318		};
2319
2320		String 10 // name of parameter 5		Mduration
2321		{
2322			Text [ en-US ] = "Frequency";
2323		};
2324
2325		String 11 // description of parameter 5	Mduration
2326		{
2327			Text [ en-US ] = "The frequency";
2328		};
2329
2330		String 12 // name of parameter 6		Mduration
2331		{
2332			Text [ en-US ] = "Basis";
2333		};
2334
2335		String 13 // description of parameter 6	Mduration
2336		{
2337			Text [ en-US ] = "The basis";
2338		};
2339	};
2340
2341    Resource ANALYSIS_Nominal
2342	{
2343        String 1    // description Nominal_add
2344		{
2345			Text [ en-US ] = "Returns the annual nominal interest rate";
2346		};
2347
2348        String 2 // name of parameter 1         Nominal_add
2349		{
2350			Text [ en-US ] = "Effective rate";
2351		};
2352
2353        String 3 // description of parameter 1  Nominal_add
2354		{
2355			Text [ en-US ] = "The effective interest rate";
2356		};
2357
2358        String 4 // name of parameter 2         Nominal_add
2359		{
2360			Text [ en-US ] = "Npery";
2361		};
2362
2363        String 5 // description of parameter 2  Nominal_add
2364		{
2365			Text [ en-US ] = "The periods";
2366		};
2367	};
2368
2369	Resource ANALYSIS_Dollarfr
2370	{
2371		String 1	// description Dollarfr
2372		{
2373			Text [ en-US ] = "Converts a price expressed as a decimal into a price expressed as a fraction";
2374		};
2375
2376		String 2 // name of parameter 1			Dollarfr
2377		{
2378			Text [ en-US ] = "Decimal dollar";
2379		};
2380
2381		String 3 // description of parameter 1	Dollarfr
2382		{
2383			Text [ en-US ] = "The decimal number";
2384		};
2385
2386		String 4 // name of parameter 2			Dollarfr
2387		{
2388			Text [ en-US ] = "Fraction";
2389		};
2390
2391		String 5 // description of parameter 2	Dollarfr
2392		{
2393			Text [ en-US ] = "The divisor";
2394		};
2395	};
2396
2397	Resource ANALYSIS_Dollarde
2398	{
2399		String 1	// description Dollarde
2400		{
2401			Text [ en-US ] = "Converts a price expressed as a fraction into a price expressed as a decimal";
2402		};
2403
2404		String 2 // name of parameter 1			Dollarde
2405		{
2406			Text [ en-US ] = "Fractional dollar";
2407		};
2408
2409		String 3 // description of parameter 1	Dollarde
2410		{
2411			Text [ en-US ] = "The number as a fraction";
2412		};
2413
2414		String 4 // name of parameter 2			Dollarde
2415		{
2416			Text [ en-US ] = "Fraction";
2417		};
2418
2419		String 5 // description of parameter 2	Dollarde
2420		{
2421			Text [ en-US ] = "The divisor";
2422		};
2423	};
2424
2425	Resource ANALYSIS_Yield
2426	{
2427		String 1	// description Yield
2428		{
2429			Text [ en-US ] = "Returns the yield on a security that pays periodic interest";
2430		};
2431
2432		String 2 // name of parameter 1			Yield
2433		{
2434			Text [ en-US ] = "Settlement";
2435		};
2436
2437		String 3 // description of parameter 1	Yield
2438		{
2439			Text [ en-US ] = "The settlement";
2440		};
2441
2442		String 4 // name of parameter 2			Yield
2443		{
2444			Text [ en-US ] = "Maturity";
2445		};
2446
2447		String 5 // description of parameter 2	Yield
2448		{
2449			Text [ en-US ] = "The maturity";
2450		};
2451
2452		String 6 // name of parameter 3			Yield
2453		{
2454			Text [ en-US ] = "Rate";
2455		};
2456
2457		String 7 // description of parameter 3	Yield
2458		{
2459			Text [ en-US ] = "The rate";
2460		};
2461
2462		String 8 // name of parameter 4			Yield
2463		{
2464			Text [ en-US ] = "Price";
2465		};
2466
2467		String 9 // description of parameter 4	Yield
2468		{
2469			Text [ en-US ] = "The price";
2470		};
2471
2472		String 10 // name of parameter 5		Yield
2473		{
2474			Text [ en-US ] = "Redemption";
2475		};
2476
2477		String 11 // description of parameter 5	Yield
2478		{
2479			Text [ en-US ] = "The redemption value";
2480		};
2481
2482		String 12 // name of parameter 6		Yield
2483		{
2484			Text [ en-US ] = "Frequency";
2485		};
2486
2487		String 13 // description of parameter 6	Yield
2488		{
2489			Text [ en-US ] = "The frequency";
2490		};
2491
2492		String 14 // name of parameter 7		Yield
2493		{
2494			Text [ en-US ] = "Basis";
2495		};
2496
2497		String 15 // description of parameter 7	Yield
2498		{
2499			Text [ en-US ] = "The basis";
2500		};
2501	};
2502
2503	Resource ANALYSIS_Yielddisc
2504	{
2505		String 1	// description Yielddisc
2506		{
2507			Text [ en-US ] = "Returns the annual yield for a discounted security";
2508		};
2509
2510		String 2 // name of parameter 1			Yielddisc
2511		{
2512			Text [ en-US ] = "Settlement";
2513		};
2514
2515		String 3 // description of parameter 1	Yielddisc
2516		{
2517			Text [ en-US ] = "The settlement";
2518		};
2519
2520		String 4 // name of parameter 2			Yielddisc
2521		{
2522			Text [ en-US ] = "Maturity";
2523		};
2524
2525		String 5 // description of parameter 2	Yielddisc
2526		{
2527			Text [ en-US ] = "The maturity";
2528		};
2529
2530		String 6 // name of parameter 3			Yielddisc
2531		{
2532			Text [ en-US ] = "Price";
2533		};
2534
2535		String 7 // description of parameter 3	Yielddisc
2536		{
2537			Text [ en-US ] = "The price";
2538		};
2539
2540		String 8 // name of parameter 4			Yielddisc
2541		{
2542			Text [ en-US ] = "Redemption";
2543		};
2544
2545		String 9 // description of parameter 4	Yielddisc
2546		{
2547			Text [ en-US ] = "The redemption value";
2548		};
2549
2550		String 10 // name of parameter 5		Yielddisc
2551		{
2552			Text [ en-US ] = "Basis";
2553		};
2554
2555		String 11 // description of parameter 5	Yielddisc
2556		{
2557			Text [ en-US ] = "The basis";
2558		};
2559	};
2560
2561	Resource ANALYSIS_Yieldmat
2562	{
2563		String 1	// description Yieldmat
2564		{
2565			Text [ en-US ] = "Returns the annual yield of a security that pays interest at maturity";
2566		};
2567
2568		String 2 // name of parameter 1			Yieldmat
2569		{
2570			Text [ en-US ] = "Settlement";
2571		};
2572
2573		String 3 // description of parameter 1	Yieldmat
2574		{
2575			Text [ en-US ] = "The settlement";
2576		};
2577
2578		String 4 // name of parameter 2			Yieldmat
2579		{
2580			Text [ en-US ] = "Maturity";
2581		};
2582
2583		String 5 // description of parameter 2	Yieldmat
2584		{
2585			Text [ en-US ] = "The maturity";
2586		};
2587
2588		String 6 // name of parameter 3			Yieldmat
2589		{
2590			Text [ en-US ] = "Issue";
2591		};
2592
2593		String 7 // description of parameter 3	Yieldmat
2594		{
2595			Text [ en-US ] = "The issue date";
2596		};
2597
2598		String 8 // name of parameter 4			Yieldmat
2599		{
2600			Text [ en-US ] = "Rate";
2601		};
2602
2603		String 9 // description of parameter 4	Yieldmat
2604		{
2605			Text [ en-US ] = "The rate";
2606		};
2607
2608		String 10 // name of parameter 5		Yieldmat
2609		{
2610			Text [ en-US ] = "Price";
2611		};
2612
2613		String 11 // description of parameter 5	Yieldmat
2614		{
2615			Text [ en-US ] = "The price";
2616		};
2617
2618		String 12 // name of parameter 6		Yieldmat
2619		{
2620			Text [ en-US ] = "Basis";
2621		};
2622
2623		String 13 // description of parameter 6	Yieldmat
2624		{
2625			Text [ en-US ] = "The basis";
2626		};
2627	};
2628
2629	Resource ANALYSIS_Tbilleq
2630	{
2631		String 1	// description Tbilleq
2632		{
2633			Text [ en-US ] = "Returns the bond-equivalent yield for a treasury bill";
2634		};
2635
2636		String 2 // name of parameter 1			Tbilleq
2637		{
2638			Text [ en-US ] = "Settlement";
2639		};
2640
2641		String 3 // description of parameter 1	Tbilleq
2642		{
2643			Text [ en-US ] = "The settlement";
2644		};
2645
2646		String 4 // name of parameter 2			Tbilleq
2647		{
2648			Text [ en-US ] = "Maturity";
2649		};
2650
2651		String 5 // description of parameter 2	Tbilleq
2652		{
2653			Text [ en-US ] = "The maturity";
2654		};
2655
2656		String 6 // name of parameter 3			Tbilleq
2657		{
2658			Text [ en-US ] = "Discount";
2659		};
2660
2661		String 7 // description of parameter 3	Tbilleq
2662		{
2663			Text [ en-US ] = "The discount rate";
2664		};
2665	};
2666
2667	Resource ANALYSIS_Tbillprice
2668	{
2669		String 1	// description Tbillprice
2670		{
2671			Text [ en-US ] = "Returns the price of 100 currency units face value for a treasury bill";
2672		};
2673
2674		String 2 // name of parameter 1			Tbillprice
2675		{
2676			Text [ en-US ] = "Settlement";
2677		};
2678
2679		String 3 // description of parameter 1	Tbillprice
2680		{
2681			Text [ en-US ] = "The settlement";
2682		};
2683
2684		String 4 // name of parameter 2			Tbillprice
2685		{
2686			Text [ en-US ] = "Maturity";
2687		};
2688
2689		String 5 // description of parameter 2	Tbillprice
2690		{
2691			Text [ en-US ] = "The maturity";
2692		};
2693
2694		String 6 // name of parameter 3			Tbillprice
2695		{
2696			Text [ en-US ] = "Discount";
2697		};
2698
2699		String 7 // description of parameter 3	Tbillprice
2700		{
2701			Text [ en-US ] = "The discount rate";
2702		};
2703	};
2704
2705	Resource ANALYSIS_Tbillyield
2706	{
2707		String 1	// description Tbillyield
2708		{
2709			Text [ en-US ] = "Returns the yield for a treasury bill";
2710		};
2711
2712		String 2 // name of parameter 1			Tbillyield
2713		{
2714			Text [ en-US ] = "Settlement";
2715		};
2716
2717		String 3 // description of parameter 1	Tbillyield
2718		{
2719			Text [ en-US ] = "The settlement";
2720		};
2721
2722		String 4 // name of parameter 2			Tbillyield
2723		{
2724			Text [ en-US ] = "Maturity";
2725		};
2726
2727		String 5 // description of parameter 2	Tbillyield
2728		{
2729			Text [ en-US ] = "The maturity";
2730		};
2731
2732		String 6 // name of parameter 3			Tbillyield
2733		{
2734			Text [ en-US ] = "Price";
2735		};
2736
2737		String 7 // description of parameter 3	Tbillyield
2738		{
2739			Text [ en-US ] = "The price";
2740		};
2741	};
2742
2743	Resource ANALYSIS_Oddfprice
2744	{
2745		String 1	// description Oddfprice
2746		{
2747			Text [ en-US ] = "Returns the price per $100 face value of a security with an odd first period";
2748		};
2749
2750		String 2 // name of parameter 1			Oddfprice
2751		{
2752			Text [ en-US ] = "Settlement";
2753		};
2754
2755		String 3 // description of parameter 1	Oddfprice
2756		{
2757			Text [ en-US ] = "The settlement";
2758		};
2759
2760		String 4 // name of parameter 2			Oddfprice
2761		{
2762			Text [ en-US ] = "Maturity";
2763		};
2764
2765		String 5 // description of parameter 2	Oddfprice
2766		{
2767			Text [ en-US ] = "The maturity";
2768		};
2769
2770		String 6 // name of parameter 3			Oddfprice
2771		{
2772			Text [ en-US ] = "Issue";
2773		};
2774
2775		String 7 // description of parameter 3	Oddfprice
2776		{
2777			Text [ en-US ] = "The issue date";
2778		};
2779
2780		String 8 // name of parameter 4			Oddfprice
2781		{
2782			Text [ en-US ] = "First coupon";
2783		};
2784
2785		String 9 // description of parameter 4	Oddfprice
2786		{
2787			Text [ en-US ] = "The first coupon date";
2788		};
2789
2790		String 10 // name of parameter 5		Oddfprice
2791		{
2792			Text [ en-US ] = "Rate";
2793		};
2794
2795		String 11 // description of parameter 5	Oddfprice
2796		{
2797			Text [ en-US ] = "The rate";
2798		};
2799
2800		String 12 // name of parameter 6		Oddfprice
2801		{
2802			Text [ en-US ] = "Yield";
2803		};
2804
2805		String 13 // description of parameter 6	Oddfprice
2806		{
2807			Text [ en-US ] = "The yield";
2808		};
2809
2810		String 14 // name of parameter 7		Oddfprice
2811		{
2812			Text [ en-US ] = "Redemption";
2813		};
2814
2815		String 15 // description of parameter 7	Oddfprice
2816		{
2817			Text [ en-US ] = "The redemption value";
2818		};
2819
2820		String 16 // name of parameter 8		Oddfprice
2821		{
2822			Text [ en-US ] = "Frequency";
2823		};
2824
2825		String 17 // description of parameter 8	Oddfprice
2826		{
2827			Text [ en-US ] = "The frequency";
2828		};
2829
2830		String 18 // name of parameter 9		Oddfprice
2831		{
2832			Text [ en-US ] = "Basis";
2833		};
2834
2835		String 19 // description of parameter 9	Oddfprice
2836		{
2837			Text [ en-US ] = "The basis";
2838		};
2839	};
2840
2841	Resource ANALYSIS_Oddfyield
2842	{
2843		String 1	// description Oddfyield
2844		{
2845			Text [ en-US ] = "Returns the yield of a security with an odd first period";
2846		};
2847
2848		String 2 // name of parameter 1			Oddfyield
2849		{
2850			Text [ en-US ] = "Settlement";
2851		};
2852
2853		String 3 // description of parameter 1	Oddfyield
2854		{
2855			Text [ en-US ] = "The settlement";
2856		};
2857
2858		String 4 // name of parameter 2			Oddfyield
2859		{
2860			Text [ en-US ] = "Maturity";
2861		};
2862
2863		String 5 // description of parameter 2	Oddfyield
2864		{
2865			Text [ en-US ] = "The maturity";
2866		};
2867
2868		String 6 // name of parameter 3			Oddfyield
2869		{
2870			Text [ en-US ] = "Issue";
2871		};
2872
2873		String 7 // description of parameter 3	Oddfyield
2874		{
2875			Text [ en-US ] = "The issue date";
2876		};
2877
2878		String 8 // name of parameter 4			Oddfyield
2879		{
2880			Text [ en-US ] = "First coupon";
2881		};
2882
2883		String 9 // description of parameter 4	Oddfyield
2884		{
2885			Text [ en-US ] = "The first coupon date";
2886		};
2887
2888		String 10 // name of parameter 5		Oddfyield
2889		{
2890			Text [ en-US ] = "Rate";
2891		};
2892
2893		String 11 // description of parameter 5	Oddfyield
2894		{
2895			Text [ en-US ] = "The rate";
2896		};
2897
2898		String 12 // name of parameter 6		Oddfyield
2899		{
2900			Text [ en-US ] = "Price";
2901		};
2902
2903		String 13 // description of parameter 6	Oddfyield
2904		{
2905			Text [ en-US ] = "The price";
2906		};
2907
2908		String 14 // name of parameter 7		Oddfyield
2909		{
2910			Text [ en-US ] = "Redemption";
2911		};
2912
2913		String 15 // description of parameter 7	Oddfyield
2914		{
2915			Text [ en-US ] = "The redemption value";
2916		};
2917
2918		String 16 // name of parameter 8		Oddfyield
2919		{
2920			Text [ en-US ] = "Frequency";
2921		};
2922
2923		String 17 // description of parameter 8	Oddfyield
2924		{
2925			Text [ en-US ] = "The frequency";
2926		};
2927
2928		String 18 // name of parameter 9		Oddfyield
2929		{
2930			Text [ en-US ] = "Basis";
2931		};
2932
2933		String 19 // description of parameter 9	Oddfyield
2934		{
2935			Text [ en-US ] = "The basis";
2936		};
2937	};
2938
2939	Resource ANALYSIS_Oddlprice
2940	{
2941		String 1	// description Oddlprice
2942		{
2943			Text [ en-US ] = "Returns the price per $100 face value of a security with an odd last period";
2944		};
2945
2946		String 2 // name of parameter 1			Oddlprice
2947		{
2948			Text [ en-US ] = "Settlement";
2949		};
2950
2951		String 3 // description of parameter 1	Oddlprice
2952		{
2953			Text [ en-US ] = "The settlement";
2954		};
2955
2956		String 4 // name of parameter 2			Oddlprice
2957		{
2958			Text [ en-US ] = "Maturity";
2959		};
2960
2961		String 5 // description of parameter 2	Oddlprice
2962		{
2963			Text [ en-US ] = "The maturity";
2964		};
2965
2966		String 6 // name of parameter 3			Oddlprice
2967		{
2968			Text [ en-US ] = "Last interest";
2969		};
2970
2971		String 7 // description of parameter 3	Oddlprice
2972		{
2973			Text [ en-US ] = "The last interest date";
2974		};
2975
2976		String 8 // name of parameter 4			Oddlprice
2977		{
2978			Text [ en-US ] = "Rate";
2979		};
2980
2981		String 9 // description of parameter 4	Oddlprice
2982		{
2983			Text [ en-US ] = "The rate";
2984		};
2985
2986		String 10 // name of parameter 5		Oddlprice
2987		{
2988			Text [ en-US ] = "Yield";
2989		};
2990
2991		String 11 // description of parameter 5	Oddlprice
2992		{
2993			Text [ en-US ] = "The yield";
2994		};
2995
2996		String 12 // name of parameter 6		Oddlprice
2997		{
2998			Text [ en-US ] = "Redemption";
2999		};
3000
3001		String 13 // description of parameter 6	Oddlprice
3002		{
3003			Text [ en-US ] = "The redemption value";
3004		};
3005
3006		String 14 // name of parameter 7		Oddlprice
3007		{
3008			Text [ en-US ] = "Frequency";
3009		};
3010
3011		String 15 // description of parameter 7	Oddlprice
3012		{
3013			Text [ en-US ] = "The frequency";
3014		};
3015
3016		String 16 // name of parameter 8		Oddlprice
3017		{
3018			Text [ en-US ] = "Basis";
3019		};
3020
3021		String 17 // description of parameter 8	Oddlprice
3022		{
3023			Text [ en-US ] = "The basis";
3024		};
3025	};
3026
3027	Resource ANALYSIS_Oddlyield
3028	{
3029		String 1	// description Oddlyield
3030		{
3031			Text [ en-US ] = "Returns the yield of a security with an odd last period";
3032		};
3033
3034		String 2 // name of parameter 1			Oddlyield
3035		{
3036			Text [ en-US ] = "Settlement";
3037		};
3038
3039		String 3 // description of parameter 1	Oddlyield
3040		{
3041			Text [ en-US ] = "The settlement";
3042		};
3043
3044		String 4 // name of parameter 2			Oddlyield
3045		{
3046			Text [ en-US ] = "Maturity";
3047		};
3048
3049		String 5 // description of parameter 2	Oddlyield
3050		{
3051			Text [ en-US ] = "The maturity";
3052		};
3053
3054		String 6 // name of parameter 3			Oddlyield
3055		{
3056			Text [ en-US ] = "Last interest";
3057		};
3058
3059		String 7 // description of parameter 3	Oddlyield
3060		{
3061			Text [ en-US ] = "The last interest date";
3062		};
3063
3064		String 8 // name of parameter 4			Oddlyield
3065		{
3066			Text [ en-US ] = "Rate";
3067		};
3068
3069		String 9 // description of parameter 4	Oddlyield
3070		{
3071			Text [ en-US ] = "The rate";
3072		};
3073
3074		String 10 // name of parameter 5		Oddlyield
3075		{
3076			Text [ en-US ] = "Price";
3077		};
3078
3079		String 11 // description of parameter 5	Oddlyield
3080		{
3081			Text [ en-US ] = "The price";
3082		};
3083
3084		String 12 // name of parameter 6		Oddlyield
3085		{
3086			Text [ en-US ] = "Redemption";
3087		};
3088
3089		String 13 // description of parameter 6	Oddlyield
3090		{
3091			Text [ en-US ] = "The redemption value";
3092		};
3093
3094		String 14 // name of parameter 7		Oddlyield
3095		{
3096			Text [ en-US ] = "Frequency";
3097		};
3098
3099		String 15 // description of parameter 7	Oddlyield
3100		{
3101			Text [ en-US ] = "The frequency";
3102		};
3103
3104		String 16 // name of parameter 8		Oddlyield
3105		{
3106			Text [ en-US ] = "Basis";
3107		};
3108
3109		String 17 // description of parameter 8	Oddlyield
3110		{
3111			Text [ en-US ] = "The basis";
3112		};
3113	};
3114
3115	Resource ANALYSIS_Xirr
3116	{
3117		String 1	// description Xirr
3118		{
3119			Text [ en-US ] = "Returns the internal rate of return for a non-periodic schedule of payments";
3120		};
3121
3122		String 2 // name of parameter 1			Xirr
3123		{
3124			Text [ en-US ] = "Values";
3125		};
3126
3127		String 3 // description of parameter 1	Xirr
3128		{
3129			Text [ en-US ] = "The values";
3130		};
3131
3132		String 4 // name of parameter 2			Xirr
3133		{
3134			Text [ en-US ] = "Dates";
3135		};
3136
3137		String 5 // description of parameter 2	Xirr
3138		{
3139			Text [ en-US ] = "The dates";
3140		};
3141
3142		String 6 // name of parameter 3			Xirr
3143		{
3144			Text [ en-US ] = "Guess";
3145		};
3146
3147		String 7 // description of parameter 3	Xirr
3148		{
3149			Text [ en-US ] = "The guess";
3150		};
3151	};
3152
3153	Resource ANALYSIS_Xnpv
3154	{
3155		String 1	// description Xnpv
3156		{
3157			Text [ en-US ] = "Returns the net present value for a non-periodic schedule of payments";
3158		};
3159
3160		String 2 // name of parameter 1			Xnpv
3161		{
3162			Text [ en-US ] = "Rate";
3163		};
3164
3165		String 3 // description of parameter 1	Xnpv
3166		{
3167			Text [ en-US ] = "The rate";
3168		};
3169
3170		String 4 // name of parameter 2			Xnpv
3171		{
3172			Text [ en-US ] = "Values";
3173		};
3174
3175		String 5 // description of parameter 2	Xnpv
3176		{
3177			Text [ en-US ] = "The values";
3178		};
3179
3180		String 6 // name of parameter 3			Xnpv
3181		{
3182			Text [ en-US ] = "Dates";
3183		};
3184
3185		String 7 // description of parameter 3	Xnpv
3186		{
3187			Text [ en-US ] = "The dates";
3188		};
3189	};
3190
3191	Resource ANALYSIS_Intrate
3192	{
3193		String 1	// description Intrate
3194		{
3195			Text [ en-US ] = "Returns the interest rate for a fully invested security";
3196		};
3197
3198		String 2 // name of parameter 1			Intrate
3199		{
3200			Text [ en-US ] = "Settlement";
3201		};
3202
3203		String 3 // description of parameter 1	Intrate
3204		{
3205			Text [ en-US ] = "The settlement";
3206		};
3207
3208		String 4 // name of parameter 2			Intrate
3209		{
3210			Text [ en-US ] = "Maturity";
3211		};
3212
3213		String 5 // description of parameter 2	Intrate
3214		{
3215			Text [ en-US ] = "The maturity";
3216		};
3217
3218		String 6 // name of parameter 3			Intrate
3219		{
3220			Text [ en-US ] = "Investment";
3221		};
3222
3223		String 7 // description of parameter 3	Intrate
3224		{
3225			Text [ en-US ] = "The investment";
3226		};
3227
3228		String 8 // name of parameter 4			Intrate
3229		{
3230			Text [ en-US ] = "Redemption";
3231		};
3232
3233		String 9 // description of parameter 4	Intrate
3234		{
3235			Text [ en-US ] = "The redemption value";
3236		};
3237
3238		String 10 // name of parameter 5		Intrate
3239		{
3240			Text [ en-US ] = "Basis";
3241		};
3242
3243		String 11 // description of parameter 5	Intrate
3244		{
3245			Text [ en-US ] = "The basis";
3246		};
3247	};
3248
3249	Resource ANALYSIS_Coupncd
3250	{
3251		String 1	// description Coupncd
3252		{
3253			Text [ en-US ] = "Returns the first coupon date after the settlement date";
3254		};
3255
3256		String 2 // name of parameter 1			Coupncd
3257		{
3258			Text [ en-US ] = "Settlement";
3259		};
3260
3261		String 3 // description of parameter 1	Coupncd
3262		{
3263			Text [ en-US ] = "The settlement";
3264		};
3265
3266		String 4 // name of parameter 2			Coupncd
3267		{
3268			Text [ en-US ] = "Maturity";
3269		};
3270
3271		String 5 // description of parameter 2	Coupncd
3272		{
3273			Text [ en-US ] = "The maturity";
3274		};
3275
3276		String 6 // name of parameter 3			Coupncd
3277		{
3278			Text [ en-US ] = "Frequency";
3279		};
3280
3281		String 7 // description of parameter 3	Coupncd
3282		{
3283			Text [ en-US ] = "The frequency";
3284		};
3285
3286		String 8 // name of parameter 4			Coupncd
3287		{
3288			Text [ en-US ] = "Basis";
3289		};
3290
3291		String 9 // description of parameter 4	Coupncd
3292		{
3293			Text [ en-US ] = "The basis";
3294		};
3295	};
3296
3297	Resource ANALYSIS_Coupdays
3298	{
3299		String 1	// description Coupdays
3300		{
3301			Text [ en-US ] = "Returns the number of days in the coupon period containing the settlement date";
3302		};
3303
3304		String 2 // name of parameter 1			Coupdays
3305		{
3306			Text [ en-US ] = "Settlement";
3307		};
3308
3309		String 3 // description of parameter 1	Coupdays
3310		{
3311			Text [ en-US ] = "The settlement";
3312		};
3313
3314		String 4 // name of parameter 2			Coupdays
3315		{
3316			Text [ en-US ] = "Maturity";
3317		};
3318
3319		String 5 // description of parameter 2	Coupdays
3320		{
3321			Text [ en-US ] = "The maturity";
3322		};
3323
3324		String 6 // name of parameter 3			Coupdays
3325		{
3326			Text [ en-US ] = "Frequency";
3327		};
3328
3329		String 7 // description of parameter 3	Coupdays
3330		{
3331			Text [ en-US ] = "The frequency";
3332		};
3333
3334		String 8 // name of parameter 4			Coupdays
3335		{
3336			Text [ en-US ] = "Basis";
3337		};
3338
3339		String 9 // description of parameter 4	Coupdays
3340		{
3341			Text [ en-US ] = "The basis";
3342		};
3343	};
3344
3345	Resource ANALYSIS_Coupdaysnc
3346	{
3347		String 1	// description Coupdaysnc
3348		{
3349			Text [ en-US ] = "Returns the number of days from the settlement date to the next coupon date";
3350		};
3351
3352		String 2 // name of parameter 1			Coupdaysnc
3353		{
3354			Text [ en-US ] = "Settlement";
3355		};
3356
3357		String 3 // description of parameter 1	Coupdaysnc
3358		{
3359			Text [ en-US ] = "The settlement";
3360		};
3361
3362		String 4 // name of parameter 2			Coupdaysnc
3363		{
3364			Text [ en-US ] = "Maturity";
3365		};
3366
3367		String 5 // description of parameter 2	Coupdaysnc
3368		{
3369			Text [ en-US ] = "The maturity";
3370		};
3371
3372		String 6 // name of parameter 3			Coupdaysnc
3373		{
3374			Text [ en-US ] = "Frequency";
3375		};
3376
3377		String 7 // description of parameter 3	Coupdaysnc
3378		{
3379			Text [ en-US ] = "The frequency";
3380		};
3381
3382		String 8 // name of parameter 4			Coupdaysnc
3383		{
3384			Text [ en-US ] = "Basis";
3385		};
3386
3387		String 9 // description of parameter 4	Coupdaysnc
3388		{
3389			Text [ en-US ] = "The basis";
3390		};
3391	};
3392
3393	Resource ANALYSIS_Coupdaybs
3394	{
3395		String 1	// description Coupdaybs
3396		{
3397			Text [ en-US ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
3398		};
3399
3400		String 2 // name of parameter 1			Coupdaybs
3401		{
3402			Text [ en-US ] = "Settlement";
3403		};
3404
3405		String 3 // description of parameter 1	Coupdaybs
3406		{
3407			Text [ en-US ] = "The settlement";
3408		};
3409
3410		String 4 // name of parameter 2			Coupdaybs
3411		{
3412			Text [ en-US ] = "Maturity";
3413		};
3414
3415		String 5 // description of parameter 2	Coupdaybs
3416		{
3417			Text [ en-US ] = "The maturity";
3418		};
3419
3420		String 6 // name of parameter 3			Coupdaybs
3421		{
3422			Text [ en-US ] = "Frequency";
3423		};
3424
3425		String 7 // description of parameter 3	Coupdaybs
3426		{
3427			Text [ en-US ] = "The frequency";
3428		};
3429
3430		String 8 // name of parameter 4			Coupdaybs
3431		{
3432			Text [ en-US ] = "Basis";
3433		};
3434
3435		String 9 // description of parameter 4	Coupdaybs
3436		{
3437			Text [ en-US ] = "The basis";
3438		};
3439	};
3440
3441	Resource ANALYSIS_Couppcd
3442	{
3443		String 1	// description Couppcd
3444		{
3445			Text [ en-US ] = "Returns the last coupon date preceding the settlement date";
3446		};
3447
3448		String 2 // name of parameter 1			Couppcd
3449		{
3450			Text [ en-US ] = "Settlement";
3451		};
3452
3453		String 3 // description of parameter 1	Couppcd
3454		{
3455			Text [ en-US ] = "The settlement";
3456		};
3457
3458		String 4 // name of parameter 2			Couppcd
3459		{
3460			Text [ en-US ] = "Maturity";
3461		};
3462
3463		String 5 // description of parameter 2	Couppcd
3464		{
3465			Text [ en-US ] = "The maturity";
3466		};
3467
3468		String 6 // name of parameter 3			Couppcd
3469		{
3470			Text [ en-US ] = "Frequency";
3471		};
3472
3473		String 7 // description of parameter 3	Couppcd
3474		{
3475			Text [ en-US ] = "The frequency";
3476		};
3477
3478		String 8 // name of parameter 4			Couppcd
3479		{
3480			Text [ en-US ] = "Basis";
3481		};
3482
3483		String 9 // description of parameter 4	Couppcd
3484		{
3485			Text [ en-US ] = "The basis";
3486		};
3487	};
3488
3489	Resource ANALYSIS_Coupnum
3490	{
3491		String 1	// description Coupnum
3492		{
3493			Text [ en-US ] = "Returns the number of coupons payable between the settlement and maturity dates";
3494		};
3495
3496		String 2 // name of parameter 1			Coupnum
3497		{
3498			Text [ en-US ] = "Settlement";
3499		};
3500
3501		String 3 // description of parameter 1	Coupnum
3502		{
3503			Text [ en-US ] = "The settlement";
3504		};
3505
3506		String 4 // name of parameter 2			Coupnum
3507		{
3508			Text [ en-US ] = "Maturity";
3509		};
3510
3511		String 5 // description of parameter 2	Coupnum
3512		{
3513			Text [ en-US ] = "The maturity";
3514		};
3515
3516		String 6 // name of parameter 3			Coupnum
3517		{
3518			Text [ en-US ] = "Frequency";
3519		};
3520
3521		String 7 // description of parameter 3	Coupnum
3522		{
3523			Text [ en-US ] = "The frequency";
3524		};
3525
3526		String 8 // name of parameter 4			Coupnum
3527		{
3528			Text [ en-US ] = "Basis";
3529		};
3530
3531		String 9 // description of parameter 4	Coupnum
3532		{
3533			Text [ en-US ] = "The basis";
3534		};
3535	};
3536
3537	Resource ANALYSIS_Fvschedule
3538	{
3539		String 1	// description Fvschedule
3540		{
3541			Text [ en-US ] = "Returns the future value of the initial principal after a series of compound interest rates are applied";
3542		};
3543
3544		String 2 // name of parameter 1			Fvschedule
3545		{
3546			Text [ en-US ] = "Principal";
3547		};
3548
3549		String 3 // description of parameter 1	Fvschedule
3550		{
3551			Text [ en-US ] = "The principal";
3552		};
3553
3554		String 4 // name of parameter 2			Fvschedule
3555		{
3556			Text [ en-US ] = "Schedule";
3557		};
3558
3559		String 5 // description of parameter 2	Fvschedule
3560		{
3561			Text [ en-US ] = "The schedule";
3562		};
3563	};
3564};
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601