PureBytes Links
Trading Reference Links
|
How about Formula Editor's EDIT|REPLACE?
----- Original Message -----
From: mrdavis9
To: amibroker@xxxxxxxxxxxxxxx
Sent: Wednesday, December 06, 2006 7:20 PM
Subject: [amibroker] REPLACE(LASTarray,NEXTarray))
I just NOW learned how to use the REPLACE FEATURE in Microsoft Word to assist me in AFL coding as I describe below.
========================================================================
Directly below here are the arrays that I start with.
array1=(MA(array1_1,n1)+MA(array1_2,n2)+MA(array1_3,n3)+MA(array1_4,n4)+MA(array1_5,n5)+MA(array1_6,n6))/6;
array1a=(MA(array1,n1)+MA(array1,n2)+MA(array1,n3)+MA(array1,n4)+MA(array1,n5)+MA(array1,n6))/6;
In MICROSOFT WORD, I just started using the replace feature to change the ^above^ arrays to what is shown below
========================================
array2=(MA(array1a,n1)+MA(array1a,n2)+MA(array1a,n3)+MA(array1a,n4)+MA(array1a,n5)+MA(array1a,n6))/6;
array2a=(MA(array2,n1)+MA(array2,n2)+MA(array2,n3)+MA(array2,n4)+MA(array2,n5)+MA(array2,n6))/6;
Then I use the replace feature many times to convert the ^above^ arrays into the below arrays
==============================================
array3=(MA(array2a,n1)+MA(array2a,n2)+MA(array2a,n3)+MA(array2a,n4)+MA(array2a,n5)+MA(array2a,n6))/6;
array3a=(MA(array3,n1)+MA(array3,n2)+MA(array3,n3)+MA(array3,n4)+MA(array3,n5)+MA(array3,n6))/6;
Are there any AFL functions, or outside functions that I can use which will do this other than Microsoft Word?
I can't do any programming at all. It may be very easy to make a script or whatever it is called that will allow me to quickly do this
REPLACE(LAST ARRAY,NEXTARRAY) function??
All ideas and suggestions will be appreciated. Ron D
------------------------------------------------------------------------------
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.13/577 - Release Date: 12/6/2006 4:39 PM
Content-Description: "AVG certification"
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.13/577 - Release Date: 12/6/2006 4:39 PM
|