Register Login
Forums    February 9, 2012
TradersStudio Forums
Built-in Strategies
Last Post 12-09-2007 11:31 PM by mur ang. 1 Replies.
Printer Friendly
  •  
  •  
  •  
  •  
  •  
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Author Messages
Joseph Beaudoin
New Member
New Member
Posts:2

--
12-09-2007 10:14 PM

    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,

    mur ang
    Advanced Member
    Advanced Member
    Posts:525

    --
    12-09-2007 11:31 PM

    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.


     TradersStudio, Inc. ® Copyright 2004-2012 All Rights Reserved   Terms Of Use  Privacy Statement