Monday, December 01, 2008     | Register
TradersStudio Forums
Subject: Built-in Strategies

You are not authorized to post a reply.   
Author Messages
jrbeaudoin
Posts:2

12-09-2007 10:14 PM Alert 

Hello,

I've been considering TS for some time.  Unfortunately, there is no trial version available.  Furthermore, only existing TS customers can purchase the manuals. 

Since I have no programming experience, I was which (if any) classic trading systems come as built-ins in version 2.5. 

Thank you,

murray
Posts:431

12-09-2007 11:31 PM Alert 

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

 

 

 

You are not authorized to post a reply.



ActiveForums 3.6
TradersStudio® Copyright 2004-2008 All Rights Reserved   |  Privacy Statement  |  Terms Of Use