There is well over 100 sample, system,functions indicator ect which are fully open in the product for you to see. In addition The manuals are available on the site , they just can't be printed if you are register on the site.
If you are logged in they are available under with download or document menu.
In addition programming is no longer an issue because of our programming wizard which is drag and drop. You can build systems,indicators,custom reports and macro's by just selecting template components and filling in the blanks. This ships free with version 2.5 or higher.
Below is an example of a simple moving average crossover system.
'******************************** ' Simple Dual moving average crossover ' TradersStudio(r) 2004-2007 , All rights reserved
Sub MOVINGAVECROSS(SLen As Integer, LLen As Integer) Dim ShortAve As BarArray Dim LongAve As BarArray ShortAve = Average(Close, SLen,0) LongAve = Average(Close, LLen,0) If CROSSESOVER(SHORTAVE,LONGAVE) then Buy("BuyEnt",1,0,Market,DAY) End If If CROSSESUNDER(ShortAve,LongAve) then Sell("SellEnt",1,0,Market,DAY) End If End Sub
|