<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>BullCharts : C&#111;nverting an Amibroker Code to Bullscrip</title>
  <link>http://www.bullcharts.com.au/forum/</link>
  <description>This is an XML content feed of; BullCharts : BullScript : C&#111;nverting an Amibroker Code to Bullscrip</description>
  <copyright>Copyright (c) 2006-2009 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 10:23:11 +0000</pubDate>
  <lastBuildDate>Thu, 15 Nov 2007 14:07:40 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.bullcharts.com.au/forum/RSS_post_feed.asp?TID=420</WebWizForums:feedURL>
  <image>
   <title>BullCharts</title>
   <url>http://www.bullcharts.com.au/forum/http://www.bullcharts.com.au/images/bull_logo.gif</url>
   <link>http://www.bullcharts.com.au/forum/</link>
  </image>
  <item>
   <title>C&#111;nverting an Amibroker Code to Bullscrip : Here is an example of an Amibroker...</title>
   <link>http://www.bullcharts.com.au/forum/forum_posts.asp?TID=420&amp;PID=1666#1666</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.bullcharts.com.au/forum/member_profile.asp?PF=206" rel="nofollow">blackdog</a><br /><strong>Subject:</strong> 420<br /><strong>Posted:</strong> 15&nbsp;Nov&nbsp;2007 at 2:07pm<br /><br /><DIV>Here is an example of an Amibroker script that cant be directly transfered to BC, but BC can achieve a pale imitation. The example is a multiple moving average streamer where the red side is ma(2) and the purple side is ma(100). Anyway have a look and play if you like.</DIV><DIV>&nbsp;</DIV><DIV><IMG src="uploads/blackdog/2007-11-15_134339_amibroker_Cloud_edited-1.jpg" border="0"></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Here is the BC version.</DIV><DIV>&nbsp;</DIV><DIV><IMG src="uploads/blackdog/2007-11-15_134547_BC_streamer.JPG" border="0"></DIV><DIV>&nbsp;</DIV><DIV>The BC code is as follows:</DIV><DIV>&nbsp;</DIV><DIV><FONT color=#800080 size=3><P>&#091;description</FONT><FONT size=3>="MA streamer shows ma from 4 to 100 as a coloured streamer."</FONT><FONT color=#800080 size=3>&#093;</P><P>&#091;target</FONT><FONT size=3>=Default</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>author</FONT><FONT size=3>=zzz</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>category</FONT><FONT size=3>=Moving Average|zzz</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>dp</FONT><FONT size=3>=4</FONT><FONT color=#800080 size=3>&#093;</P></FONT><FONT size=3><P></P></FONT><FONT color=#008000 size=3><P>&nbsp;</P></FONT><FONT size=3><P>expr :=</FONT><FONT color=#0000c0 size=3>C</FONT><FONT size=3>;</P><P>ma1 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,4,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma2 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,8,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma3 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,12,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma4 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,16,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma5 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,20,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma6 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,25,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma7 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,30,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma8 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,36,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma9 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,42,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma10 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,49,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma11 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,57,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma12 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,62,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>ma13 := </FONT><FONT color=#0000c0 size=3>ma</FONT><FONT size=3>(expr,70,</FONT><FONT color=#0000c0 size=3>simple</FONT><FONT size=3>);</P><P>&nbsp;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=dark red</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma1;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=crimson</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma2;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=plum</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma2;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=coral</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma3;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=sandy brown</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma3;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=orange</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma4;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=dark orange</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma4;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=khaki</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma5;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=gold</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma5;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=yellow</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma6;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=green yellow</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma6;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=lime green</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma7;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=light green</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma7;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=medium spring green</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma8;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=aqua marine</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma8;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=turquoise</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma9;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=aqua</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma9;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=sky blue</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma10;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=deep sky blue</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma10;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=medium purple</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma11;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=medium orchid</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma11;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=plum</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma12;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=dark magenta</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma12;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=white</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma13;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=dark red</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma1;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=crimson</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma2;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=plum</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma2;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=coral</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma3;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=sandy brown</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma3;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=orange</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma4;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=dark orange</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma4;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=khaki</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma5;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=gold</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma5;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=yellow</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma6;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=green yellow</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma6;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=lime green</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma7;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=light green</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma7;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=medium spring green</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma8;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=aqua marine</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma8;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=turquoise</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma9;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=aqua</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma9;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=sky blue</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma10;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=deep sky blue</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma10;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=medium purple</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma11;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=medium orchid</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma11;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=plum</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma12;</P></FONT><FONT color=#800080 size=3><P>&#091;name</FONT><FONT size=3>=Fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>linestyle</FONT><FONT size=3>=fill</FONT><FONT color=#800080 size=3>;</FONT><FONT size=3> </FONT><FONT color=#800080 size=3>color</FONT><FONT size=3>=dark magenta</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3>ma12;</P></FONT><FONT color=#800080 size=3><P>&#091;color</FONT><FONT size=3>=white</FONT><FONT color=#800080 size=3>&#093;</FONT><FONT size=3> ma13;</P><P>&nbsp;</P></FONT></DIV>]]>
   </description>
   <pubDate>Thu, 15 Nov 2007 14:07:40 +0000</pubDate>
   <guid isPermaLink="true">http://www.bullcharts.com.au/forum/forum_posts.asp?TID=420&amp;PID=1666#1666</guid>
  </item> 
  <item>
   <title>C&#111;nverting an Amibroker Code to Bullscrip : Vito,  Amibroker scripting is...</title>
   <link>http://www.bullcharts.com.au/forum/forum_posts.asp?TID=420&amp;PID=1661#1661</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.bullcharts.com.au/forum/member_profile.asp?PF=206" rel="nofollow">blackdog</a><br /><strong>Subject:</strong> 420<br /><strong>Posted:</strong> 08&nbsp;Nov&nbsp;2007 at 7:38pm<br /><br /><DIV>Vito, </DIV><DIV>Amibroker scripting is rather different to BC. Its scripting &nbsp;allows looping and is more like a real programming language. However it doesnt allow the "prev" function that BC uses. If you post the amibroker code here, I will have a look and see what I can do for you.</DIV><DIV>&nbsp;</DIV><DIV>regards,</DIV><DIV>BD.</DIV>]]>
   </description>
   <pubDate>Thu, 08 Nov 2007 19:38:19 +0000</pubDate>
   <guid isPermaLink="true">http://www.bullcharts.com.au/forum/forum_posts.asp?TID=420&amp;PID=1661#1661</guid>
  </item> 
  <item>
   <title>C&#111;nverting an Amibroker Code to Bullscrip : Hi All, I have been able to get...</title>
   <link>http://www.bullcharts.com.au/forum/forum_posts.asp?TID=420&amp;PID=1554#1554</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.bullcharts.com.au/forum/member_profile.asp?PF=317" rel="nofollow">Vito</a><br /><strong>Subject:</strong> 420<br /><strong>Posted:</strong> 14&nbsp;May&nbsp;2007 at 9:25pm<br /><br />Hi All,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I have been able to get my hands on what I consider a valuable indicator but I can only get it in an Amibroker code. It is quite complicated and beyong me. Does any one know of any one who enjoys a challenge.<br><br>If so please email me <br><br>Vito<br>]]>
   </description>
   <pubDate>Mon, 14 May 2007 21:25:24 +0000</pubDate>
   <guid isPermaLink="true">http://www.bullcharts.com.au/forum/forum_posts.asp?TID=420&amp;PID=1554#1554</guid>
  </item> 
 </channel>
</rss>